DBA Data[Home] [Help]

TRIGGER: APPS.FEM_USER_DIM3_DL

Source

Description
FEM_USER_DIM3_DL
instead of delete on FEM_USER_DIM3_VL
referencing old as FEM_USER_DIM3_B
for each row
Type
INSTEAD OF
Event
DELETE
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS FEM_USER_DIM3_B
Body
begin
  FEM_USER_DIM3_PKG.DELETE_ROW(
    X_USER_DIM3_ID => :FEM_USER_DIM3_B.USER_DIM3_ID,
    X_VALUE_SET_ID => :FEM_USER_DIM3_B.VALUE_SET_ID);
 ---
end DELETE_ROW;
 ---