DBA Data[Home] [Help]

TRIGGER: APPS.AR_RECEIVABLE_APPLICATIONS_BRI

Source

Description
"APPS"."AR_RECEIVABLE_APPLICATIONS_BRI" 
BEFORE INSERT
 ON  "AR"."AR_RECEIVABLE_APPLICATIONS_AL#"  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;