on 2024 Aug 12 6:03 AM
Dear all,
Need to develop validation into Inventory transfer request like Total committed quantity is not greeter then total available quantity from all the warehouse. SAP is not allowed to create the inventory transfer request document if committed quantity from all warehouse is exceed from sum of available quantity.
All warehouse available quantity is 100. SAP is not allowed to make 101 quantity inventory transfer request document.
SAP Business One
Regards,
Nikunj
Hi @nikunjmehta2290 ,
SELECT * FROM OWTQ T0
INNER JOIN WTQ1 T1 ON T0."DocEntry" = T1."DocEntry"
LEFT JOIN OITW T2 ON T1."ItemCode" = T2."ItemCode" WHERE T2."IsCommited" < T2."OnHand"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
94 | |
8 | |
6 | |
6 | |
5 | |
5 | |
5 | |
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.