DBA Data[Home] [Help]

APPS.FND_CORE_LOG dependencies on FND_PROFILE_OPTIONS

Line 27: from fnd_profile_option_values FPOV, fnd_profile_options FPO

23: */
24: if CORELOG_ENABLED is NULL then
25: select FPOV.PROFILE_OPTION_VALUE
26: into CORELOG_ENABLED
27: from fnd_profile_option_values FPOV, fnd_profile_options FPO
28: where FPO.PROFILE_OPTION_NAME = 'AFCORE_LOGGING_ENABLED'
29: and FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
30: and FPOV.level_id = 10001
31: and FPO.APPLICATION_ID = FPOV.APPLICATION_ID; -- bug 4620968

Line 77: from fnd_profile_option_values FPOV, fnd_profile_options FPO

73: */
74: if CORELOG_PROFILE is NULL then
75: select FPOV.PROFILE_OPTION_VALUE
76: into CORELOG_PROFILE
77: from fnd_profile_option_values FPOV, fnd_profile_options FPO
78: where FPO.PROFILE_OPTION_NAME = 'AFCORE_LOGGING_PROFILE_OPTION'
79: and FPO.PROFILE_OPTION_ID = FPOV.PROFILE_OPTION_ID
80: and FPOV.level_id = 10001
81: and FPO.APPLICATION_ID = FPOV.APPLICATION_ID; -- bug 4620968