DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_UTIL_PVT dependencies on PO_DEBUG

Line 6: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;

2: /* $Header: POXVACUB.pls 120.1.12020000.4 2013/05/20 11:18:22 akyanama ship $ */
3:
4: G_PKG_NAME CONSTANT VARCHAR2(30) := 'PO_AUTOCREATE_UTIL_PVT';
5: G_MODULE_PREFIX CONSTANT VARCHAR2(40) := 'po.plsql.' || g_pkg_name || '.';
6: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
7:
8: /**************** PRIVATE PROCEDURES ****************/
9:
10: -----------------------------------------------------------------------

Line 94: PO_DEBUG.debug_begin

90:
91: l_progress := '000';
92:
93: IF (g_debug_stmt) THEN
94: PO_DEBUG.debug_begin
95: ( p_log_head => l_module
96: );
97:
98: PO_DEBUG.debug_var

Line 98: PO_DEBUG.debug_var

94: PO_DEBUG.debug_begin
95: ( p_log_head => l_module
96: );
97:
98: PO_DEBUG.debug_var
99: ( p_log_head => l_module,
100: p_progress => l_progress,
101: p_name => 'p_key',
102: p_value => p_key

Line 105: PO_DEBUG.debug_var

101: p_name => 'p_key',
102: p_value => p_key
103: );
104:
105: PO_DEBUG.debug_var
106: ( p_log_head => l_module,
107: p_progress => l_progress,
108: p_name => 'p_req_list.COUNT',
109: p_value => p_req_list.COUNT

Line 123: PO_DEBUG.debug_end

119: p_req_list => p_req_list
120: );
121:
122: IF (g_debug_stmt) THEN
123: PO_DEBUG.debug_end
124: ( p_log_head => l_module
125: );
126: END IF;
127: END synchronize_builder_reqs;