Commit 109813f8 authored by msharma's avatar msharma

no. of arguments changed in EGI generation Method


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94019 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 915e7877
...@@ -357,7 +357,9 @@ public class DistOrderAmdConf extends ActionHandlerEJB implements DistOrderAmdCo ...@@ -357,7 +357,9 @@ public class DistOrderAmdConf extends ActionHandlerEJB implements DistOrderAmdCo
genEDIRemote = ( GenerateEDILocal )ctx.lookup( "ibase/GenerateEDI/local" );// added for ejb3 genEDIRemote = ( GenerateEDILocal )ctx.lookup( "ibase/GenerateEDI/local" );// added for ejb3
//GenerateEDI genEDIRemote = (GenerateEDI)genEDIHome.create();//commented for ejb3 //GenerateEDI genEDIRemote = (GenerateEDI)genEDIHome.create();//commented for ejb3
errCode = genEDIRemote.genEDI( "w_distordamd", tranId, "E", xtraParams, conn ); //errCode = genEDIRemote.genEDI( "w_distordamd", tranId, "E", xtraParams, conn );
//Method changed by manoj dtd 18/12/2013 as per no. of arguments used
errCode = genEDIRemote.genEDI( "w_distordamd", tranId, xtraParams, conn );
if( "SUCCESS".equalsIgnoreCase( errCode ) ) if( "SUCCESS".equalsIgnoreCase( errCode ) )
{ {
errCode = null; errCode = 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