cancel
Showing results for 
Search instead for 
Did you mean: 

All of sudden workflow triggering, approver's inbox has tons of item!!

former_member194142
Participant
0 Kudos

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

ChrisSolomon
Active Contributor
0 Kudos

With a name like "SAP SAP SAP", you are sure to get LOTS of help! GL!

Sandra_Rossi
Active Contributor
0 Kudos

If the workflow doesn't contain any custom code, check if there are some SAP notes, then contact SAP support.

Accepted Solutions (0)

Answers (1)

Answers (1)

k_sood
Active Participant

Did you Look in SWEL , Which Event is Triggering Which Workflow ? And Try to look for the source of that event trigger.

Br,

Ketan

former_member194142
Participant
0 Kudos

Thank you for your reply, pl. help me how to look for the source of that event trigger? I mean, is there any t-code?

@Rossi, thank you for your reply but these days we didn't moved any custom code to production and I don't think we applied any SAP NOTEs

k_sood
Active Participant
0 Kudos

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