DBA Data[Home] [Help]

APPS.RCV_SHIPMENT_OBJECT_SV dependencies on FND_PROFILE

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

1: PACKAGE BODY rcv_shipment_object_sv AS
2: /* $Header: RCVCHTIB.pls 120.1 2005/06/29 00:52:00 pjiang noship $ */
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(fnd_profile.VALUE('RCV_DEBUG_MODE'), 'N');
6:
7: /*===========================================================================
8:
9: PROCEDURE NAME: create_object()

Line 62: fnd_profile.get('RCV_FAIL_IF_LINE_FAILS', x_fail_if_one_line_fails);

58: IF (g_asn_debug = 'Y') THEN
59: asn_debug.put_line('Enter shipment object create');
60: END IF;
61:
62: fnd_profile.get('RCV_FAIL_IF_LINE_FAILS', x_fail_if_one_line_fails);
63:
64: IF (g_asn_debug = 'Y') THEN
65: asn_debug.put_line('RCV_FAIL_IF_LINE_FAILS profile option =' || x_fail_if_one_line_fails);
66: END IF;