DBA Data[Home] [Help]

APPS.IEX_PAYMENTS_PUB dependencies on FND_PROFILE

Line 13: G_ONLINE_CCPAY varchar2(5) := NVL(fnd_profile.value('IEX_ONLINE_CCPAY'),'N'); -- Fix a bug 5897567

9: G_LOGIN_ID NUMBER; -- := FND_GLOBAL.Conc_Login_Id;
10: G_PROGRAM_ID NUMBER; -- := FND_GLOBAL.Conc_Program_Id;
11: G_USER_ID NUMBER; -- := FND_GLOBAL.User_Id;
12: G_REQUEST_ID NUMBER; -- := FND_GLOBAL.Conc_Request_Id;
13: G_ONLINE_CCPAY varchar2(5) := NVL(fnd_profile.value('IEX_ONLINE_CCPAY'),'N'); -- Fix a bug 5897567
14:
15:
16: procedure validate_input(
17: P_PMT_REC IN IEX_PAYMENTS_PUB.PMT_REC_TYPE,

Line 483: x_payment_method := fnd_profile.value('IEX_CCARD_REMITTANCE');

479: x_payment_method_id := null;
480:
481: if p_payment_type = 'CC' then
482:
483: x_payment_method := fnd_profile.value('IEX_CCARD_REMITTANCE');
484: if x_payment_method is null then
485: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
486: iex_debug_pub.LogMessage(l_api_name || ': failed to get CC remittance');
487: END IF;

Line 496: x_payment_method := fnd_profile.value('IEX_EFT_REMITTANCE');

492: x_payment_method_id := to_number(x_payment_method);
493:
494: elsif p_payment_type = 'BA' then
495:
496: x_payment_method := fnd_profile.value('IEX_EFT_REMITTANCE');
497: if x_payment_method is null then
498: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
499: iex_debug_pub.LogMessage(l_api_name || ': failed to get BA remittance');
500: END IF;

Line 1619: l_note_type := fnd_profile.value('AST_NOTES_DEFAULT_TYPE');

1615: /* creating note */
1616: BEGIN
1617: SAVEPOINT CREATE_PAYMENT_PVT2;
1618:
1619: l_note_type := fnd_profile.value('AST_NOTES_DEFAULT_TYPE');
1620: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1621: iex_debug_pub.LogMessage(l_api_name || ': l_note_type = ' || l_note_type);
1622: END IF;
1623:

Line 1914: l_disable_ipayment := fnd_profile.value('IEX_DISABLE_IPAYMENT');

1910: iex_debug_pub.LogMessage(l_api_name || ': l_payer_id = ' || l_payer_id);
1911: iex_debug_pub.LogMessage(l_api_name || ': l_payer_name = ' || l_payer_name);
1912: END IF;
1913:
1914: l_disable_ipayment := fnd_profile.value('IEX_DISABLE_IPAYMENT');
1915: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1916: iex_debug_pub.LogMessage(l_api_name || ': l_disable_ipayment = ' || l_disable_ipayment);
1917: END IF;
1918:

Line 1931: l_ar_pay_method1 := fnd_profile.value('IEX_CCARD_REMITTANCE');

1927: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1928: iex_debug_pub.LogMessage(l_api_name || ': Instrument is CC');
1929: END IF;
1930:
1931: l_ar_pay_method1 := fnd_profile.value('IEX_CCARD_REMITTANCE');
1932: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
1933: iex_debug_pub.LogMessage(l_api_name || ': CC remittance = ' || l_ar_pay_method1);
1934: END IF;
1935: if l_ar_pay_method1 is null then

Line 2062: l_ar_pay_method1 := fnd_profile.value('IEX_EFT_REMITTANCE');

2058: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
2059: iex_debug_pub.LogMessage(l_api_name || ': Instrument is BA');
2060: END IF;
2061:
2062: l_ar_pay_method1 := fnd_profile.value('IEX_EFT_REMITTANCE');
2063: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
2064: iex_debug_pub.LogMessage(l_api_name || ': BA remittance = ' || l_ar_pay_method1);
2065: END IF;
2066: if l_ar_pay_method1 is null then

Line 2361: l_ar_pay_method := to_number(fnd_profile.value('IEX_CCARD_REMITTANCE'));

2357: l_reqresp_rec.AuthCode := 'No iPayment processing';
2358: l_reqresp_rec.response.status := null;
2359: l_tangible_rec.tangible_id := 'No iPayment processing';
2360: l_payee_rec.Payee_ID := 'No iPayment processing';
2361: l_ar_pay_method := to_number(fnd_profile.value('IEX_CCARD_REMITTANCE'));
2362: end if;
2363:
2364: X_PMTRESP_REC.INSTRUMENT_ID := l_pmtinstr_rec.PmtInstr_ID;
2365: X_PMTRESP_REC.INSTRUMENT_TYPE := P_PMTINSTR_REC.USE_INSTRUMENT;

Line 2694: l_note_type := fnd_profile.value('AST_NOTES_DEFAULT_TYPE');

2690: BEGIN
2691: -- Third part of API savepoint
2692: SAVEPOINT CREATE_OKL_PAYMENT_PVT3;
2693:
2694: l_note_type := fnd_profile.value('AST_NOTES_DEFAULT_TYPE');
2695: IF (FND_LOG.LEVEL_EVENT >= PG_DEBUG) THEN
2696: iex_debug_pub.LogMessage(l_api_name || ': l_note_type = ' || l_note_type);
2697: END IF;
2698: