DBA Data[Home] [Help]

TRIGGER: APPS.AR_RECEIVABLE_APPLICATIONS_BRI

Source

Description
ar_receivable_applications_bri
BEFORE INSERT ON ar_receivable_applications_all FOR EACH ROW
Type
BEFORE EACH ROW
Event
INSERT
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS OLD
Body
BEGIN
    arp_receivable_applications.PopulateCashReceiptHistoryId( :new.cash_receipt_id, :new.cash_receipt_history_id );
EXCEPTION
    WHEN OTHERS THEN
        arp_standard.debug( 'Exception:ar_receivable_applications_bri');
        arp_standard.debug( 'new.cash_receipt_id:'||:new.cash_receipt_id );
        arp_standard.debug( 'new.cash_receipt_history_id:'||:new.cash_receipt_history_id );
        RAISE;
END;