DBA Data[Home] [Help]

APPS.IBE_PARTY_V2PVT dependencies on HZ_CUST_ACCOUNT_V2PUB

Line 2028: | - HZ_CUST_ACCOUNT_V2PUB.Create_Cust_Account

2024: |
2025: |
2026: | REFERENCED APIS
2027: | This API calls the following APIs
2028: | - HZ_CUST_ACCOUNT_V2PUB.Create_Cust_Account
2029: +======================================================================*/
2030: Procedure Create_Account(
2031: p_party_id IN NUMBER, -- person_party_id or org_party_id
2032: p_party_type IN VARCHAR2,

Line 2039: ddp_account_rec hz_cust_account_v2pub.cust_account_rec_type;

2035: x_return_status OUT NOCOPY VARCHAR2,
2036: x_msg_count OUT NOCOPY NUMBER,
2037: x_msg_data OUT NOCOPY VARCHAR2) is
2038:
2039: ddp_account_rec hz_cust_account_v2pub.cust_account_rec_type;
2040: ddp_person_rec hz_party_v2pub.person_rec_type;
2041: ddp_organization_rec hz_party_v2pub.organization_rec_type;
2042: ddp_cust_profile_rec hz_customer_profile_v2pub.customer_profile_rec_type;
2043:

Line 2105: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Person Account');

2101:
2102: if p_party_type = 'P' then
2103: ddp_person_rec.party_rec.party_id := p_party_id;
2104: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2105: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Person Account');
2106: END IF;
2107: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
2108: p_cust_account_rec =>ddp_account_rec,
2109: p_person_rec =>ddp_person_rec,

Line 2107: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(

2103: ddp_person_rec.party_rec.party_id := p_party_id;
2104: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2105: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Person Account');
2106: END IF;
2107: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
2108: p_cust_account_rec =>ddp_account_rec,
2109: p_person_rec =>ddp_person_rec,
2110: p_customer_profile_rec=>ddp_cust_profile_rec,
2111: p_create_profile_amt => FND_API.G_FALSE,

Line 2124: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Organization Account');

2120:
2121: elsif p_party_type = 'O' then
2122: ddp_organization_rec.party_rec.party_id := p_party_id;
2123: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2124: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Organization Account');
2125: END IF;
2126: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
2127: p_cust_account_rec =>ddp_account_rec,
2128: p_organization_rec =>ddp_organization_rec,

Line 2126: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(

2122: ddp_organization_rec.party_rec.party_id := p_party_id;
2123: IF (IBE_UTIL.G_DEBUGON = l_true) THEN
2124: IBE_UTIL.debug('Call HZ_CUST_ACCOUNT_V2PUB.create_cust_account() API to create Organization Account');
2125: END IF;
2126: HZ_CUST_ACCOUNT_V2PUB.create_cust_account(
2127: p_cust_account_rec =>ddp_account_rec,
2128: p_organization_rec =>ddp_organization_rec,
2129: p_customer_profile_rec=>ddp_cust_profile_rec,
2130: p_create_profile_amt => FND_API.G_FALSE,

Line 2222: | - Hz_cust_account_v2pub.update_cust_account

2218: | This API calls the following APIs to update the TCA Entity Status
2219: | - Hz_party_v2pub.update_person
2220: | - Hz_party_contact_v2pub.update_org_contact
2221: | - Hz_party_v2pub.update_organization
2222: | - Hz_cust_account_v2pub.update_cust_account
2223: | - Hz_cust_account_role_v2pub.update_cust_account_role
2224: | - Hz_contact_point_v2pub.update_contact_point
2225: | - Hz_party_site_v2pub.update_party_site
2226: | - HZ_.update_contact_preferences

Line 2241: l_account_rec hz_cust_account_v2pub.cust_account_rec_type;

2237: --TCA Records for updation
2238: l_person_rec hz_party_v2pub.person_rec_type;
2239: l_org_rec hz_party_v2pub.organization_rec_type;
2240: l_org_contact_rec hz_party_contact_v2pub.org_contact_rec_type;
2241: l_account_rec hz_cust_account_v2pub.cust_account_rec_type;
2242: l_contact_point_rec hz_contact_point_v2pub.contact_point_rec_type;
2243: l_party_site_rec hz_party_site_v2pub.party_site_rec_type;
2244: l_custacct_role_rec hz_cust_account_role_v2pub.cust_account_role_rec_type;
2245: l_cntct_pref_rec hz_contact_preference_v2pub.contact_preference_rec_type;

Line 2411: hz_cust_account_v2pub.update_cust_account

2407: IBE_UTIL.debug('Update Account Id'||rec_party_info.cust_account_id);
2408: END IF;
2409: l_account_rec.cust_account_id := rec_party_info.cust_account_id;
2410: l_account_rec.status := p_party_status;
2411: hz_cust_account_v2pub.update_cust_account
2412: (p_cust_account_rec => l_account_rec,
2413: p_object_version_number => rec_party_info.acct_object_version_number,
2414: x_return_status => x_return_status,
2415: x_msg_count => x_msg_count,