RBDSER02 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report processes all IDocs of a serialization group with the status 'to be processed'...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 RBDSER02 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BD41 - Dispatch 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_SEND = Always send control message
Selection Text: P_SERGRP = Serialization Group
Selection Text: P_TIME = Waiting time until check
Selection Text: P_UPDATE = Date of last change
Selection Text: P_UPTIME = Time of last change
Selection Text: P_RCVPRN = Logical receiver system
Selection Text: P_CHECK = Check IDoc dispatch status
Title: Dispatch of IDocs of Serialization Group
Text Symbol: 001 = Always send control message
Text Symbol: 002 = Check Dispatch Status of IDoc
Text Symbol: 003 = Waiting time until check
INCLUDE RBDDATA02.
INCLUDE RBDDIAG02.
No SAP DATABASE tables are accessed within this REPORT code!
JOB_OPEN CALL FUNCTION 'JOB_OPEN' EXPORTING DELANFREP = C_BTC_YES JOBNAME = C_JOBNAME IMPORTING JOBCOUNT = JOB_ID EXCEPTIONS CANT_CREATE_JOB = 1 INVALID_JOB_DATA = 2 JOBNAME_MISSING = 3.
RS_REFRESH_FROM_SELECTOPTIONS CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS' EXPORTING CURR_REPORT = 'RBDSER02' TABLES SELECTION_TABLE = T_PARAMETERS EXCEPTIONS NOT_FOUND = 1 NO_REPORT = 2 OTHERS = 3.
BP_JOB_DELETE CALL FUNCTION 'BP_JOB_DELETE' EXPORTING JOBCOUNT = JOB_ID JOBNAME = C_JOBNAME FORCEDMODE = C_TRUE.
JOB_CLOSE CALL FUNCTION 'JOB_CLOSE' EXPORTING JOBCOUNT = JOB_ID JOBNAME = C_JOBNAME SDLSTRTDT = JOB_START_DATE SDLSTRTTM = JOB_START_TIME IMPORTING JOB_WAS_RELEASED = JOB_RELEASED EXCEPTIONS CANT_START_IMMEDIATE = 1 INVALID_STARTDATE = 2 JOBNAME_MISSING = 3 JOB_CLOSE_FAILED = 4 JOB_NOSTEPS = 5 JOB_NOTEX = 6 LOCK_FAILED = 7 OTHERS = 8.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
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 RBDSEQSMT - Send Inspection Method RBDSEQSMT - Send Inspection Method