DBA Data[Home] [Help]

APPS.PO_CURRENCY_SV dependencies on PO_DEBUG

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

1: PACKAGE BODY po_currency_sv AS
2: /* $Header: POXDOCUB.pls 120.1 2010/12/31 11:41:02 dashah ship $*/
3:
4: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
5: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
6:
7: /*===========================================================================
8:

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

1: PACKAGE BODY po_currency_sv AS
2: /* $Header: POXDOCUB.pls 120.1 2010/12/31 11:41:02 dashah ship $*/
3:
4: g_debug_stmt CONSTANT BOOLEAN := PO_DEBUG.is_debug_stmt_on;
5: g_debug_unexp CONSTANT BOOLEAN := PO_DEBUG.is_debug_unexp_on;
6:
7: /*===========================================================================
8:
9: FUNCTION NAME : val_currency()

Line 580: PO_DEBUG.debug_stmt (

576: l_progress := '030';
577:
578: IF (l_return_status = FND_API.G_RET_STS_ERROR) THEN
579: IF (g_debug_stmt) THEN
580: PO_DEBUG.debug_stmt (
581: p_log_head => g_pkg_name||'.'||l_api_name,
582: p_token => l_progress,
583: p_message => 'Currency conversion error: '
584: ||l_from_ou_currency||','||l_to_ou_currency||': '||

Line 590: PO_DEBUG.debug_unexp (

586: END IF;
587: RETURN null;
588: ELSIF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
589: IF (g_debug_unexp) THEN
590: PO_DEBUG.debug_unexp (
591: p_log_head => g_pkg_name||'.'||l_api_name,
592: p_progress => l_progress );
593: END IF;
594: RETURN null;

Line 601: PO_DEBUG.handle_unexp_error (

597: RETURN l_rate;
598:
599: EXCEPTION
600: WHEN OTHERS THEN
601: PO_DEBUG.handle_unexp_error (
602: p_pkg_name => g_pkg_name,
603: p_proc_name => l_api_name,
604: p_progress => l_progress );
605: