DBA Data[Home] [Help]

APPS.FND_CORE_LOG dependencies on FND_PROFILE_OPTION_VALUES

Line 47: from fnd_profile_option_values FPOV, fnd_profile_options FPO

43: */
44: if CORELOG_ENABLED is NULL then
45: select FPOV.PROFILE_OPTION_VALUE
46: into CORELOG_ENABLED
47: from fnd_profile_option_values FPOV, fnd_profile_options FPO
48: where FPO.PROFILE_OPTION_NAME = 'AFCORE_LOGGING_ENABLED'
49: and FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
50: and FPOV.level_id = 10001
51: and FPO.APPLICATION_ID = FPOV.APPLICATION_ID; -- bug 4620968

Line 100: from fnd_profile_option_values FPOV, fnd_profile_options FPO

96: */
97: if CORELOG_PROFILE is NULL then
98: select FPOV.PROFILE_OPTION_VALUE
99: into CORELOG_PROFILE
100: from fnd_profile_option_values FPOV, fnd_profile_options FPO
101: where FPO.PROFILE_OPTION_NAME = 'AFCORE_LOGGING_PROFILE_OPTION'
102: and FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
103: and FPOV.level_id = 10001
104: and FPO.APPLICATION_ID = FPOV.APPLICATION_ID; -- bug 4620968