Commit 7aeab059 authored by arawankar's avatar arawankar

PoRcpConf.java

-Changes made to show returnstring in case of error is occurred

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192598 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4ec30105
...@@ -116,7 +116,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp ...@@ -116,7 +116,10 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
if(!"Y".equalsIgnoreCase(confirmed)) if(!"Y".equalsIgnoreCase(confirmed))
{ {
conn.rollback(); conn.rollback();
if(retString != null && retString.trim().length() > 0) //Modified by Anjali R. on [01/11/2018][Start]
//if(retString != null && retString.trim().length() > 0)
if(retString == null || retString.trim().length() == 0)
//Modified by Anjali R. on [01/11/2018][End]
{ {
retString = itmDBAccessLocal.getErrorString("", "DS000", "","",conn); retString = itmDBAccessLocal.getErrorString("", "DS000", "","",conn);
} }
......
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