RBDCUS59 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RBDCUS59 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
BDXN - Analyze Inbound Log Table
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: SO_PROC = Import Status
Selection Text: SO_LOG2 = Logical Source System
Selection Text: SO_INDAT = Import Date
Selection Text: SO_GROUP = Distribution Group
Title: Display Inbound ALE Requests
Text Symbol: OFF = Modifiable
Text Symbol: FRE = Released
Text Symbol: EI1 = Display Inbound ALE Requests
Text Symbol: 019 = Status
Text Symbol: 018 = Forwarded
Text Symbol: 017 = Imported, To Be Forwarded (Sender)
Text Symbol: 016 = To Be Imported
Text Symbol: 015 = Group Description
Text Symbol: 014 = Request Status
Text Symbol: 013 = Date
Text Symbol: 012 = Distribution Group
Text Symbol: 011 = Logical System
Text Symbol: 010 = Imported
Text Symbol: 009 = Imported from
Text Symbol: 008 = Imported on
Text Symbol: 007 = Generated by
Text Symbol: 006 = Generated on
Text Symbol: 004 = Distribution Group
Text Symbol: 003 = ALE Request
Text Symbol: 002 = ALE requests for import
Text Symbol: 001 = ALE requests for export
004 | | | | |
003 | | | forwarded |
002 | | imp./forwarded (sender) |
001 |ALE Request to Import Logical System Distribution Group Date Status of Source Requests |
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_RED_LIGHT' text = text-016 info = text-016 IMPORTING RESULT = h_tbd74-status.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_YELLOW_LIGHT' text = text-017 info = text-017 IMPORTING RESULT = h_tbd74-status.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = 'ICON_GREEN_LIGHT' text = text-018 info = text-018 IMPORTING RESULT = h_tbd74-status.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_pf_status_set = 'SET_PF_STATUS' i_callback_user_command = 'USER_COMMAND' I_CALLBACK_TOP_OF_PAGE = 'TOP_OF_PAGE' is_layout = is_layout it_fieldcat = it_fieldcat i_default = ' ' i_save = space is_print = is_print TABLES t_outtab = h_tbd74 EXCEPTIONS program_error = 1 OTHERS = 2.
TR_DISPLAY_REQUEST CALL FUNCTION 'TR_DISPLAY_REQUEST' EXPORTING i_trkorr = h_tbd74-trkorr I_OPERATION = 'DISPLAY' * I_ACTIVETAB = * IS_REQUEST_WD = .
REUSE_ALV_COMMENTARY_WRITE CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE' EXPORTING it_list_commentary = t_header .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.