Commit 3044c941 authored by skumbhar's avatar skumbhar

added confirmed check in filter


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98191 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cf064d23
...@@ -77,7 +77,7 @@ public class FailedBusiLogicConf implements Schedule ...@@ -77,7 +77,7 @@ public class FailedBusiLogicConf implements Schedule
System.out.println("ScheduleParamXML contains :- ["+scheduleParamXML+"]"); System.out.println("ScheduleParamXML contains :- ["+scheduleParamXML+"]");
sql = "select tran_id from business_logic_check blc " + sql = "select tran_id from business_logic_check blc " +
"join sorder so on so.sale_order = blc.sale_order and so.cr_check_stat = 'F' " + "join sorder so on so.sale_order = blc.sale_order and so.cr_check_stat = 'F' and so.confirmed = 'N' " +
"where tran_id not in (select ref_id from wf_prc_status where ref_ser = 'T-BLOG')"; "where tran_id not in (select ref_id from wf_prc_status where ref_ser = 'T-BLOG')";
System.out.println("after sql while loop"); System.out.println("after sql while loop");
pStmt = conn.prepareStatement(sql); pStmt = conn.prepareStatement(sql);
......
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