on 2020 Oct 09 1:53 PM
Hello World..!!
I require a Transaction Notification for SAP B1 HANA for following scenario -
System should not allow posting of Receipt from Production without the posting of Issue for Production first if the production order has an item set to Manual issue method.
Thanks much!
Request clarification before answering.
Try the below code after addding your customize conditions
IF @transaction_type IN ('A', 'U') AND (@OBJECT_TYPE = '59') BEGIN IF EXISTS ( SELECT t0.docentry FROM OIGN T0 INNER JOIN IGN1 T1 ON T0.DocEntry = T1.DocEntry LEFT JOIN OWOR T2 ON t2.docentry = T1.[BaseEntry] INNER JOIN WOR1 T3 ON T2.DocEntry = T3.DocEntry WHERE T3.[IssuedQty] = 0 AND T0.DocEntry = @list_of_cols_val_tab_del ) BEGIN SET @error = 10 SET @error_message = 'Please Issue Components First' END END
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
91 | |
11 | |
9 | |
6 | |
6 | |
4 | |
4 | |
4 | |
3 | |
3 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.