DBA Data[Home] [Help]

APPS.JTF_CUSTOMER_ACCOUNTS_PVT dependencies on HZ_CUST_ACCOUNT_V2PUB

Line 28: ddp_account_rec hz_cust_account_v2pub.cust_account_rec_type;

24: ddp_person_rec hz_party_pub.person_rec_type;
25: ddp_organization_rec hz_party_pub.organization_rec_type;
26: ddp_cust_profile_rec hz_customer_accounts_pub.cust_profile_rec_type;
27: */
28: ddp_account_rec hz_cust_account_v2pub.cust_account_rec_type;
29: ddp_person_rec hz_party_v2pub.person_rec_type;
30: ddp_organization_rec hz_party_v2pub.organization_rec_type;
31: ddp_cust_profile_rec hz_customer_profile_v2pub.customer_profile_rec_type;
32: l_gen_cust_num VARCHAR2(1);

Line 64: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(

60: end if;
61:
62: if p_party_type = 'P' then
63: ddp_person_rec.party_rec.party_id := p_party_id;
64: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
65: p_init_msg_list, ddp_account_rec, ddp_person_rec,
66: ddp_cust_profile_rec, p_create_amt, x_cust_account_id,
67: x_cust_account_number, x_party_id, x_party_number,
68: x_profile_id, x_return_status, x_msg_count,

Line 76: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(

72: raise_application_error(-20101,'Failed to create person accountin jtf_cust_account:'||x_msg_data);
73: end if;
74: else
75: ddp_organization_rec.party_rec.party_id := p_party_id;
76: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
77: p_init_msg_list, ddp_account_rec, ddp_organization_rec,
78: ddp_cust_profile_rec, p_create_amt, x_cust_account_id,
79: x_cust_account_number,x_party_id,x_party_number,
80: x_profile_id, x_return_status, x_msg_count,