DBA Data[Home] [Help]

TRIGGER: APPS.FF_USER_ENTITIES_BRU

Source

Description
"APPS"."FF_USER_ENTITIES_BRU" 
/*
  The FF_USER_ENTITIES cannot be updated
*/
before update
 ON  "HR"."FF_USER_ENTITIES#"  for each row
Type
BEFORE EACH ROW
Event
UPDATE
Column
When
Referencing
REFERENCING NEW AS NEW OLD AS OLD
Body
begin
if hr_general.g_data_migrator_mode <> 'Y' then
  hr_utility.set_message (801,'FF73_CANNOT_UPDATE_DETAILS');
  hr_utility.set_message_token(801,'1','FF94_USER_ENTITY');
  hr_utility.raise_error;
end if;
end ff_user_entities_bru;