DBA Data[Home] [Help]

APPS.AR_CMGT_HZ_COVER_API dependencies on HZ_CUSTOMER_PROFILE_V2PUB

Line 299: l_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.customer_profile_rec_type;

295:
296: PROCEDURE create_party_profile(p_party_id IN NUMBER,
297: p_return_status OUT NOCOPY VARCHAR2)
298: IS
299: l_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.customer_profile_rec_type;
300: l_cust_profile_id NUMBER;
301: l_return_status VARCHAR2(1);
302: l_msg_count NUMBER;
303: l_msg_data VARCHAR2(2000);

Line 353: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (

349: l_profile_rec.profile_class_id := l_profile_class_id;
350: l_profile_rec.created_by_module := 'OCM';
351: l_profile_rec.application_id := 222;
352: l_profile_rec.credit_checking := 'Y';
353: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (
354: p_init_msg_list => FND_API.G_FALSE,
355: p_customer_profile_rec => l_profile_rec,
356: p_create_profile_amt => FND_API.G_TRUE,
357: x_cust_account_profile_id => l_cust_profile_id,

Line 368: debug('Error in HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile');

364: IF l_return_status <> FND_API.G_RET_STS_SUCCESS
365: THEN
366: IF pg_wf_debug = 'Y'
367: THEN
368: debug('Error in HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile');
369: dump_api_output_data(l_return_status,
370: l_msg_count,
371: l_msg_data);
372: END IF;