DBA Data[Home] [Help]

TRIGGER: APPS.FEM_PURPOSES_DL

Source

Description
FEM_PURPOSES_DL
instead of delete on FEM_PURPOSES_VL
referencing old as FEM_PURPOSES_B
for each row
Type
INSTEAD OF
Event
DELETE
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS FEM_PURPOSES_B
Body
begin
  FEM_PURPOSES_PKG.DELETE_ROW(
    X_PURPOSE_ID => :FEM_PURPOSES_B.PURPOSE_ID);
 ---
end DELETE_ROW;
 ---