DBA Data[Home] [Help]

APPS.PV_PARTNER_ACCNT_MGMT_PVT dependencies on HZ_CUST_ACCOUNT_ROLE_V2PUB

Line 696: p_cust_acct_roles_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.cust_account_role_rec_type;

692: IS
693: l_api_version CONSTANT NUMBER := 1.0;
694: l_api_name CONSTANT VARCHAR2(45) := 'Create_Contact_Role';
695:
696: p_cust_acct_roles_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.cust_account_role_rec_type;
697: p_role_resp_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.role_responsibility_rec_type;
698: l_responsibility_id NUMBER;
699:
700: CURSOR C_Get_Resp(role_id NUMBER, resp_type VARCHAR2) IS

Line 697: p_role_resp_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.role_responsibility_rec_type;

693: l_api_version CONSTANT NUMBER := 1.0;
694: l_api_name CONSTANT VARCHAR2(45) := 'Create_Contact_Role';
695:
696: p_cust_acct_roles_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.cust_account_role_rec_type;
697: p_role_resp_rec HZ_CUST_ACCOUNT_ROLE_V2PUB.role_responsibility_rec_type;
698: l_responsibility_id NUMBER;
699:
700: CURSOR C_Get_Resp(role_id NUMBER, resp_type VARCHAR2) IS
701: SELECT responsibility_id

Line 745: HZ_CUST_ACCOUNT_ROLE_V2PUB.create_cust_account_role (

741: IF (PV_DEBUG_HIGH_ON) THEN
742: PVX_UTILITY_PVT.debug_message('before create cust acct roles');
743: END IF;
744:
745: HZ_CUST_ACCOUNT_ROLE_V2PUB.create_cust_account_role (
746: p_init_msg_list => FND_API.G_FALSE,
747: p_cust_account_role_rec => p_cust_acct_roles_rec,
748: x_cust_account_role_id => x_cust_account_role_id,
749: x_return_status => x_return_status,

Line 776: HZ_CUST_ACCOUNT_ROLE_V2PUB.create_role_responsibility (

772: p_cust_account_site_id <> FND_API.G_MISS_NUM THEN
773: p_role_resp_rec.cust_account_role_id := x_cust_account_role_id;
774: p_role_resp_rec.responsibility_type := p_responsibility_type;
775:
776: HZ_CUST_ACCOUNT_ROLE_V2PUB.create_role_responsibility (
777: p_init_msg_list => FND_API.G_FALSE,
778: p_role_responsibility_rec => p_role_resp_rec,
779: x_responsibility_id => l_responsibility_id,
780: x_return_status => x_return_status,