DBA Data[Home] [Help]

APPS.FND_APP_SERVER_PKG dependencies on FND_LOOKUP_VALUES

Line 84: -- The FND_LOOKUP_VALUES.TAG column was updated for the PLATFORM lookup_type

80: FUNCTION get_platform_code(p_platform IN VARCHAR2) RETURN VARCHAR2
81: IS
82: l_platform_code VARCHAR2(30);
83: BEGIN
84: -- The FND_LOOKUP_VALUES.TAG column was updated for the PLATFORM lookup_type
85: -- to support the p_platform values derived from
86: -- SystemCheck.DetectPlatform().
87: --
88: -- The following query was modeled not to violate the FND_LOOKUP_VALUES_U1

Line 88: -- The following query was modeled not to violate the FND_LOOKUP_VALUES_U1

84: -- The FND_LOOKUP_VALUES.TAG column was updated for the PLATFORM lookup_type
85: -- to support the p_platform values derived from
86: -- SystemCheck.DetectPlatform().
87: --
88: -- The following query was modeled not to violate the FND_LOOKUP_VALUES_U1
89: -- unique index. See bug 5723530.
90: select lookup_code
91: into l_platform_code
92: from fnd_lookup_values

Line 92: from fnd_lookup_values

88: -- The following query was modeled not to violate the FND_LOOKUP_VALUES_U1
89: -- unique index. See bug 5723530.
90: select lookup_code
91: into l_platform_code
92: from fnd_lookup_values
93: where lookup_type = 'PLATFORM'
94: and tag = p_platform
95: and language = userenv('LANG')
96: and view_application_id = 0