2
10/15/2015 Workflow Tables for Report | SCN https://scn.sap.com/thread/1253686 1/2 Getting Started Newsletters Store Products Services & Support About SCN Downloads Industries Training & Education Partnership Developer Center Lines of Business University Alliances Events & Webinars Innovation Log On Join Us Hi, Guest Search the Community Activity Communications Actions Browse 0 Tweet 0 3 Replies Latest reply: Feb 28, 2009 3:40 AM by surjith kumar Share 0 Like 19936 Views Average User Rating (0 ratings) Workflow Tables for Report This question is Assumed Answered. Hi I need to develop a report with following information. The report should have current status. For example if 5 approvers have to approve the document then the report should show at the end all 5 approvers and the status. Approver name , Approval status (Approved / rejected) , Approval date (Workitem execution date). I looked in several tables but i dont find the approval status and approval date. Can anyone help me in finding the exact workflow table were i can find this informations. Thanks Shree Sridevi Gopal Feb 27, 2009 4:02 PM Re: Workflow Tables for Report Hi Shree: Look at this tables. swwwihead swwuserwi v_usr_name Regards, Jessica Like (0) Jessica Cejudo Feb 27, 2009 9:22 PM (in response to Sridevi Gopal) Re: Workflow Tables for Report Hello, I think you can get almost all of that out of SWWWIHEAD: 1) find all wi_id where wi_rh_task = WS..... that you're interested in 2) for each wi_id in 1) find dependent wi_id via wi_chckwi and select on wi_rh_task to find decision tasks 3) for each wi_id in 2) get wi_aagent and wi_aed (execution date) To find out what the result was of the decision, link wi_id in 2) to wi_id in SWW_CONT where ELEMENT = _RESULT (or WI RESULT) Rick Bakker Feb 27, 2009 10:19 PM (in response to Sridevi Gopal)

Workflow Tables for Report _ SCN

Embed Size (px)

DESCRIPTION

wer

Citation preview

Page 1: Workflow Tables for Report _ SCN

10/15/2015 Workflow Tables for Report | SCN

https://scn.sap.com/thread/1253686 1/2

Getting Started Newsletters Store

Products Services & Support About SCN Downloads

Industries Training & Education Partnership Developer Center

Lines of Business University Alliances Events & Webinars Innovation

Log On Join UsHi, Guest Search the Community

Activity Communications Actions

Browse

0 Tweet 0

3 Replies Latest reply: Feb 28, 2009 3:40 AM by surjith kumar

Share 0Like

19936 Views

Average User Rating

(0 ratings)

Workflow Tables for ReportThis question is Assumed Answered.

Hi I need to develop a report with following information. The report should have current status. Forexample if 5 approvers have to approve the document then the report should show at the end all 5approvers and the status. Approver name , Approval status (Approved / rejected) , Approval date (Workitem execution date). I looked in several tables but i dont find the approval status and approval date. Can anyone help mein finding the exact workflow table were i can find this informations. Thanks Shree

Sridevi Gopal Feb 27, 2009 4:02 PM

Re: Workflow Tables for Report

Hi Shree: Look at this tables. swwwihead swwuserwi v_usr_name Regards, Jessica

Like (0)

Jessica Cejudo Feb 27, 2009 9:22 PM (in response to Sridevi Gopal)

Re: Workflow Tables for Report

Hello, I think you can get almost all of that out of SWWWIHEAD:1) find all wi_id where wi_rh_task = WS..... that you're interested in2) for each wi_id in 1) find dependent wi_id via wi_chckwi and select on wi_rh_task to find decision tasks3) for each wi_id in 2) get wi_aagent and wi_aed (execution date) To find out what the result was of the decision, link wi_id in 2)to wi_id in SWW_CONT where ELEMENT = _RESULT (or WIRESULT)

Rick Bakker Feb 27, 2009 10:19 PM (in response to Sridevi Gopal)

Page 2: Workflow Tables for Report _ SCN

10/15/2015 Workflow Tables for Report | SCN

https://scn.sap.com/thread/1253686 2/2

Follow SCNSite Index Contact Us SAP Help PortalPrivacy Terms of Use Legal Disclosure Copyright

0 Tweet 0Share 0Like

Try to do as much of this as possible with SAP_WAPI functions, egSAP_WAPI_GET_HEADER, SAP_WAPI_GET_WORKITEM_DETAIL,SAP_WAPI_GET_DEPENDENT_WIS(if they're in your version) so whatever you're making won't be affectedby future name changes of tables or fields. regardsRick BakkerHanabi Technology

Like (1)

Re: Workflow Tables for Report

Hi, Refer the below link, [Workflow Tables| Workflow Table; [Workflow User Substitution Utility|https://wiki.sdn.sap.com/wiki/x/0j0] [WORKFLOW TRACKING|https://wiki.sdn.sap.com/wiki/x/OIADAw ] [Workflow Display users assigned to Rules|https://wiki.sdn.sap.com/wiki/x/GYGWAw ] Regards,Surjith

Like (0)

surjith kumar Feb 28, 2009 3:40 AM (in response to Sridevi Gopal)