DBA Data[Home] [Help]

APPS.CSF_RESOURCE_ADDRESS_PVT dependencies on HZ_PARTY_V2PUB

Line 706: l_person_rec hz_party_v2pub.person_rec_type;

702: l_api_name CONSTANT VARCHAR2(50) := 'CREATE_RESOURCE_PARTY_LINK';
703: l_debug CONSTANT BOOLEAN := g_debug = 'Y';
704:
705: l_location_rec hz_location_v2pub.location_rec_type;
706: l_person_rec hz_party_v2pub.person_rec_type;
707: l_party_site_rec hz_party_site_v2pub.party_site_rec_type;
708:
709: l_profile_id NUMBER;
710: l_party_number VARCHAR2(30);

Line 808: hz_party_v2pub.create_person(

804: debug(' --> First Name = ' || l_person_rec.person_first_name, l_api_name, fnd_log.level_statement);
805: debug(' --> Last Name = ' || l_person_rec.person_last_name, l_api_name, fnd_log.level_statement);
806: END IF;
807:
808: hz_party_v2pub.create_person(
809: p_init_msg_list => fnd_api.g_false
810: , p_person_rec => l_person_rec
811: , x_return_status => x_return_status
812: , x_msg_count => x_msg_count

Line 822: debug('HZ_PARTY_V2PUB.CREATE returned error: Error = ' || fnd_msg_pub.get(fnd_msg_pub.g_last), l_api_name, fnd_log.level_error);

818:
819: IF x_return_status <> fnd_api.g_ret_sts_success THEN
820: IF l_debug THEN
821: fnd_msg_pub.count_and_get(fnd_api.g_false, x_msg_count, x_msg_data);
822: debug('HZ_PARTY_V2PUB.CREATE returned error: Error = ' || fnd_msg_pub.get(fnd_msg_pub.g_last), l_api_name, fnd_log.level_error);
823: END IF;
824: IF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
825: RAISE fnd_api.g_exc_unexpected_error;
826: END IF;

Line 830: debug('HZ_PARTY_V2PUB.CREATE_P was successful: Party ID = ' || p_address.party_id, l_api_name, fnd_log.level_statement);

826: END IF;
827: RAISE fnd_api.g_exc_error;
828: ELSE
829: IF l_debug THEN
830: debug('HZ_PARTY_V2PUB.CREATE_P was successful: Party ID = ' || p_address.party_id, l_api_name, fnd_log.level_statement);
831: END IF;
832: END IF;
833: ELSE
834: IF l_debug THEN