Commit 78fb0e7f authored by ngadkari's avatar ngadkari

Error is coming in distribution issue transaction in case of bulk quantity

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@187214 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 28f71550
...@@ -150,8 +150,9 @@ public String process(Document dom, Document dom2, String windowName, String xtr ...@@ -150,8 +150,9 @@ public String process(Document dom, Document dom2, String windowName, String xtr
currAppdate = sdf.format(currDate); currAppdate = sdf.format(currDate);
ConnDriver connDriver = new ConnDriver(); ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB( "DriverITM" ); //conn = connDriver.getConnectDB( "DriverITM" );//Commented by Nandkumar Gadkari on 03/07/18
connDriver = null; connDriver = null;
conn = getConnection();//changes by Nandkumar Gadkari on 03/07/18
conn.setAutoCommit( false ); conn.setAutoCommit( false );
failMsg = new StringBuffer( "" ); failMsg = new StringBuffer( "" );
......
...@@ -120,8 +120,9 @@ public class GenDistIssuePrc extends ProcessEJB //implements SessionBean ...@@ -120,8 +120,9 @@ public class GenDistIssuePrc extends ProcessEJB //implements SessionBean
try try
{ {
ConnDriver connDriver = new ConnDriver(); ConnDriver connDriver = new ConnDriver();
conn = connDriver.getConnectDB( "DriverITM" ); // conn = connDriver.getConnectDB( "DriverITM" ); //Commented by Nandkumar Gadkari on 03/07/18
connDriver = null; connDriver = null;
conn = getConnection();//changes by Nandkumar Gadkari on 03/07/18
conn.setAutoCommit( false ); conn.setAutoCommit( false );
createDistIss = new CreateDistIssue(); createDistIss = new CreateDistIssue();
......
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