DBA Data[Home] [Help]

APPS.ARP_CMERGE_ARCUS dependencies on FND_PROFILE

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

3824: be generated for the copy (this has been taken care of by
3825: HZ_PARTY_PUB API). If auto-numbering is turned off, a
3826: new party number can be created by taking the existing
3827: party number and appending '-C' to the end of represent the copy.*/
3828: /*| IF fnd_profile.value('HZ_GENERATE_PARTY_NUMBER') = 'N' THEN
3829: | l_org_contact_rec.party_rel_rec.party_rec.party_number :=
3830: | l_org_contact_rec.party_rel_rec.party_rec.party_number || '-C';
3831: |ELSE
3832: | l_org_contact_rec.party_rel_rec.party_rec.party_number := NULL;

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

5498: /* Bug 1365410. Enforce 'create_party_site' API to generate
5499: party_site_number even if profile option is 'N'.
5500: */
5501:
5502: IF fnd_profile.value('HZ_GENERATE_PARTY_SITE_NUMBER') = 'N' THEN
5503: l_profile_option := 'N';
5504: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'Y');
5505: END IF;
5506:

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

5500: */
5501:
5502: IF fnd_profile.value('HZ_GENERATE_PARTY_SITE_NUMBER') = 'N' THEN
5503: l_profile_option := 'N';
5504: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'Y');
5505: END IF;
5506:
5507: ---Bug : 2098728 Changing to V2
5508: --Create new party site.

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

5517: x_msg_data => x_msg_data );
5518:
5519: --Reset profile option
5520: IF l_profile_option = 'N' THEN
5521: fnd_profile.put('HZ_GENERATE_PARTY_SITE_NUMBER', 'N');
5522: END IF;
5523:
5524: --Handle error message
5525: IF x_msg_count = 1 THEN