Question:
Guys,
Maybe someone here can help.
I've been trying to develop a program which lists user-exits, BADIs, business transaction events, etc (see here).
I would like to include Workflow calls too.
Does anyone know how to find these call in the ABAP code?
Thanks in advance
_________________
Sponsored partner: www.arch.co.uk
PM/CS FAQ
Search SAPFans
Answer:
Hi,
Perhaps you could look for Workflow Object Types?
Also (I didn't look at your code) you could search for the new Enhancement Framework Objects.
_________________
Kind Regards,
Ron Johns
Answer:
Hi,
Mostly workflows are triggered by event, but can also be started directly,
look in the code for funciton modules SWW_WI_CREATE_VIA_EVENT, sww_wi_start, sww_wi_start_simple, SAP_WAPI_CREATE_EVENT, SAP_WAPI_START_WORKFLOW .
and find the tables behind the transaction which handles the creation of events: these are change docs - SWEC, changes to HR master, SWEHR3, message control, NACE, status management BSVW
then you need the linkage from event to workflow and check if that's active - SWETYPV.
Kind regards, Rob Dielemans