REE_DATEX_TASKS_REEXECUTE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use this function to resend data exchange tasks with the status
If you would like to execute this report or see the full code listing simply enter REE_DATEX_TASKS_REEXECUTE 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: SEL_DDUE = Due Period
Selection Text: SEL_DREF = Reference Period
Selection Text: P_DXPROC = D .
Selection Text: P_TEST = D .
Selection Text: SE_DXSPR = D .
Title: Resend Data Exchange Tasks
Text Symbol: F01 = Main Criteria
Text Symbol: F02 = Additional Criteria
Text Symbol: F03 = Technical Options
INCLUDE IE00DATE.
INCLUDE EEDMMSG01.
INCLUDE EMSG.
No SAP DATABASE tables are accessed within this REPORT code!
MSG_ACTION CALL FUNCTION 'MSG_ACTION' EXPORTING x_msg_handle = x_msg_handle x_action = co_msg_dspl.
MSG_ACTION CALL FUNCTION 'MSG_ACTION' EXPORTING x_msg_handle = x_msg_handle x_action = co_msg_save.
MSG_CLOSE CALL FUNCTION 'MSG_CLOSE' EXPORTING x_msg_handle = x_msg_handle.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
REE_DATEX_TASKS_REEXECUTE - Resend Data Exchange Tasks REE_DATEX_TASKS_REEXECUTE - Resend Data Exchange Tasks REE_DATEX_TASKS_GENERATE - Generate Data Exchange Tasks REE_DATEX_TASKS_GENERATE - Generate Data Exchange Tasks REE_DATEX_TASKS_EXE_INTERV_OPT - INSTALLATION Object: Divide Intervals for Data Exchange Task Execution REE_DATEX_TASKS_EXE_INTERV_OPT - INSTALLATION Object: Divide Intervals for Data Exchange Task Execution