Commit 7fc48d5f authored by piyush's avatar piyush

Changes done in PayStruChgReqIC.java

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217673 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 593f93de
......@@ -304,6 +304,26 @@ public class PayStruChgReqIC extends ValidatorEJB implements PayStruChgReqICLoca
pstmt.close();
pstmt = null;
}
// Modified by Piyush on 07/03/2020[Start]
sql = "select descr as ad_alloc_group_descr from ALLWDEDN where AD_CODE= ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setString( 1, adAllocGroup );
rs = pstmt.executeQuery();
if(rs.next())
{
adAllocGroupDescr = checkNull( rs.getString("ad_alloc_group_descr") );
}
if( rs != null )
{
rs.close();
rs = null;
}
if( pstmt != null )
{
pstmt.close();
pstmt = null;
}
// Modified by Piyush on 07/03/2020[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