DBA Data[Home] [Help]

APPS.FND_FLEX_HIERARCHY_COMPILER dependencies on DBMS_UTILITY

Line 306: l_error_text := p_error_text || g_newline || dbms_utility.format_error_stack();

302: p_error_text in varchar2)
303: is
304: l_error_text varchar2(32000);
305: begin
306: l_error_text := p_error_text || g_newline || dbms_utility.format_error_stack();
307:
308: raise_application_error(p_error_code, l_error_text);
309:
310: exception

Line 318: g_error_message := dbms_utility.format_error_stack();

314: -- user as the main cause of the exception. Rest of the exception is
315: -- basically the call stack trace.
316: --
317: if (g_exception_depth = 0) then
318: g_error_message := dbms_utility.format_error_stack();
319: end if;
320:
321: g_exception_depth := g_exception_depth + 1;
322:

Line 1164: g_newline || dbms_utility.format_error_stack();

1160: p_send_date => Sysdate);
1161: EXCEPTION
1162: WHEN OTHERS THEN
1163: l_bes_message := 'Workflow: Business Event System raised exception.' ||
1164: g_newline || dbms_utility.format_error_stack();
1165: END;
1166:
1167: /*
1168: Release the lock of this program instance.

Line 1209: l_message := l_message || dbms_utility.format_error_stack();

1205: --
1206: -- Add the error message stack
1207: --
1208: l_message := l_message || '----- Error Message Stack -----' || g_newline;
1209: l_message := l_message || dbms_utility.format_error_stack();
1210:
1211: --
1212: -- Return FAILURE
1213: --