SAP Reports / Programs

RBDSER03 SAP ABAP Report - Check Dispatch Status of IDocs of Serialization Group







RBDSER03 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program converts the status of dispatched IDocs of a serialization group...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 RBDSER03 into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

BD42 - Check IDocs for group


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RBDSER03. "Basic submit
SUBMIT RBDSER03 AND RETURN. "Return to original report after report execution complete
SUBMIT RBDSER03 VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: P_RCVPRN = Logical receiver system
Selection Text: P_SEND = Always send control message
Selection Text: P_SERGRP = Serialization Group
Selection Text: P_UPDATE = Date IDocs dispatched
Selection Text: P_UPTIME = Time IDocs dispatched
Title: Check Dispatch Status of IDocs of Serialization Group
Text Symbol: 001 = IDocs are being selected
Text Symbol: 002 = (& of &) IDoc & is being processed
Text Symbol: 003 = Dispatch status of IDocs is being checked


INCLUDES used within this REPORT RBDSER03

INCLUDE RBDDATA03.
INCLUDE RBDDIAG03.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

ALE_MESTYPE_GET_RECEIVER CALL FUNCTION 'ALE_MESTYPE_GET_RECEIVER' EXPORTING MESSAGE_TYPE = C_MSGTYPE_SERDAT TABLES RECEIVERS = T_RECEIVERS FILTEROBJECT_VALUES = T_FOBJVAL EXCEPTIONS MESTYPE_NOT_FOUND = 1 ERROR_IN_FILTEROBJECTS = 2 ERROR_IN_ALE_CUSTOMIZING = 3 OTHERS = 4.

IDOC_READ_GLOBAL CALL FUNCTION 'IDOC_READ_GLOBAL' IMPORTING GLOBAL_DATA = edi_global EXCEPTIONS INTERNAL_ERROR = 0 OTHERS = 0.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = INFORMATION_TEXT.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = INFORMATION_TEXT.

SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = INFORMATION_TEXT.

EDI_DOCUMENT_OPEN_FOR_PROCESS CALL FUNCTION 'EDI_DOCUMENT_OPEN_FOR_PROCESS' EXPORTING DOCUMENT_NUMBER = T_IDOCTID-DOCNUM IMPORTING IDOC_CONTROL = T_TMP_EDIDC EXCEPTIONS OTHERS = 1.

EDI_STATUS_ADD_BLOCK CALL FUNCTION 'EDI_STATUS_ADD_BLOCK' EXPORTING DOCUMENT_NUMBER = T_IDOCTID-DOCNUM TABLES IDOC_STATUS_RECORDS = T_TMP_EDIDS.

EDI_DOCUMENT_CLOSE_PROCESS CALL FUNCTION 'EDI_DOCUMENT_CLOSE_PROCESS' EXPORTING DOCUMENT_NUMBER = T_IDOCTID-DOCNUM EXCEPTIONS STATUS_SET_MISSING = 04.

MASTERIDOC_CREATE_SERDAT CALL FUNCTION 'MASTERIDOC_CREATE_SERDAT' EXPORTING RCVPFC = C_EDI_RCVPFC RCVPRN = t_receivers-logsys RCVPRT = C_PRT_LOGICAL_SYSTEM SERGROUP = P_SERGRP IMPORTING CREATED_COMM_IDOCS = COMM_IDOC_COUNTER EXCEPTIONS SERGROUP_NOT_FOUND = 1 ERROR_IN_IDOC = 2.

DB_COMMIT CALL FUNCTION 'DB_COMMIT'.

DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RBDSER03 or its description.