Commit d0a84f91 authored by piyush's avatar piyush

Duplicate variable name empCode is rectified by Ahmed in PayStruChgReqIC

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217291 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 672543ca
......@@ -964,11 +964,11 @@ public class PayStruChgReqIC extends ValidatorEJB implements PayStruChgReqICLoca
retString = itmDBAccess.getErrorString( "", "VTPAYALC23", userId, "", conn );
return retString;
}
String empCode = checkNull(genericUtility.getColumnValue("emp_code",dom1 ));
String empCode1 = checkNull(genericUtility.getColumnValue("emp_code",dom1 ));
String parValue = "";
sql = " SELECT DDF_HR_SITE_ENV_VALUE(?,FN_SYSDATE(),'HEAD_ALLOC_AMT_RANGE') as par_value from dual";
pstmt = conn.prepareStatement( sql );
pstmt.setString( 1, empCode );
pstmt.setString( 1, empCode1 );
rs = pstmt.executeQuery();
if( rs.next() )
{
......
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