DBA Data[Home] [Help]

APPS.ASN_DEBUG dependencies on DBMS_UTILITY

Line 58: stk:=DBMS_UTILITY.format_call_stack;

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

Line 109: debug_msg(DBMS_UTILITY.FORMAT_CALL_STACK);

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