DBA Data[Home] [Help]

APPS.ARP_CMERGE_ARCUS dependencies on FND_PROFILE

Line 3520: /*| IF fnd_profile.value('HZ_GENERATE_PARTY_NUMBER') = 'N' THEN

3516: be generated for the copy (this has been taken care of by
3517: HZ_PARTY_PUB API). If auto-numbering is turned off, a
3518: new party number can be created by taking the existing
3519: party number and appending '-C' to the end of represent the copy.*/
3520: /*| IF fnd_profile.value('HZ_GENERATE_PARTY_NUMBER') = 'N' THEN
3521: | l_org_contact_rec.party_rel_rec.party_rec.party_number :=
3522: | l_org_contact_rec.party_rel_rec.party_rec.party_number || '-C';
3523: |ELSE
3524: | l_org_contact_rec.party_rel_rec.party_rec.party_number := NULL;

Line 5188: IF fnd_profile.value('HZ_GENERATE_PARTY_SITE_NUMBER') = 'N' THEN

5184: /* Bug 1365410. Enforce 'create_party_site' API to generate
5185: party_site_number even if profile option is 'N'.
5186: */
5187:
5188: IF fnd_profile.value('HZ_GENERATE_PARTY_SITE_NUMBER') = 'N' THEN
5189: l_profile_option := 'N';
5190: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'Y');
5191: END IF;
5192:

Line 5190: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'Y');

5186: */
5187:
5188: IF fnd_profile.value('HZ_GENERATE_PARTY_SITE_NUMBER') = 'N' THEN
5189: l_profile_option := 'N';
5190: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'Y');
5191: END IF;
5192:
5193: ---Bug : 2098728 Changing to V2
5194: --Create new party site.

Line 5207: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'N');

5203: x_msg_data => x_msg_data );
5204:
5205: --Reset profile option
5206: IF l_profile_option = 'N' THEN
5207: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'N');
5208: END IF;
5209:
5210: --Handle error message
5211: IF x_msg_count = 1 THEN