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;

Procedure Signature

ALTER PROCEDURE SBO_SP_TransactionNotification
(
Related skills
Installs
1
Repository
kehwar/skills
First Seen
7 days ago
Security Audits