DBA Data[Home] [Help]

APPS.PO_AUTOCREATE_PREPROC_PVT dependencies on PO_DEBUG

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

3:
4: g_pkg_name CONSTANT VARCHAR2(1000) := 'PO_AUTOCREATE_PREPROC_PVT';
5: g_log_head CONSTANT VARCHAR2(1000) := 'po.plsql.PO_AUTOCREATE_PREPROC_PVT.';
6:
7: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
8: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
9:
10:
11: /* -------------------------------------------------------

Line 8: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;

4: g_pkg_name CONSTANT VARCHAR2(1000) := 'PO_AUTOCREATE_PREPROC_PVT';
5: g_log_head CONSTANT VARCHAR2(1000) := 'po.plsql.PO_AUTOCREATE_PREPROC_PVT.';
6:
7: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
8: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
9:
10:
11: /* -------------------------------------------------------
12: ---------------- PRIVATE PROCEDURES -------------------

Line 106: PO_DEBUG.debug_exc(p_log_head => g_log_head||l_api_name,

102: EXCEPTION
103: WHEN OTHERS THEN
104:
105: IF g_debug_unexp THEN --< Bug 3210331: use proper debugging >
106: PO_DEBUG.debug_exc(p_log_head => g_log_head||l_api_name,
107: p_progress => l_progress);
108: END IF;
109:
110: -- CLM Phase 2 Changes : Error Handling

Line 161: PO_DEBUG.debug_begin(p_log_head => g_log_head||l_api_name);

157:
158: BEGIN
159:
160: IF g_debug_stmt THEN
161: PO_DEBUG.debug_begin(p_log_head => g_log_head||l_api_name);
162: END IF;
163:
164: /* Validate the Requisition OU Id and Purchasing OU Id.
165: Catch the Requisition OU Id and set the session to

Line 264: PO_DEBUG.debug_exc(p_log_head => g_log_head||l_api_name,

260: EXCEPTION
261: WHEN OTHERS THEN
262:
263: IF g_debug_unexp THEN --< Bug 3210331: use proper debugging >
264: PO_DEBUG.debug_exc(p_log_head => g_log_head||l_api_name,
265: p_progress => l_progress);
266: END IF;
267:
268: IF (l_org_context_changed = 'Y') THEN