Commit 8c4b6eae authored by arawankar's avatar arawankar

Changes made in FinCommon.java

1. if user id is null in xtra params then take login code from xtra params
2. if login code is null then added chg user as "SYSTEM"

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@182320 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a84f882c
...@@ -12454,7 +12454,7 @@ public class FinCommon ...@@ -12454,7 +12454,7 @@ public class FinCommon
chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode"); chgUser = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginCode");
if(chgUser == null || chgUser.trim().length() == 0) if(chgUser == null || chgUser.trim().length() == 0)
{ {
chgUser = "system"; chgUser = "SYSTEM";
} }
} }
//Modified by Anjali R. on[20/03/2018][To take login code from xtra params if user id is null][End] //Modified by Anjali R. on[20/03/2018][To take login code from xtra params if user id is null][End]
......
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