DBA Data[Home] [Help]

APPS.PO_INVOICES_SV2 dependencies on FND_PROFILE

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

1: PACKAGE BODY po_invoices_sv2 AS
2: /* $Header: POXIVRPB.pls 120.26.12010000.8 2009/01/22 13:28:40 sadibhat 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: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('RCV_DEBUG_MODE'),'N'); --Bug 5197828
7:
8: create_invoice_error EXCEPTION; --SBI
9:

Line 6: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('RCV_DEBUG_MODE'),'N'); --Bug 5197828

2: /* $Header: POXIVRPB.pls 120.26.12010000.8 2009/01/22 13:28:40 sadibhat 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: g_asn_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('RCV_DEBUG_MODE'),'N'); --Bug 5197828
7:
8: create_invoice_error EXCEPTION; --SBI
9:
10:

Line 560: FND_PROFILE.GET('AGING_PERIOD', X_profile);

556:
557: IF (x_aging_period IS NULL) THEN
558:
559: /* Get Aging period */
560: FND_PROFILE.GET('AGING_PERIOD', X_profile);
561: l_aging_period := floor(to_number(X_profile));
562:
563: IF l_aging_period < 0 THEN
564: l_aging_period := 0;

Line 1423: FND_PROFILE.GET('USER_ID', l_user_id);

1419: ** Then we need to run the AP import program
1420: */
1421:
1422: IF (x_group_id is NOT NULL) THEN
1423: FND_PROFILE.GET('USER_ID', l_user_id);
1424:
1425: /*Bug# 1539257 Building the batch name which was earlier NA */
1426: fnd_message.set_name('PO', 'PO_INV_CR_ERS_BATCH_DESC');
1427: X_batch_name := fnd_message.get;

Line 1767: fnd_profile.get ('ERS_PREFIX', x_prefix);

1763: ELSE
1764: /* */
1765:
1766: -- Use Profile option to determine prefix
1767: fnd_profile.get ('ERS_PREFIX', x_prefix);
1768: x_progress := '030';
1769:
1770: IF (x_pay_on_receipt_summary_code = 'PAY_SITE') THEN
1771: x_progress := '040';

Line 2669: NVL(FLOOR(TO_NUMBER(FND_PROFILE.VALUE('AGING_PERIOD'))), 0);

2665: ASN_DEBUG.put_line('Getting aging period from profile');
2666: END IF;
2667:
2668: l_aging_period :=
2669: NVL(FLOOR(TO_NUMBER(FND_PROFILE.VALUE('AGING_PERIOD'))), 0);
2670:
2671: IF (g_asn_debug = 'Y') THEN
2672: ASN_DEBUG.put_line('After getting aging period from profile,
2673: aging period = ' || l_aging_period);