RBDAGAIN is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report reprocesses outbound IDocs which contain errors...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RBDAGAIN into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BD83 - Send IDocs after an ALE error
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: P_OUTPUT = D .
Selection Text: SO_STATU = Status
Selection Text: SO_RCPRT = Partner Type of Receiver
Selection Text: SO_RCPRN = Partner Number of Receiver
Selection Text: SO_RCPFC = Partner Function of Receiver
Selection Text: SO_MESTY = Logical Message Type
Selection Text: SO_MESFC = Message Function
Selection Text: SO_MESCO = Message Variant
Selection Text: SO_DOCNU = IDoc
Selection Text: SO_CRETI = Created At
Selection Text: SO_CREDA = Created On
Selection Text: P_WODIAL = Import in Background
Selection Text: HTTP = D .
Title: Process Outbound IDocs with Errors Again
Text Symbol: O02 = Selecting data
Text Symbol: O01 = (& of &) IDoc & is being processed
Text Symbol: 006 = IDoc is still being processed
Text Symbol: 005 = Description
Text Symbol: 004 = St
Text Symbol: 003 = MsgTyp
Text Symbol: 002 = IDoc
Text Symbol: 001 = The following IDocs have been processed:
INCLUDE MBDCONST.
No SAP DATABASE tables are accessed within this REPORT code!
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = OUTPUT_TEXT.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = OUTPUT_TEXT.
IDOC_PROCESS_ERROR CALL FUNCTION 'IDOC_PROCESS_ERROR' EXPORTING IDOC_NUMBER = T_EDIDC-DOCNUM DIALOG_FLAG = HELP_DIALOG_FLAG.
IDOC_PROCESS_ERROR CALL FUNCTION 'IDOC_PROCESS_ERROR' EXPORTING IDOC_NUMBER = T_EDIDC-DOCNUM DIALOG_FLAG = HELP_DIALOG_FLAG.
IDOC_READ_GLOBAL CALL FUNCTION 'IDOC_READ_GLOBAL' IMPORTING GLOBAL_DATA = edi_global EXCEPTIONS INTERNAL_ERROR = 0 OTHERS = 0.
IDOC_OUTPUT_LIST CALL FUNCTION 'IDOC_OUTPUT_LIST' EXPORTING HEADERTXT = text-001 TABLES OUTPUT = T_UPDATE .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.