DBA Data[Home] [Help]

APPS.PO_TERMS_SV dependencies on ASN_DEBUG

Line 5: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_RVCTP_ENABLE_TRACE'),'N');

1: PACKAGE BODY PO_TERMS_SV AS
2: /* $Header: POXPOTEB.pls 115.7 2003/12/03 20:17:17 bao ship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('PO_RVCTP_ENABLE_TRACE'),'N');
6:
7:
8: -- bug3225062
9:

Line 319: IF (g_asn_debug = 'Y') THEN

315: END IF;
316:
317: p_pay_record.error_record.error_status := 'U';
318: p_pay_record.error_record.error_message := sqlerrm;
319: IF (g_asn_debug = 'Y') THEN
320: asn_debug.put_line(p_pay_record.error_record.error_message);
321: END IF;
322:
323: END derive_payment_terms_info;

Line 320: asn_debug.put_line(p_pay_record.error_record.error_message);

316:
317: p_pay_record.error_record.error_status := 'U';
318: p_pay_record.error_record.error_message := sqlerrm;
319: IF (g_asn_debug = 'Y') THEN
320: asn_debug.put_line(p_pay_record.error_record.error_message);
321: END IF;
322:
323: END derive_payment_terms_info;
324:

Line 412: IF (g_asn_debug = 'Y') THEN

408: IF NOT (X_sysdate between nvl(X_start_date_active, X_sysdate -1) and
409: nvl(X_end_date_active, X_sysdate + 1) and
410: nvl(X_enabled_flag,'Y') = 'Y') THEN
411:
412: IF (g_asn_debug = 'Y') THEN
413: asn_debug.put_line('Disabled');
414: END IF;
415: p_pay_record.error_record.error_status := 'E';
416: p_pay_record.error_record.error_message := 'RCV_PAY_TERMS_DISABLED';

Line 413: asn_debug.put_line('Disabled');

409: nvl(X_end_date_active, X_sysdate + 1) and
410: nvl(X_enabled_flag,'Y') = 'Y') THEN
411:
412: IF (g_asn_debug = 'Y') THEN
413: asn_debug.put_line('Disabled');
414: END IF;
415: p_pay_record.error_record.error_status := 'E';
416: p_pay_record.error_record.error_message := 'RCV_PAY_TERMS_DISABLED';
417:

Line 465: IF (g_asn_debug = 'Y') THEN

461: END IF;
462:
463: p_pay_record.error_record.error_status := 'U';
464: p_pay_record.error_record.error_message := sqlerrm;
465: IF (g_asn_debug = 'Y') THEN
466: asn_debug.put_line(p_pay_record.error_record.error_message);
467: END IF;
468:
469: END validate_payment_terms_info;

Line 466: asn_debug.put_line(p_pay_record.error_record.error_message);

462:
463: p_pay_record.error_record.error_status := 'U';
464: p_pay_record.error_record.error_message := sqlerrm;
465: IF (g_asn_debug = 'Y') THEN
466: asn_debug.put_line(p_pay_record.error_record.error_message);
467: END IF;
468:
469: END validate_payment_terms_info;
470: