DBA Data[Home] [Help]

TRIGGER: APPS.FEM_USER_DIM1_DL

Source

Description
FEM_USER_DIM1_DL
instead of delete on FEM_USER_DIM1_VL
referencing old as FEM_USER_DIM1_B
for each row
Type
INSTEAD OF
Event
DELETE
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS FEM_USER_DIM1_B
Body
begin
  FEM_USER_DIM1_PKG.DELETE_ROW(
    X_USER_DIM1_ID => :FEM_USER_DIM1_B.USER_DIM1_ID,
    X_VALUE_SET_ID => :FEM_USER_DIM1_B.VALUE_SET_ID);
 ---
end DELETE_ROW;
 ---