Commit a9985608 authored by msharma's avatar msharma

Correct Syntax Error


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91737 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e10a2905
......@@ -463,8 +463,7 @@ public class StockAllocPrc extends ActionHandlerEJB implements StockAllocPrcLoca
pSordAllocDet.clearParameters();
pSordAllocDet.close(); pSordAllocDet = null;
saleOrder
updateSql = "UPDATE sorder SET alloc_flag = 'M'WHERE sale_order = ? ";
updateSql = "UPDATE sorder SET alloc_flag = 'M' WHERE sale_order = ? ";
pstmt = conn.prepareStatement(updateSql);
pstmt.setString(1,saleOrder);
updCount = pstmt.executeUpdate();
......
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