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 1371: OKL_LLA_UTIL_PVT.check_line_update_allowed

1367: FETCH get_line_style INTO l_line_style;
1368: CLOSE get_line_style;
1369:
1370: IF(l_line_style IS NOT NULL AND l_line_style = 'FEE') THEN
1371: OKL_LLA_UTIL_PVT.check_line_update_allowed
1372: (p_api_version => p_api_version,
1373: p_init_msg_list => p_init_msg_list,
1374: x_return_status => x_return_status,
1375: x_msg_count => x_msg_count,

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

1584: END IF;
1585:
1586: -- check if the business event needs to be raised
1587: IF(l_raise_business_event = OKL_API.G_TRUE AND l_business_event_name IS NOT NULL AND
1588: OKL_LLA_UTIL_PVT.is_lease_contract(p_chr_id)= OKL_API.G_TRUE)THEN
1589: -- since contract id is called as 'CONTRACT_ID' for all the above events, it is being
1590: -- added to the parameter list here, than duplicating it in all the above if conditions
1591:
1592: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_ID, p_chr_id, l_parameter_list);