DBA Data[Home] [Help]

APPS.FND_UMS_ANALYSIS_ENGINE dependencies on DBMS_UTILITY

Line 336: append_to_report(dbms_utility.format_error_stack());

332: append_to_report(g_globals.root_cause_error_message);
333:
334: append_to_report(' ');
335: append_to_report('----- Error Message Stack -----');
336: append_to_report(dbms_utility.format_error_stack());
337:
338: if (g_globals.debug_on) then
339: append_to_report(' ');
340: append_to_report(dbms_utility.format_call_stack());

Line 340: append_to_report(dbms_utility.format_call_stack());

336: append_to_report(dbms_utility.format_error_stack());
337:
338: if (g_globals.debug_on) then
339: append_to_report(' ');
340: append_to_report(dbms_utility.format_call_stack());
341: end if;
342:
343: append_to_report(rpad('=', 80, '='));
344: exception

Line 487: l_error_text := p_error_text || NEWLINE || dbms_utility.format_error_stack();

483: p_error_text in varchar2)
484: is
485: l_error_text varchar2(32000);
486: begin
487: l_error_text := p_error_text || NEWLINE || dbms_utility.format_error_stack();
488:
489: raise_application_error(p_error_code, l_error_text);
490:
491: exception

Line 499: g_globals.root_cause_error_message := dbms_utility.format_error_stack();

495: -- user as the main cause of the exception. Rest of the exception is
496: -- basically the call stack trace.
497: --
498: if (g_globals.exception_depth = 0) then
499: g_globals.root_cause_error_message := dbms_utility.format_error_stack();
500: end if;
501:
502: g_globals.exception_depth := g_globals.exception_depth + 1;
503: