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
Below is a list of transaction codes which are relevant to this SAP report
BD42 - Check IDocs for group
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_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
INCLUDE RBDDATA03.
INCLUDE RBDDIAG03.
No SAP DATABASE tables are accessed within this REPORT code!
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'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RBDSER03 - Check Dispatch Status of IDocs of Serialization Group RBDSER03 - Check Dispatch Status of IDocs of Serialization Group RBDSER02 - Dispatch of IDocs of Serialization Group RBDSER02 - Dispatch of IDocs of Serialization Group RBDSER01 - Generate IDocs for Serialization Group From Change Pointers RBDSER01 - Generate IDocs for Serialization Group From Change Pointers