RSWIW3DO is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RSWIW3DO into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: LASTDATE = Since
Selection Text: TASK = Task
Selection Text: USER = Agent
Title: IAC: Completed Dialog Steps
Text Symbol: 001 = Agent
Text Symbol: 002 = Task
Text Symbol: 003 = Date
Text Symbol: 004 = Time
Text Symbol: 005 = Description
Text Symbol: 006 = Process duration
Text Symbol: 007 = Since
INCLUDE RSWUINCL.
No SAP DATABASE tables are accessed within this REPORT code!
RH_GET_ACTIVE_WF_PLVAR call function 'RH_GET_ACTIVE_WF_PLVAR' importing act_plvar = plvar exceptions no_active_plvar = 1 others = 2.
RH_READ_OBJECT call function 'RH_READ_OBJECT' exporting plvar = plvar otype = otype objid = objid importing stext = task_text exceptions not_found = 1 others = 2.
RH_READ_OBJECT call function 'RH_READ_OBJECT' exporting plvar = plvar otype = otype realo = realo importing stext = user_text exceptions not_found = 1 others = 2.
SWI_GET_COMPLETED_WORKITEMS call function 'SWI_GET_COMPLETED_WORKITEMS' tables end_date = end_date task_tab = task_tab user_tab = user_tab worklist = i_swwwlhead exceptions read_failed = 1 others = 2.
SWI_GET_ACTUAL_ENDING_DATA call function 'SWI_GET_ACTUAL_ENDING_DATA' exporting wi_id = i_swwwlhead-wi_id * BUFFERED_ACCESS = 'X' importing wi_aed = result_tab-wi_aed wi_aet = result_tab-wi_aet exceptions read_failed = 1 others = 2.
SWI_DURATION_DETERMINE call function 'SWI_DURATION_DETERMINE' exporting start_date = i_swwwlhead-wi_cd end_date = result_tab-wi_aed start_time = i_swwwlhead-wi_ct end_time = result_tab-wi_aet importing duration = duration exceptions others = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSWIW3DO - IAC: Completed Dialog Steps RSWIW3DO - IAC: Completed Dialog Steps RSWIUSAG_NEW - Where-Used List for Tasks RSWIUSAG_NEW - Where-Used List for Tasks RSWIUNIT_NEW - List of Individual Work Items for a Task in a Time Period RSWIUNIT_NEW - List of Individual Work Items for a Task in a Time Period