DBA Data[Home] [Help]

APPS.FND_SVC_COMPONENT dependencies on WF_EVENT

Line 834: --wf_event.SetDispatchMode ('ASYNC');

830: 'p_Component_Id: '||p_Component_Id||
831: ', p_Control_Operation:'||p_Control_Operation);
832: end if;
833:
834: --wf_event.SetDispatchMode ('ASYNC');
835: l_event_paramlist := wf_parameter_list_t();
836: if p_Component_Id <> -1 then
837: wf_event.addParameterToList('COMPONENT_ID', p_Component_Id, l_event_paramlist);
838: END IF;

Line 837: wf_event.addParameterToList('COMPONENT_ID', p_Component_Id, l_event_paramlist);

833:
834: --wf_event.SetDispatchMode ('ASYNC');
835: l_event_paramlist := wf_parameter_list_t();
836: if p_Component_Id <> -1 then
837: wf_event.addParameterToList('COMPONENT_ID', p_Component_Id, l_event_paramlist);
838: END IF;
839: wf_event.addParameterToList('CONTAINER_TYPE', p_Container_Type, l_event_paramlist);
840: wf_event.addParameterToList('CONTAINER_PROCESS_ID', p_CPID, l_event_paramlist);
841: if p_Params is not null then

Line 839: wf_event.addParameterToList('CONTAINER_TYPE', p_Container_Type, l_event_paramlist);

835: l_event_paramlist := wf_parameter_list_t();
836: if p_Component_Id <> -1 then
837: wf_event.addParameterToList('COMPONENT_ID', p_Component_Id, l_event_paramlist);
838: END IF;
839: wf_event.addParameterToList('CONTAINER_TYPE', p_Container_Type, l_event_paramlist);
840: wf_event.addParameterToList('CONTAINER_PROCESS_ID', p_CPID, l_event_paramlist);
841: if p_Params is not null then
842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);
843: END IF;

Line 840: wf_event.addParameterToList('CONTAINER_PROCESS_ID', p_CPID, l_event_paramlist);

836: if p_Component_Id <> -1 then
837: wf_event.addParameterToList('COMPONENT_ID', p_Component_Id, l_event_paramlist);
838: END IF;
839: wf_event.addParameterToList('CONTAINER_TYPE', p_Container_Type, l_event_paramlist);
840: wf_event.addParameterToList('CONTAINER_PROCESS_ID', p_CPID, l_event_paramlist);
841: if p_Params is not null then
842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);
843: END IF;
844:

Line 842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);

838: END IF;
839: wf_event.addParameterToList('CONTAINER_TYPE', p_Container_Type, l_event_paramlist);
840: wf_event.addParameterToList('CONTAINER_PROCESS_ID', p_CPID, l_event_paramlist);
841: if p_Params is not null then
842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);
843: END IF;
844:
845: wf_event.raise(p_Control_Operation, pv_Connection_Name_Prefix||':'||sysdate, null, l_event_paramlist);
846: --wf_event.SetDispatchMode ('SYNC');

Line 845: wf_event.raise(p_Control_Operation, pv_Connection_Name_Prefix||':'||sysdate, null, l_event_paramlist);

841: if p_Params is not null then
842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);
843: END IF;
844:
845: wf_event.raise(p_Control_Operation, pv_Connection_Name_Prefix||':'||sysdate, null, l_event_paramlist);
846: --wf_event.SetDispatchMode ('SYNC');
847:
848: EXCEPTION
849: WHEN OTHERS THEN

Line 846: --wf_event.SetDispatchMode ('SYNC');

842: wf_event.addParameterToList('OPERATION_PARAMETERS', p_Params, l_event_paramlist);
843: END IF;
844:
845: wf_event.raise(p_Control_Operation, pv_Connection_Name_Prefix||':'||sysdate, null, l_event_paramlist);
846: --wf_event.SetDispatchMode ('SYNC');
847:
848: EXCEPTION
849: WHEN OTHERS THEN
850: WF_CORE.CONTEXT(pv_Package_Name, 'Raise_Control_Event', p_Component_Id, p_Control_Operation);