DBA Data[Home] [Help]

APPS.ARP_EXT_BANK_PKG dependencies on FND_PROFILE

Line 16: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');

12: l_account_exists number := 0;
13: l_rowid varchar2(18);
14: l_inactive_date date;
15: CRLF VARCHAR2(10):= arp_global.CRLF;
16: PG_DEBUG varchar2(1) := NVL(FND_PROFILE.value('AFLOG_ENABLED'), 'N');
17:
18: PROCEDURE strip_white_spaces(
19: p_credit_card_num IN iby_ext_bank_accounts_v.bank_account_number%TYPE,
20: p_stripped_cc_num OUT NOCOPY iby_ext_bank_accounts_v.bank_account_number%TYPE

Line 176: fnd_profile.get(

172: BEGIN
173:
174: arp_standard.debug('arp_ext_bank_pkg.insert_ext_bank_branch(+)');
175:
176: fnd_profile.get(
177: name => 'HZ_GENERATE_PARTY_NUMBER',
178: val => l_profile_value);
179:
180: -- if profile value is 'N' then put 'Y' for this piece of code.

Line 185: fnd_profile.put(

181: -- once this processing is done put it back to 'N'. please note
182: -- l_profile_valu will continue to have the original value.
183:
184: IF (l_profile_value = 'N') THEN
185: fnd_profile.put(
186: name => 'HZ_GENERATE_PARTY_NUMBER',
187: val => 'Y');
188: END IF;
189:

Line 276: fnd_profile.put(

272: END IF;
273:
274: -- put the profile value back to the original value if changed
275: IF (l_profile_value = 'N') THEN
276: fnd_profile.put(
277: name => 'HZ_GENERATE_PARTY_NUMBER',
278: val => 'N');
279: END IF;
280: