on 2021 Sep 15 10:31 AM
We are using SAP B1 9.3, recently we want to prompt user after update item master,
IF ((:transaction_type=(n'A') OR :transaction_type=(n'U')) AND :object_type='60')
Begin
UPDATE OIGE SET Comments = concat(Comments,' / ',DocNum) WHERE DocEntry = :list_of_cols_val_tab_del End;
the code is works fine in SBO_SP_TransactionNotification, to test, I just simply add code like this,
IF ((:transaction_type=(n'A') OR :transaction_type=(n'U')) AND :object_type='60')
Begin
UPDATE OIGE SET Comments = concat(Comments,' / ',DocNum) WHERE DocEntry = :list_of_cols_val_tab_del Select @error = 1, @error_message = ' Update Working Sucessfully ';
End;
but it is nothing happened, message display, " operation completed successfully"
can anyone that has experience made SBO_SP_PostTransactionNotice work........?????
Request clarification before answering.
User | Count |
---|---|
8 | |
4 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.