DBA Data[Home] [Help]

APPS.OKL_RGRP_RULES_PROCESS_PVT dependencies on OKL_LLA_UTIL_PVT

Line 70: l_contract_process := okl_lla_util_pvt.get_contract_process(

66: x_return_status := OKL_API.G_RET_STS_SUCCESS;
67:
68: -- wrapper API to get contract process. this API determines in which status the
69: -- contract in question is.
70: l_contract_process := okl_lla_util_pvt.get_contract_process(
71: p_chr_id => wf_event.GetValueForParameter(G_WF_ITM_CONTRACT_ID, l_event_param_list)
72: );
73: -- add the contract status to the event parameter list
74: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_PROCESS, l_contract_process, l_event_param_list);

Line 1386: OKL_LLA_UTIL_PVT.check_line_update_allowed

1382: FETCH get_line_style INTO l_line_style;
1383: CLOSE get_line_style;
1384:
1385: IF(l_line_style IS NOT NULL AND l_line_style = 'FEE') THEN
1386: OKL_LLA_UTIL_PVT.check_line_update_allowed
1387: (p_api_version => p_api_version,
1388: p_init_msg_list => p_init_msg_list,
1389: x_return_status => x_return_status,
1390: x_msg_count => x_msg_count,

Line 1635: OKL_LLA_UTIL_PVT.is_lease_contract(p_chr_id)= OKL_API.G_TRUE)THEN

1631: END IF;
1632:
1633: -- check if the business event needs to be raised
1634: IF(l_raise_business_event = OKL_API.G_TRUE AND l_business_event_name IS NOT NULL AND
1635: OKL_LLA_UTIL_PVT.is_lease_contract(p_chr_id)= OKL_API.G_TRUE)THEN
1636: -- since contract id is called as 'CONTRACT_ID' for all the above events, it is being
1637: -- added to the parameter list here, than duplicating it in all the above if conditions
1638:
1639: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_ID, p_chr_id, l_parameter_list);