26:
27: /* ***********************
28: ** Package variables
29: ** ***********************/
30: --dbms_utility.format_call_stack VARCHAR2(2000);
31:
32: /* ***********************
33: ** Package exceptions
34: ** ***********************/
375: WHEN OTHERS THEN
376: /* Unexpected exceptions */
377: x_return_status := pc_ret_sts_unexp_error;
378: gv_prg_msg := SQLERRM;
379: gv_callstack := dbms_utility.format_call_stack;
380:
381: /* Log the call stack and the Oracle error message to
382: ** FND_LOG with the "unexpected exception" severity level. */
383:
605: WHEN OTHERS THEN
606: /* Unexpected exceptions */
607: x_return_status := pc_ret_sts_unexp_error;
608: gv_prg_msg := SQLERRM;
609: gv_callstack := dbms_utility.format_call_stack;
610:
611: /* Log the call stack and the Oracle error message to
612: ** FND_LOG with the "unexpected exception" severity level. */
613:
872: WHEN OTHERS THEN
873: /* Unexpected exceptions */
874: x_return_status := pc_ret_sts_unexp_error;
875: gv_prg_msg := SQLERRM;
876: gv_callstack := dbms_utility.format_call_stack;
877:
878: /* Log the call stack and the Oracle error message to
879: ** FND_LOG with the "unexpected exception" severity level. */
880: