DBA Data[Home] [Help]

APPS.FND_DEBUG dependencies on FND_DEBUG_OPTIONS

Line 88: from fnd_debug_options DO,

84: DRO.debug_option_value, DR.debug_rule_id, repeation_counter, start_time,
85: end_time, user_id, responsibility_id, resp_appl_id, component_type,
86: component_name, component_id, component_appl_id,
87: trace_file_routine, trace_file_node, comments, nvl(request_id,0) reqid
88: from fnd_debug_options DO,
89: fnd_debug_rules DR,
90: fnd_debug_option_values DOV,
91: fnd_debug_rule_options DRO
92: where ( DR.user_id = userid

Line 136: from fnd_debug_options DO,

132: DRO.debug_option_value, DR.debug_rule_id, repeation_counter, start_time,
133: end_time, user_id, responsibility_id, resp_appl_id, component_type,
134: component_name, component_id, component_appl_id,
135: trace_file_routine, trace_file_node, comments, nvl(request_id,0) reqid
136: from fnd_debug_options DO,
137: fnd_debug_rules DR,
138: fnd_debug_option_values DOV,
139: fnd_debug_rule_options DRO
140: where ( DR.user_id = userid

Line 454: from fnd_debug_options DO,

450: end_time, user_id, responsibility_id, resp_appl_id,
451: component_type, component_name, component_id, component_appl_id,
452: trace_file_routine, trace_file_node, comments,
453: nvl(request_id,0) reqid
454: from fnd_debug_options DO,
455: fnd_debug_rules DR,
456: fnd_debug_option_values DOV,
457: fnd_debug_rule_options DRO
458: where ( DR.user_id = uid

Line 578: fnd_debug_options DO

574: FROM DUAL
575: WHERE EXISTS(
576: SELECT *
577: FROM fnd_debug_rule_options DRO,
578: fnd_debug_options DO
579: WHERE DRO.debug_option_name=DO.debug_option_name
580: AND DO.type='D'
581: AND dr_rec.debug_rule_id=DRO.debug_rule_id);
582: EXCEPTION