on 2014 Nov 19 6:11 PM
When I try to enable bins for one warehouse I get the following response:
"You cannot enable bin locations; close associated inventory counting documents and pick lists associated with the warehouse"
All Pick Lists are closed. Is there a SQL statement to run to find the other documents that are preventing this process?
Thanks,
Rob
Request clarification before answering.
The issue was a partially shipped picklist. Found from the SQL SELECT * FROM OPKL WHERE OPKL.Status <> 'C'
This must return no rows for the warehouse in question.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
HI,
Execute following query with your warehouse code and close all output Pick List then active BIN of there is not inventory open counting documents.
SELECT distinct t0."AbsEntry"
FROM OPKL T0
LEFT JOIN PKL1 T1 ON T0."AbsEntry" = T1."AbsEntry"
LEFT JOIN ORDR T2 ON T1."OrderEntry" = T2."DocEntry"
LEFT JOIN RDR1 T3 ON T2."DocEntry" = T3."DocEntry"
WHERE T0."Status" <> 'C'
and t3."WhsCode" = 'warehouse_code';
replace "warehouse_code" with your your warehouse code.
regards
Abid
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
did you close the Inventory Counting document??? under
Menu, choose >Inventory >Inventory Transactions >Inventory Counting Transactions > Inventory Counting
Check if there is any document which is using that warehouse and close that if it is there.
Regards,
Manish
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
19 | |
11 | |
9 | |
9 | |
7 | |
7 | |
6 | |
3 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.