Commit 37e2565e authored by pbhosale's avatar pbhosale

Updated on[10-01-2020]

AllowDednSalComp.java


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@214900 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c8124911
...@@ -1104,7 +1104,10 @@ public class AllowDednSalComp ...@@ -1104,7 +1104,10 @@ public class AllowDednSalComp
} }
catch(Exception dsParseEx) catch(Exception dsParseEx)
{ {
errorCode = "VPPAYPRC01\tException in converting base formula result [" + strResult + "] of AD Code [" + strCompCode + "]\r\n" + dsParseEx.getMessage(); //Modified By Poonam B[23-12-2019][START]
//errorCode = "VPPAYPRC01\tException in converting base formula result [" + strResult + "] of AD Code [" + strCompCode + "]\r\n" + dsParseEx.getMessage();
errorCode = "VPPAYPRC01\tException in converting base formula result [" + strResult + "] of AD Code [" + strCompCode + "]\r\n" + dsParseEx.getMessage().replace('"' , ' ').replace('<', ' ');
//Modified By Poonam B[23-12-2019][END]
break; break;
} }
} }
...@@ -1112,7 +1115,10 @@ public class AllowDednSalComp ...@@ -1112,7 +1115,10 @@ public class AllowDednSalComp
} }
catch(Exception bEvalEx) catch(Exception bEvalEx)
{ {
errorCode = "VPPAYPRC01\tException in base formula of AD Code [" + strCompCode + "]\r\n" + bEvalEx.getMessage(); //Modified By Poonam B[23-12-2019][START]
//errorCode = "VPPAYPRC01\tException in base formula of AD Code [" + strCompCode + "]\r\n" + bEvalEx.getMessage();
errorCode = "VPPAYPRC01\tException in base formula of AD Code [" + strCompCode + "]\r\n" + bEvalEx.getMessage().replace('"' , ' ').replace('<', ' ');
//Modified By Poonam B[23-12-2019][END]
break; break;
} }
} }
......
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