Commit a2d8e6ca authored by cpatil's avatar cpatil

remove rcplive n add order by in sql for WO


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99288 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c19b905a
...@@ -567,8 +567,8 @@ public class MrpWizPrsSaveBean ...@@ -567,8 +567,8 @@ public class MrpWizPrsSaveBean
*/ */
sql1 = " select work_order from RCPLIVE.workorder where " + sql1 = " select work_order from workorder where " +
" ADDN_ORDER like '%"+tempSO+"%' and item_code = ? "; " ADDN_ORDER like '%"+tempSO+"%' and item_code = ? ORDER BY WORK_ORDER ";
pstmt1=conn.prepareStatement(sql1); pstmt1=conn.prepareStatement(sql1);
pstmt1.setString(1,previousItem); pstmt1.setString(1,previousItem);
rs1 = pstmt1.executeQuery(); rs1 = pstmt1.executeQuery();
......
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