DBA Data[Home] [Help]

APPS.HZ_PARTY_BO_PVT dependencies on HZ_PARTY_INFO_PUB

Line 91: px_financial_prof_rec IN OUT NOCOPY HZ_PARTY_INFO_PUB.financial_profile_rec_type

87:
88: PROCEDURE assign_financial_prof_rec(
89: p_financial_prof_obj IN HZ_FINANCIAL_PROF_OBJ,
90: p_party_id IN NUMBER,
91: px_financial_prof_rec IN OUT NOCOPY HZ_PARTY_INFO_PUB.financial_profile_rec_type
92: );
93:
94: -- PRIVATE PROCEDURE assign_code_assign_rec
95: --

Line 218: px_financial_prof_rec IN OUT NOCOPY HZ_PARTY_INFO_PUB.financial_profile_rec_type

214:
215: PROCEDURE assign_financial_prof_rec(
216: p_financial_prof_obj IN HZ_FINANCIAL_PROF_OBJ,
217: p_party_id IN NUMBER,
218: px_financial_prof_rec IN OUT NOCOPY HZ_PARTY_INFO_PUB.financial_profile_rec_type
219: ) IS
220: BEGIN
221: px_financial_prof_rec.financial_profile_id := p_financial_prof_obj.financial_profile_id;
222: px_financial_prof_rec.access_authority_date := p_financial_prof_obj.access_authority_date;

Line 2472: l_fin_prof_rec HZ_PARTY_INFO_PUB.FINANCIAL_PROFILE_REC_TYPE;

2468: x_msg_data OUT NOCOPY VARCHAR2
2469: )IS
2470: l_debug_prefix VARCHAR2(30);
2471: l_fin_prof_id NUMBER;
2472: l_fin_prof_rec HZ_PARTY_INFO_PUB.FINANCIAL_PROFILE_REC_TYPE;
2473: BEGIN
2474: -- Standard start of API savepoint
2475: SAVEPOINT create_financial_profiles_pvt;
2476:

Line 2495: HZ_PARTY_INFO_PUB.create_financial_profile(

2491: p_party_id => p_party_id,
2492: px_financial_prof_rec => l_fin_prof_rec
2493: );
2494:
2495: HZ_PARTY_INFO_PUB.create_financial_profile(
2496: p_api_version => 1.0,
2497: p_financial_profile_rec => l_fin_prof_rec,
2498: x_return_status => x_return_status,
2499: x_msg_count => x_msg_count,

Line 2644: l_fin_prof_rec HZ_PARTY_INFO_PUB.FINANCIAL_PROFILE_REC_TYPE;

2640: x_msg_data OUT NOCOPY VARCHAR2
2641: ) IS
2642: l_debug_prefix VARCHAR2(30);
2643: l_fin_prof_id NUMBER;
2644: l_fin_prof_rec HZ_PARTY_INFO_PUB.FINANCIAL_PROFILE_REC_TYPE;
2645: l_lud DATE;
2646: BEGIN
2647: -- Standard start of API savepoint
2648: SAVEPOINT save_financial_profiles_pvt;

Line 2691: HZ_PARTY_INFO_PUB.create_financial_profile(

2687: RAISE FND_API.G_EXC_ERROR;
2688: END IF;
2689:
2690: IF(l_lud IS NULL) THEN
2691: HZ_PARTY_INFO_PUB.create_financial_profile(
2692: p_api_version => 1.0,
2693: p_financial_profile_rec => l_fin_prof_rec,
2694: x_return_status => x_return_status,
2695: x_msg_count => x_msg_count,

Line 2703: HZ_PARTY_INFO_PUB.update_financial_profile(

2699:
2700: -- assign financial_profile_id
2701: p_fin_prof_objs(i).financial_profile_id := l_fin_prof_id;
2702: ELSE
2703: HZ_PARTY_INFO_PUB.update_financial_profile(
2704: p_api_version => 1.0,
2705: p_financial_profile_rec => l_fin_prof_rec,
2706: p_last_update_date => l_lud,
2707: x_return_status => x_return_status,