SAP Reports / Programs

RBDSER02 SAP ABAP Report - Dispatch of IDocs of Serialization Group







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


Transaction Code(s):

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

BD41 - Dispatch 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 RBDSER02. "Basic submit
SUBMIT RBDSER02 AND RETURN. "Return to original report after report execution complete
SUBMIT RBDSER02 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_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


INCLUDES used within this REPORT RBDSER02

INCLUDE RBDDATA02.
INCLUDE RBDDIAG02.


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:

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.



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 RBDSER02 or its description.