Commit 9c51a207 authored by msharma's avatar msharma

No. of arguments are corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97998 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7c34ac8b
......@@ -36,6 +36,27 @@ public class MiscDrCrRcpConf extends ActionHandlerEJB implements MiscDrCrRcpConf
}
public String confirm(String tranId,String xtraParams, String forcedFlag, Connection conn) throws RemoteException,ITMException
{
String retString = "";
boolean isConn= false;
boolean isPreview = false;
try
{
retString = confirm( tranId, xtraParams, forcedFlag, conn ,isPreview);
if ( retString != null && retString.length() > 0 )
{
throw new Exception("Exception while calling confirm for tran Id:["+tranId+"]");
}
}
catch(Exception exception)
{
System.out.println("Exception in [InvHoldConfEJB] getCurrdateAppFormat " + exception.getMessage());
}
return retString;
}
public String confirm(String tranId,String xtraParams,String forcedFlag,Connection conn,boolean isPreview) throws RemoteException,ITMException
{
//Connection conn = 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