on 2020 Apr 21 4:56 PM
Hello,
All of sudden the workflow is triggering when the user is changing the DELIVERY DATE of a ITEM on PM Work Order. It was not there but all of sudden started and WF approvers are getting tons of workflow items in their WF inbox!
Pl. help me why all of sudden the workflow is triggering on item's delivery date change of a PM WO?
Thank you
Did you Look in SWEL , Which Event is Triggering Which Workflow ? And Try to look for the source of that event trigger.
Br,
Ketan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you been able to find the workflow and the event which is triggering that WF using SWEL ? Is it a BOR Object or a class Event ?
Raising of the event is like this. so may be in the where used list of the following classes, you find something useful .
DATA: l_event TYPE REF TO if_swf_evt_event,
l_event_container TYPE REF TO if_swf_ifs_parameter_container.
CALL METHOD cl_swf_evt_event=>get_instance
EXPORTING
im_objcateg = cl_swf_evt_event=>mc_objcateg_cl " check other attributes of this class
im_objtype = 'class or bor object name'
im_event = 'Event name'
im_objkey = item_id
* IM_EVENT_CONTAINER =
RECEIVING
re_event = l_event.
l_event->raise( ).
Br,
Ketan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.