DBA Data[Home] [Help]

TRIGGER: APPS.FF_USER_ENTITIES_BRU

Source

Description
ff_user_entities_bru
/*
  The FF_USER_ENTITIES cannot be updated
*/
before update
on 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 (802,'FF73_CANNOT_UPDATE_DETAILS');
  hr_utility.set_message_token(802,'1','FF94_USER_ENTITY');
  hr_utility.raise_error;
end if;
end ff_user_entities_bru;