Commit 593c20d9 authored by steurwadkar's avatar steurwadkar

Changes committed for adding trace in XML upload utility.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104202 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 46c53944
......@@ -366,6 +366,10 @@ public class GenVal
if ( checkBlank( fldName, fldData, blankOpt) && valType.trim().equalsIgnoreCase( "M" ) )
{
errMsg = errCD;//user enter blank but blank option is Y
//Added by Santosh on 15/12/2016 to return error string with trace[Start]
errMsg = getTraceErrStrOnError(data, modName, objContext);
errMsg += "error_code="+errCD;
//Added by Santosh on 15/12/2016 to return error string with trace[End]
}
else
{
......@@ -493,8 +497,8 @@ public class GenVal
}
System.out.println("final errorMap["+errorMap+"]");
//Added by Santosh on 15/12/2016 to add error map in errlist[Start]
errList.add(errorMap);
//Added by Santosh on 15/12/2016 to add error map in errlist[Start]
errMsg="";
}
}
......
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