Commit 93f94f42 authored by ssalve's avatar ssalve

Sarita: Done changes for retString on 9JAN2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@177876 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bd0e44da
......@@ -1078,7 +1078,7 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
//Added by sarita on 8JAN2018 [start]
//else if((retString != null && retString.trim().length() > 0) && (retString.indexOf("ERROR") != -1 || retString.indexOf("error") != -1))
//Added and replace by sarita on 9JAN2018
else if((retString != null && retString.trim().length() > 0) && (retString.toUpperCase().indexOf("ERROR") == -1)
else if((retString != null && retString.trim().length() > 0) && (retString.toUpperCase().indexOf("ERROR") == -1))
{
retString = itmDBAccessLocal.getErrorString("", retString, "");
System.out.println("RetString for porcp>>>>>>>" + retString);
......
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