DBA Data[Home] [Help]

TRIGGER: APPS.PAY_BATCH_LINES_BRUID

Source

Description
pay_batch_lines_bruid
before insert or update or delete
on pay_batch_lines
for each row

Type
BEFORE EACH ROW
Event
INSERT OR UPDATE OR DELETE
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS OLD
Body
begin
if (hr_general.g_data_migrator_mode <> 'Y' and payplnk.g_payplnk_call = false) then
  hr_batch_lock_pkg.batch_header_lock(:old.batch_id,:new.batch_id);
end if;
end pay_batch_lines_bruid;