DBA Data[Home] [Help]

APPS.PO_COPYDOC_S4 dependencies on PO_DEBUG

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

2: /* $Header: POXCPO4B.pls 120.6 2011/01/13 17:55:29 yawang ship $*/
3:
4: --< Shared Proc FPJ Start >
5: -- Debugging booleans used to bypass logging when turned off
6: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
7: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
8:
9: g_pkg_name CONSTANT VARCHAR2(20) := 'PO_COPYDOC_S4';
10: g_module_prefix CONSTANT VARCHAR2(30) := 'po.plsql.' || g_pkg_name || '.';

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

3:
4: --< Shared Proc FPJ Start >
5: -- Debugging booleans used to bypass logging when turned off
6: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
7: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
8:
9: g_pkg_name CONSTANT VARCHAR2(20) := 'PO_COPYDOC_S4';
10: g_module_prefix CONSTANT VARCHAR2(30) := 'po.plsql.' || g_pkg_name || '.';
11:

Line 104: PO_DEBUG.debug_stmt

100: ********************/
101: l_progress := '001';
102:
103: IF g_debug_stmt THEN --< Shared Proc FPJ > Add correct debugging
104: PO_DEBUG.debug_stmt
105: (p_log_head => g_module_prefix||'validate_shipment',
106: p_token => 'invoked',
107: p_message => 'action_code: '||p_action_code||' to_doc_subtype: '||
108: p_to_doc_subtype||' header ID: '||p_po_header_id||

Line 560: PO_DEBUG.debug_end

556: END;
557:
558: x_return_code := 0;
559: IF g_debug_stmt THEN --< Shared Proc FPJ > Add correct debugging
560: PO_DEBUG.debug_end
561: (p_log_head => g_module_prefix||'validate_shipment');
562: END IF;
563:
564: EXCEPTION

Line 568: PO_DEBUG.debug_stmt

564: EXCEPTION
565: WHEN COPYDOC_SHIPMENT_FAILURE THEN
566: x_return_code := -1;
567: IF g_debug_stmt THEN --< Shared Proc FPJ > Add correct debugging
568: PO_DEBUG.debug_stmt
569: (p_log_head => g_module_prefix||'validate_shipment',
570: p_token => l_progress,
571: p_message => 'COPYDOC_SHIPMENT_FAILURE exception caught.');
572: END IF;

Line 584: PO_DEBUG.debug_stmt

580: x_shipment_num => x_po_shipment_record.shipment_num,
581: x_distribution_num => 0);
582: x_return_code := -1;
583: IF g_debug_stmt THEN
584: PO_DEBUG.debug_stmt
585: (p_log_head => g_module_prefix||'validate_shipment',
586: p_token => l_progress,
587: p_message => 'FND_API.g_exc_error caught.');
588: END IF;

Line 597: PO_DEBUG.debug_exc

593: x_sequence,
594: p_line_num, x_po_shipment_record.shipment_num, 0);
595: x_return_code := -1;
596: IF g_debug_unexp THEN --< Shared Proc FPJ > Add correct debugging
597: PO_DEBUG.debug_exc
598: (p_log_head => g_module_prefix||'validate_shipment',
599: p_progress => l_progress);
600: END IF;
601: END validate_shipment;