DBA Data[Home] [Help]

APPS.OKL_SERVICE_INTEGRATION_PVT dependencies on WF_EVENT

Line 122: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_ID, p_chr_id, l_parameter_list);

118:
119: -- wrapper API to get contract process. this API determines in which status the
120: -- contract in question is.
121: l_contract_process := okl_lla_util_pvt.get_contract_process(p_chr_id => p_chr_id);
122: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_ID, p_chr_id, l_parameter_list);
123: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_LINE_ID, p_okl_service_line_id, l_parameter_list);
124: -- pass the service contract and service contract line only if they are present.
125: -- since service can be created even without a service contract, these parameters
126: -- are null when not created from a service contract. therefore these parameters can be

Line 123: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_LINE_ID, p_okl_service_line_id, l_parameter_list);

119: -- wrapper API to get contract process. this API determines in which status the
120: -- contract in question is.
121: l_contract_process := okl_lla_util_pvt.get_contract_process(p_chr_id => p_chr_id);
122: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_ID, p_chr_id, l_parameter_list);
123: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_LINE_ID, p_okl_service_line_id, l_parameter_list);
124: -- pass the service contract and service contract line only if they are present.
125: -- since service can be created even without a service contract, these parameters
126: -- are null when not created from a service contract. therefore these parameters can be
127: -- ignored in such a case.

Line 129: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_ID, p_oks_chr_id, l_parameter_list);

125: -- since service can be created even without a service contract, these parameters
126: -- are null when not created from a service contract. therefore these parameters can be
127: -- ignored in such a case.
128: IF(p_oks_chr_id IS NOT NULL AND p_oks_service_line_id IS NOT NULL)THEN
129: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_ID, p_oks_chr_id, l_parameter_list);
130: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_LINE_ID, p_oks_service_line_id, l_parameter_list);
131: END IF;
132: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_PROCESS, l_contract_process, l_parameter_list);
133:

Line 130: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_LINE_ID, p_oks_service_line_id, l_parameter_list);

126: -- are null when not created from a service contract. therefore these parameters can be
127: -- ignored in such a case.
128: IF(p_oks_chr_id IS NOT NULL AND p_oks_service_line_id IS NOT NULL)THEN
129: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_ID, p_oks_chr_id, l_parameter_list);
130: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_LINE_ID, p_oks_service_line_id, l_parameter_list);
131: END IF;
132: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_PROCESS, l_contract_process, l_parameter_list);
133:
134: OKL_WF_PVT.raise_event(p_api_version => p_api_version,

Line 132: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_PROCESS, l_contract_process, l_parameter_list);

128: IF(p_oks_chr_id IS NOT NULL AND p_oks_service_line_id IS NOT NULL)THEN
129: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_ID, p_oks_chr_id, l_parameter_list);
130: wf_event.AddParameterToList(G_WF_ITM_S_CONTRACT_LINE_ID, p_oks_service_line_id, l_parameter_list);
131: END IF;
132: wf_event.AddParameterToList(G_WF_ITM_CONTRACT_PROCESS, l_contract_process, l_parameter_list);
133:
134: OKL_WF_PVT.raise_event(p_api_version => p_api_version,
135: p_init_msg_list => p_init_msg_list,
136: x_return_status => x_return_status,