Commit 38efe2c4 authored by Ajit Deshmukh's avatar Ajit Deshmukh

Replace ManageSqlReleaseFromQC.java

parent 3d7b5e2d
......@@ -379,7 +379,7 @@ public class ManageSqlReleaseFromQC extends ActionHandlerEJB {
if (!dbPilotEnterprise.isEmpty()) {
// Create PILOT XML with exec_rights = "P" and enterprise from DB_PILOT column
String xmlWithP = processDynXmlString.toString().replace("{{executionRights}}", "P");
xmlWithP = xmlWithP.replace("{{enterprises}}", enterprises);
xmlWithP = xmlWithP.replace("{{enterprises}}", dbPilotEnterprise);
BaseLogger.log("3", null, null, "xmlWithP XML:::" + xmlWithP + "]");
MasterStatefulLocal masterStateful = null;
......@@ -534,7 +534,7 @@ public class ManageSqlReleaseFromQC extends ActionHandlerEJB {
// Create Client Dev XML with exec_rights = "C" and enterprise from DB_DEV
// column
String xmlWithC = processDynXmlString.toString().replace("{{executionRights}}", "C");
xmlWithC = xmlWithC.replace("{{enterprises}}", enterprises);
xmlWithC = xmlWithC.replace("{{enterprises}}", dbClientDevEnterprise);
BaseLogger.log("3", null, null, "xmlWithP XML:::" + xmlWithC + "]");
MasterStatefulLocal masterStateful = null;
......@@ -705,7 +705,7 @@ public class ManageSqlReleaseFromQC extends ActionHandlerEJB {
if (!dbLiveEnterprise.isEmpty()) {
// Create PILOT XML with exec_rights = "P" and enterprise from DB_DEV column
String xmlWithA = processDynXmlString.toString().replace("{{executionRights}}", "A");
xmlWithA = xmlWithA.replace("{{enterprises}}", enterprises);
xmlWithA = xmlWithA.replace("{{enterprises}}", dbLiveEnterprise);
BaseLogger.log("3", null, null, "xmlWithA XML:::" + xmlWithA + "]");
MasterStatefulLocal masterStateful = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment