DBA Data[Home] [Help]

APPS.FND_GLOBAL dependencies on FND_PROFILE_OPTION_VALUES

Line 75: debug_trace_name fnd_profile_option_values.profile_option_value%type;

71: is_debugging boolean := false;
72:
73: -- Wildcard name for determining when to dump the stack when the
74: -- name's value is changed.
75: debug_trace_name fnd_profile_option_values.profile_option_value%type;
76:
77: -- Logging to fnd_core_log circumvents other logging.
78: -- That is, if this is enabled, the other two methods
79: -- will not be reached.

Line 123: from fnd_profile_option_values fpov, fnd_profile_options fpo

119: if debug_trace_name is null then
120: begin
121: select fpov.profile_option_value
122: into debug_trace_name
123: from fnd_profile_option_values fpov, fnd_profile_options fpo
124: where fpo.profile_option_name = 'AFGLOBAL_TRACE_NAME'
125: and fpo.profile_option_id = fpov.profile_option_id
126: and fpov.level_id = 10001
127: and fpo.application_id = fpov.application_id;