diff --git a/pandora_console/extras/delete_files/delete_files.txt b/pandora_console/extras/delete_files/delete_files.txt
index 96223ccd69..90107df226 100644
--- a/pandora_console/extras/delete_files/delete_files.txt
+++ b/pandora_console/extras/delete_files/delete_files.txt
@@ -1667,3 +1667,13 @@ godmode/um_client/vendor/sebastian
godmode/um_client/vendor
update_manager_client/resources/styles/pandora.css
enterprise/meta/general/upload_head_image.php
+general/first_task/transactional_list.php
+enterprise/include/ajax/transactional.ajax.php
+enterprise/include/class/Transactionalmap.class.php
+enterprise/include/help/es/help_transactional_map_phases.php
+enterprise/include/javascript/transactional/TransactionalController.js
+enterprise/include/functions_transactional.php
+enterprise/operation/agentes/manage_transmap.php
+enterprise/operation/agentes/manage_transmap_creation.php
+enterprise/operation/agentes/manage_transmap_creation_phases_data.php
+enterprise/operation/agentes/transactional_map.php
diff --git a/pandora_console/extras/mr/60.sql b/pandora_console/extras/mr/60.sql
index f81adcdb35..638c4b3031 100644
--- a/pandora_console/extras/mr/60.sql
+++ b/pandora_console/extras/mr/60.sql
@@ -1,5 +1,8 @@
START TRANSACTION;
+DROP TABLE IF EXISTS `tphase`;
+DROP TABLE IF EXISTS `ttransaction`;
+
ALTER TABLE `tagent_custom_fields` ADD `is_link_enabled` TINYINT(1) NOT NULL DEFAULT 0;
ALTER TABLE `tevent_filter` ADD COLUMN `owner_user` TEXT;
diff --git a/pandora_console/general/first_task/transactional_list.php b/pandora_console/general/first_task/transactional_list.php
deleted file mode 100644
index c1d9ef2f42..0000000000
--- a/pandora_console/general/first_task/transactional_list.php
+++ /dev/null
@@ -1,46 +0,0 @@
-
- true, 'message' => __('There are no transactions defined yet.') ]);
-
-if ($networkmaps_write || $networkmaps_manage) {
- ?>
-
-
-
- __('Transactions')]); ?>
-
-
-
- {"inventoryserver"} = 1; # default
$pa_config->{"webserver"} = 1; # 3.0
$pa_config->{"web_timeout"} = 60; # 6.0SP5
- $pa_config->{"transactionalserver"} = 0; # Default 0, introduced on 6.1
- $pa_config->{"transactional_threshold"} = 2; # Default 2, introduced on 6.1
$pa_config->{"transactional_pool"} = $pa_config->{"incomingdir"} . "/" . "trans"; # Default, introduced on 6.1
$pa_config->{'snmp_logfile'} = "/var/log/pandora_snmptrap.log";
$pa_config->{"network_threads"} = 3; # Fixed default
@@ -776,12 +774,6 @@ sub pandora_load_config {
elsif ($parametro =~ m/^web_timeout\s+([0-9]*)/i) {
$pa_config->{'web_timeout'}= clean_blank($1);
}
- elsif ($parametro =~ m/^transactionalserver\s+([0-9]*)/i) {
- $pa_config->{'transactionalserver'}= clean_blank($1);
- }
- elsif ($parametro =~ m/^transactional_threshold\s+([0-9]*\.{0,1}[0-9]*)/i) {
- $pa_config->{'transactional_threshold'}= clean_blank($1);
- }
if ($parametro =~ m/^transactional_pool\s(.*)/i) {
$tbuf= clean_blank($1);
if ($tbuf =~ m/^\.(.*)/){
diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index 8261acef29..e4bf6eeaae 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -299,7 +299,6 @@ our @ServerTypes = qw (
icmpserver
snmpserver
satelliteserver
- transactionalserver
mfserver
syncserver
wuxserver
diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm
index f922e75854..590fdf2020 100755
--- a/pandora_server/lib/PandoraFMS/Tools.pm
+++ b/pandora_server/lib/PandoraFMS/Tools.pm
@@ -72,7 +72,6 @@ our @EXPORT = qw(
SNMPSERVER
SATELLITESERVER
MFSERVER
- TRANSACTIONALSERVER
SYNCSERVER
SYSLOGSERVER
WUXSERVER
@@ -2837,7 +2836,6 @@ sub get_server_name {
return "ICMPSERVER" if ($server_type eq ICMPSERVER);
return "SNMPSERVER" if ($server_type eq SNMPSERVER);
return "SATELLITESERVER" if ($server_type eq SATELLITESERVER);
- return "TRANSACTIONALSERVER" if ($server_type eq TRANSACTIONALSERVER);
return "MFSERVER" if ($server_type eq MFSERVER);
return "SYNCSERVER" if ($server_type eq SYNCSERVER);
return "WUXSERVER" if ($server_type eq WUXSERVER);