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.5 2008/02/28 09:46:30 lswamina 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 553: PO_DEBUG.debug_end

549: END;
550:
551: x_return_code := 0;
552: IF g_debug_stmt THEN --< Shared Proc FPJ > Add correct debugging
553: PO_DEBUG.debug_end
554: (p_log_head => g_module_prefix||'validate_shipment');
555: END IF;
556:
557: EXCEPTION

Line 561: PO_DEBUG.debug_stmt

557: EXCEPTION
558: WHEN COPYDOC_SHIPMENT_FAILURE THEN
559: x_return_code := -1;
560: IF g_debug_stmt THEN --< Shared Proc FPJ > Add correct debugging
561: PO_DEBUG.debug_stmt
562: (p_log_head => g_module_prefix||'validate_shipment',
563: p_token => l_progress,
564: p_message => 'COPYDOC_SHIPMENT_FAILURE exception caught.');
565: END IF;

Line 577: PO_DEBUG.debug_stmt

573: x_shipment_num => x_po_shipment_record.shipment_num,
574: x_distribution_num => 0);
575: x_return_code := -1;
576: IF g_debug_stmt THEN
577: PO_DEBUG.debug_stmt
578: (p_log_head => g_module_prefix||'validate_shipment',
579: p_token => l_progress,
580: p_message => 'FND_API.g_exc_error caught.');
581: END IF;

Line 590: PO_DEBUG.debug_exc

586: x_sequence,
587: p_line_num, x_po_shipment_record.shipment_num, 0);
588: x_return_code := -1;
589: IF g_debug_unexp THEN --< Shared Proc FPJ > Add correct debugging
590: PO_DEBUG.debug_exc
591: (p_log_head => g_module_prefix||'validate_shipment',
592: p_progress => l_progress);
593: END IF;
594: END validate_shipment;