DBA Data[Home] [Help]

APPS.HZ_CUST_ACCOUNT_V2PUB dependencies on HZ_CUSTOMER_PROFILE_V2PUB

Line 26: p_customer_profile_rec IN OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

22: p_entity_type IN VARCHAR2,
23: p_cust_account_rec IN OUT NOCOPY CUST_ACCOUNT_REC_TYPE,
24: p_person_rec IN OUT NOCOPY HZ_PARTY_V2PUB.PERSON_REC_TYPE,
25: p_organization_rec IN OUT NOCOPY HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
26: p_customer_profile_rec IN OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
27: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
28: x_cust_account_id OUT NOCOPY NUMBER,
29: x_account_number OUT NOCOPY VARCHAR2,
30: x_party_id OUT NOCOPY NUMBER,

Line 141: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile

137: * HZ_ACCOUNT_VALIDATE_V2PUB.validate_cust_account
138: * HZ_CUST_ACCOUNTS_PKG.Insert_Row
139: * HZ_PARTY_V2PUB.create_person
140: * HZ_PARTY_V2PUB.create_organization
141: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile
142: *
143: * ARGUMENTS
144: * IN:
145: * p_entity_type Either 'PERSON' or 'ORGANIZATION'.

Line 193: p_customer_profile_rec IN OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

189: p_entity_type IN VARCHAR2,
190: p_cust_account_rec IN OUT NOCOPY CUST_ACCOUNT_REC_TYPE,
191: p_person_rec IN OUT NOCOPY HZ_PARTY_V2PUB.PERSON_REC_TYPE,
192: p_organization_rec IN OUT NOCOPY HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
193: p_customer_profile_rec IN OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
194: p_create_profile_amt IN VARCHAR2,
195: x_cust_account_id OUT NOCOPY NUMBER,
196: x_account_number OUT NOCOPY VARCHAR2,
197: x_party_id OUT NOCOPY NUMBER,

Line 638: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (

634:
635: p_customer_profile_rec.created_by_module := p_cust_account_rec.created_by_module;
636: p_customer_profile_rec.application_id := p_cust_account_rec.application_id;
637:
638: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (
639: p_customer_profile_rec => p_customer_profile_rec,
640: p_create_profile_amt => p_create_profile_amt,
641: x_cust_account_profile_id => l_cust_account_profile_id,
642: x_return_status => x_return_status,

Line 1542: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

1538: PROCEDURE create_cust_account (
1539: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1540: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
1541: p_person_rec IN HZ_PARTY_V2PUB.PERSON_REC_TYPE,
1542: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
1543: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
1544: x_cust_account_id OUT NOCOPY NUMBER,
1545: x_account_number OUT NOCOPY VARCHAR2,
1546: x_party_id OUT NOCOPY NUMBER,

Line 1556: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;

1552: ) IS
1553:
1554: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
1555: l_person_rec HZ_PARTY_V2PUB.PERSON_REC_TYPE := p_person_rec;
1556: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;
1557: l_debug_prefix VARCHAR2(30) := '';
1558: BEGIN
1559:
1560: -- Standard start of API savepoint

Line 1746: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile

1742: * Creates customer account for organization party.
1743: *
1744: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
1745: * HZ_PARTY_V2PUB.create_organization
1746: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile
1747: * HZ_BUSINESS_EVENT_V2PVT.create_cust_account_event
1748: *
1749: * ARGUMENTS
1750: * IN:

Line 1791: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

1787: PROCEDURE create_cust_account (
1788: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1789: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
1790: p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
1791: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
1792: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
1793: x_cust_account_id OUT NOCOPY NUMBER,
1794: x_account_number OUT NOCOPY VARCHAR2,
1795: x_party_id OUT NOCOPY NUMBER,

Line 1805: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;

1801: ) IS
1802:
1803: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
1804: l_organization_rec HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE := p_organization_rec;
1805: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;
1806: l_debug_prefix VARCHAR2(30) := '';
1807: BEGIN
1808:
1809: -- Standard start of API savepoint

Line 2032: l_old_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;

2028: ) IS
2029:
2030: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
2031: l_old_cust_account_rec CUST_ACCOUNT_REC_TYPE;
2032: l_old_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;
2033: l_debug_prefix VARCHAR2(30) := '';
2034: BEGIN
2035:
2036: -- Standard start of API savepoint

Line 2250: * HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec

2246: * Gets customer account record
2247: *
2248: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
2249: * HZ_CUST_ACCOUNTS_PKG.Select_Row
2250: * HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec
2251: *
2252: * ARGUMENTS
2253: * IN:
2254: * p_init_msg_list Initialize message stack if it is set to

Line 2280: x_customer_profile_rec OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

2276: PROCEDURE get_cust_account_rec (
2277: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2278: p_cust_account_id IN NUMBER,
2279: x_cust_account_rec OUT NOCOPY CUST_ACCOUNT_REC_TYPE,
2280: x_customer_profile_rec OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
2281: x_return_status OUT NOCOPY VARCHAR2,
2282: x_msg_count OUT NOCOPY NUMBER,
2283: x_msg_data OUT NOCOPY VARCHAR2
2284: ) IS

Line 2452: HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec (

2448: FROM HZ_CUSTOMER_PROFILES
2449: WHERE CUST_ACCOUNT_ID = p_cust_account_id
2450: AND SITE_USE_ID IS NULL;
2451:
2452: HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec (
2453: p_cust_account_profile_id => l_cust_account_profile_id,
2454: x_customer_profile_rec => x_customer_profile_rec,
2455: x_return_status => x_return_status,
2456: x_msg_count => x_msg_count,