sap-transaction-notifications
Installation
SKILL.md
SAP Transaction Notifications
SAP Business One calls SBO_SP_TransactionNotification on every committed transaction. You edit the body; SAP defines only the signature.
Quick Start
Add a guard inside the BEGIN … END block. Always use ALTER PROCEDURE (never CREATE) — the procedure already exists in the company database:
IF :object_type = '4' AND (:transaction_type = 'A' OR :transaction_type = 'U') THEN
CALL "MYAPP_TN_OBJ004_OITM" (:list_of_cols_val_tab_del, :transaction_type, :error, :error_message);
END IF;