DBA Data[Home] [Help]

APPS.FND_APP_SERVER_PKG dependencies on FND_LOOKUP_VALUES

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

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

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

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

Line 91: FROM fnd_lookup_values

87: -- The following query was modeled not to violate the FND_LOOKUP_VALUES_U1
88: -- unique index. See bug 5723530.
89: SELECT lookup_code
90: INTO l_platform_code
91: FROM fnd_lookup_values
92: WHERE lookup_type = 'PLATFORM'
93: AND tag = p_platform
94: AND language = userenv('LANG')
95: AND view_application_id = 0