BF2016936 BOM verification while saving BOM lines not working

- fix typo in last commit
This commit is contained in:
tspc 2008-07-14 07:35:11 +00:00
parent 717dacc9a1
commit badca70452
1 changed files with 2 additions and 2 deletions

View File

@ -300,8 +300,8 @@ public class MPPProductBOMLine extends X_PP_Product_BOMLine
{
String sql = new String(
"SELECT pbom.M_Product_ID , pbom.Value , pbom.PP_Product_BOM_ID FROM PP_Product_BOMLine pboml"
+ "INNER JOIN PP_Product_BOM pbom ON (pbom.PP_Product_BOM_ID = pboml.PP_Product_BOM_ID)"
+ "WHERE pbom.IsActive= 'Y' AND pboml.IsActive= 'Y' AND pboml.AD_Client_ID =? AND pboml.PP_Product_BOMLine_ID = ? ");
+ " INNER JOIN PP_Product_BOM pbom ON (pbom.PP_Product_BOM_ID = pboml.PP_Product_BOM_ID)"
+ " WHERE pbom.IsActive= 'Y' AND pboml.IsActive= 'Y' AND pboml.AD_Client_ID =? AND pboml.PP_Product_BOMLine_ID = ? ");
PreparedStatement pstmt = null;
ResultSet rs = null;
try