DBA Data[Home] [Help]

APPS.EGO_EXT_FWK_PUB dependencies on FND_LOOKUPS

Line 13902: -- as represented in lookup 'EGO_PC_CONTROL_LEVEL' in fnd_lookups

13898:
13899: ------------------------------------------------------------------------------------------
13900: -- This method will update the control level of an attribute in EGO_FND_DF_COL_USGS_EXT
13901: -- requires: 1) p_control_level is a valid control level
13902: -- as represented in lookup 'EGO_PC_CONTROL_LEVEL' in fnd_lookups
13903: -- 2) p_application_column_name is not null and is a valid column name
13904: -- 3) p_application_id is not null and is valid
13905: -- 4) p_descriptive_flexfield_name corresponds to a valid attribute group type
13906: ------------------------------------------------------------------------------------------

Line 13941: select lookup_code into l_control_level from fnd_lookups

13937: IF( p_control_level IS NULL ) THEN
13938: RAISE e_control_level_invalid;
13939: ELSE
13940: BEGIN
13941: select lookup_code into l_control_level from fnd_lookups
13942: where lookup_type = 'EGO_PC_CONTROL_LEVEL'
13943: and lookup_code = p_control_level;
13944:
13945: EXCEPTION