DBA Data[Home] [Help]

APPS.PV_PARTNER_UTIL_PVT dependencies on HZ_PARTY_CONTACT_V2PUB

Line 1906: l_org_contact_rec HZ_PARTY_CONTACT_V2PUB.org_contact_rec_type ;

1902: l_cnt_per_profile_id NUMBER;
1903:
1904:
1905: -- Details of local variables used in Create_Org_Contact API call.
1906: l_org_contact_rec HZ_PARTY_CONTACT_V2PUB.org_contact_rec_type ;
1907: l_org_contact_id NUMBER;
1908: l_contact_rel_id NUMBER;
1909: l_contact_rel_party_id NUMBER;
1910: l_person_party_number NUMBER;

Line 2093: HZ_PARTY_CONTACT_V2PUB.create_org_contact (

2089: l_org_contact_rec.party_rel_rec.status:= 'A';
2090:
2091: -- Call the Create_Org_Contact API to create a contact person relationship record
2092: -- with the Partner organization in HZ_RELATIONSHIPS table.
2093: HZ_PARTY_CONTACT_V2PUB.create_org_contact (
2094: p_init_msg_list => FND_API.G_FALSE,
2095: p_org_contact_rec => l_org_contact_rec,
2096: x_org_contact_id => l_org_contact_id,
2097: x_party_rel_id => l_contact_rel_id,

Line 2110: FND_MESSAGE.SET_TOKEN('API_NAME', 'HZ_PARTY_CONTACT_V2PUB.create_org_contact');

2106: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
2107: RAISE FND_API.G_EXC_ERROR;
2108: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
2109: FND_MESSAGE.SET_NAME('PV', 'PV_API_FAILED');
2110: FND_MESSAGE.SET_TOKEN('API_NAME', 'HZ_PARTY_CONTACT_V2PUB.create_org_contact');
2111: FND_MSG_PUB.Add;
2112: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2113: END IF;
2114: END IF;