DBA Data[Home] [Help]

TRIGGER: APPS.PAY_PBC_MNT_TL_ASI

Source

Description
pay_pbc_mnt_tl_asi

/*
  Maintain pay_balance_categories_f_tl data in cases
  where dml is being performed outside
  api

*/

after insert
on pay_balance_categories_f
Type
AFTER STATEMENT
Event
INSERT
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS OLD
Body
declare
begin
if ( hr_general.g_data_migrator_mode <> 'Y' and pay_balance_category_api.return_dml_status <> true ) then


    pay_mls_triggers.pbc_asi();

end if;
end pay_pbc_mnt_tl_asi;