DBA Data[Home] [Help]

APPS.ASN_DEBUG dependencies on DBMS_UTILITY

Line 59: stk:=DBMS_UTILITY.format_call_stack;

55: r VARCHAR2(2000);
56: s VARCHAR2(2000);
57: rtn VARCHAR2(1);
58: BEGIN
59: stk:=DBMS_UTILITY.format_call_stack;
60: len:=LENGTH(stk);
61: rtn:=SUBSTRB(stk,-1); --get the return character
62: p1:=INSTRB(stk,rtn,1,p_stack_depth+3)+1;
63: p2:=INSTRB(stk,rtn,1,p_stack_depth+4);

Line 110: debug_msg(DBMS_UTILITY.FORMAT_CALL_STACK);

106: /* print stack will print out the current procedure calling stack */
107: PROCEDURE print_stack is
108: BEGIN
109: debug_msg('Current Calling Stack = '||g_procedure_stack);
110: debug_msg(DBMS_UTILITY.FORMAT_CALL_STACK);
111: END;
112:
113: /* start procedure adds procedure name to the simulated procedure stack */
114: /* g_procedure_stack is a string that keeps a list of all the stacks */