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 625: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (

621:
622: p_customer_profile_rec.created_by_module := p_cust_account_rec.created_by_module;
623: p_customer_profile_rec.application_id := p_cust_account_rec.application_id;
624:
625: HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile (
626: p_customer_profile_rec => p_customer_profile_rec,
627: p_create_profile_amt => p_create_profile_amt,
628: x_cust_account_profile_id => l_cust_account_profile_id,
629: x_return_status => x_return_status,

Line 1525: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

1521: PROCEDURE create_cust_account (
1522: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1523: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
1524: p_person_rec IN HZ_PARTY_V2PUB.PERSON_REC_TYPE,
1525: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
1526: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
1527: x_cust_account_id OUT NOCOPY NUMBER,
1528: x_account_number OUT NOCOPY VARCHAR2,
1529: x_party_id OUT NOCOPY NUMBER,

Line 1539: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;

1535: ) IS
1536:
1537: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
1538: l_person_rec HZ_PARTY_V2PUB.PERSON_REC_TYPE := p_person_rec;
1539: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;
1540: l_debug_prefix VARCHAR2(30) := '';
1541: BEGIN
1542:
1543: -- Standard start of API savepoint

Line 1729: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile

1725: * Creates customer account for organization party.
1726: *
1727: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
1728: * HZ_PARTY_V2PUB.create_organization
1729: * HZ_CUSTOMER_PROFILE_V2PUB.create_customer_profile
1730: * HZ_BUSINESS_EVENT_V2PVT.create_cust_account_event
1731: *
1732: * ARGUMENTS
1733: * IN:

Line 1774: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

1770: PROCEDURE create_cust_account (
1771: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
1772: p_cust_account_rec IN CUST_ACCOUNT_REC_TYPE,
1773: p_organization_rec IN HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE,
1774: p_customer_profile_rec IN HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
1775: p_create_profile_amt IN VARCHAR2 := FND_API.G_TRUE,
1776: x_cust_account_id OUT NOCOPY NUMBER,
1777: x_account_number OUT NOCOPY VARCHAR2,
1778: x_party_id OUT NOCOPY NUMBER,

Line 1788: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;

1784: ) IS
1785:
1786: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
1787: l_organization_rec HZ_PARTY_V2PUB.ORGANIZATION_REC_TYPE := p_organization_rec;
1788: l_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE := p_customer_profile_rec;
1789: l_debug_prefix VARCHAR2(30) := '';
1790: BEGIN
1791:
1792: -- Standard start of API savepoint

Line 2015: l_old_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;

2011: ) IS
2012:
2013: l_cust_account_rec CUST_ACCOUNT_REC_TYPE := p_cust_account_rec;
2014: l_old_cust_account_rec CUST_ACCOUNT_REC_TYPE;
2015: l_old_customer_profile_rec HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE;
2016: l_debug_prefix VARCHAR2(30) := '';
2017: BEGIN
2018:
2019: -- Standard start of API savepoint

Line 2223: * HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec

2219: * Gets customer account record
2220: *
2221: * EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
2222: * HZ_CUST_ACCOUNTS_PKG.Select_Row
2223: * HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec
2224: *
2225: * ARGUMENTS
2226: * IN:
2227: * p_init_msg_list Initialize message stack if it is set to

Line 2253: x_customer_profile_rec OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,

2249: PROCEDURE get_cust_account_rec (
2250: p_init_msg_list IN VARCHAR2 := FND_API.G_FALSE,
2251: p_cust_account_id IN NUMBER,
2252: x_cust_account_rec OUT NOCOPY CUST_ACCOUNT_REC_TYPE,
2253: x_customer_profile_rec OUT NOCOPY HZ_CUSTOMER_PROFILE_V2PUB.CUSTOMER_PROFILE_REC_TYPE,
2254: x_return_status OUT NOCOPY VARCHAR2,
2255: x_msg_count OUT NOCOPY NUMBER,
2256: x_msg_data OUT NOCOPY VARCHAR2
2257: ) IS

Line 2419: HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec (

2415: FROM HZ_CUSTOMER_PROFILES
2416: WHERE CUST_ACCOUNT_ID = p_cust_account_id
2417: AND SITE_USE_ID IS NULL;
2418:
2419: HZ_CUSTOMER_PROFILE_V2PUB.get_customer_profile_rec (
2420: p_cust_account_profile_id => l_cust_account_profile_id,
2421: x_customer_profile_rec => x_customer_profile_rec,
2422: x_return_status => x_return_status,
2423: x_msg_count => x_msg_count,