how to invoke custom PLSQL API on subscription to Oracle.Apps.Ego.Item.Postattributechange event
Hello
We need to call a custom PLSQL API through subscription to a Oracle PDH related business event: Oracle.Apps.Ego.Item.Postattributechange
As per documentation for this event, below parameters are available
DML_TYPE: Indicates the type of operation. Values can be CREATE, UPDATE, or DELETE.
ATTR_GRP_NAME: Attribute Group Name
EXTENSION_ID: Extension ID that uniquely identifies the record in the UDA extension table
INVENTORY_ITEM_ID: Item ID
ORGANIZATION_ID: Organization ID
REVISION_ID: Revision ID
PK1_VALUE: Supplier ID
PK2_VALUE: SupplierSite ID
DATA_LEVEL_ID: Data Level ID
How do we pass or read these parameters in our custom API? Do we need to set the parameters during subscription? or whether it can be directly read in the API PL/SQL code?