DBA Data[Home] [Help]

APPS.ASN_DEBUG dependencies on ASN_DEBUG

Line 1: PACKAGE BODY ASN_DEBUG AS

1: PACKAGE BODY ASN_DEBUG AS
2: /* $Header: RCVDBUGB.pls 120.0.12010000.5 2010/01/27 18:28:19 vthevark ship $ */
3:
4: g_product_code constant varchar2(5) := 'p'||'o'||'.'; -- gscc hack
5: g_debugging_enabled VARCHAR2(1) := asn_debug.is_debug_on; -- Bug 9152790

Line 5: g_debugging_enabled VARCHAR2(1) := asn_debug.is_debug_on; -- Bug 9152790

1: PACKAGE BODY ASN_DEBUG AS
2: /* $Header: RCVDBUGB.pls 120.0.12010000.5 2010/01/27 18:28:19 vthevark ship $ */
3:
4: g_product_code constant varchar2(5) := 'p'||'o'||'.'; -- gscc hack
5: g_debugging_enabled VARCHAR2(1) := asn_debug.is_debug_on; -- Bug 9152790
6:
7:
8: /*===========================================================================
9:

Line 45: p_stack_depth = 1 --> asn_debug.put_line

41: p_label OUT NOCOPY VARCHAR2,
42: p_stack_depth IN NUMBER) IS
43: /* p_stack_depth is the rewind depth. for example
44: p_stack_depth = 2 --> calling procedure name
45: p_stack_depth = 1 --> asn_debug.put_line
46: p_stack_depth = 0 --> get_calling_procedure
47: you can override the rewind depth as needed
48: */
49: stk VARCHAR2(2000);

Line 252: END ASN_DEBUG;

248: return 'N';
249: END IF;
250: END;
251:
252: END ASN_DEBUG;