DBA Data[Home] [Help]

APPS.EGO_EXT_FWK_PUB dependencies on FND_LOOKUPS

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

14968:
14969: ------------------------------------------------------------------------------------------
14970: -- This method will update the control level of an attribute in EGO_FND_DF_COL_USGS_EXT
14971: -- requires: 1) p_control_level is a valid control level
14972: -- as represented in lookup 'EGO_PC_CONTROL_LEVEL' in fnd_lookups
14973: -- 2) p_application_column_name is not null and is a valid column name
14974: -- 3) p_application_id is not null and is valid
14975: -- 4) p_descriptive_flexfield_name corresponds to a valid attribute group type
14976: ------------------------------------------------------------------------------------------

Line 15011: select lookup_code into l_control_level from fnd_lookups

15007: IF( p_control_level IS NULL ) THEN
15008: RAISE e_control_level_invalid;
15009: ELSE
15010: BEGIN
15011: select lookup_code into l_control_level from fnd_lookups
15012: where lookup_type = 'EGO_PC_CONTROL_LEVEL'
15013: and lookup_code = p_control_level;
15014:
15015: EXCEPTION