RBDLS_CHECK is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report determines the number of logical systems in tables...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 RBDLS_CHECK into the relevant SAP transactions such as SE38 or SE80
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: LS = Logical Systems
Selection Text: MAXIMUM = No.of Entries for Each Package
Selection Text: P_ALL = Cross-Client
Selection Text: P_PARALL = Parallel Processing Active
Selection Text: P_PROC = Number of Parallel Processes
Selection Text: P_RFCGR = RFC Server Group
Selection Text: TABLIST = Tables
Title: Number of Table Entries of Logical System Names
Text Symbol: A01 = Logical System Name
Text Symbol: A02 = Parallel Processing
Text Symbol: D01 = Entries Without Logical System
Text Symbol: D03 = Information
Text Symbol: D04 = Too many fields with logical system
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DB_EXISTS_TABLE CALL FUNCTION 'DB_EXISTS_TABLE ' EXPORTING TABNAME = wa_field_ls-tabname IMPORTING SUBRC = wa_subrc.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_biw_source_sys_r3 info = 'empty logical system'(d01) "#EC TEXT_DIFF IMPORTING result = no_logical_system EXCEPTIONS OTHERS = 0.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_failure info = 'too many fields for logical system'(d04) "#EC TEXT_DIFF IMPORTING result = too_many_fields EXCEPTIONS OTHERS = 0.
SPBT_INITIALIZE CALL FUNCTION 'SPBT_INITIALIZE' EXPORTING group_name = p_rfcgr IMPORTING free_pbt_wps = lv_free_wp EXCEPTIONS invalid_group_name = 1 internal_error = 2 pbt_env_already_initialized = 3 currently_no_resources_avail = 4 no_pbt_resources_found = 5 OTHERS = 6.
SPBT_GET_CURR_RESOURCE_INFO CALL FUNCTION 'SPBT_GET_CURR_RESOURCE_INFO' IMPORTING free_pbt_wps = lv_free_wp EXCEPTIONS OTHERS = 0.
BDLS_COUNT_LOGSYS CALL FUNCTION 'BDLS_COUNT_LOGSYS' STARTING NEW TASK wa_task DESTINATION IN GROUP p_rfcgr PERFORMING end_of_process ON END OF TASK EXPORTING tabname = t_single_table max_anzahl = maximum client_spec = p_all TABLES logsys = i_tbdls "#EC ENHOK EXCEPTIONS resource_failure = 1 system_failure = 2 communication_failure = 3 OTHERS = 4.
BDLS_COUNT_LOGSYS CALL FUNCTION 'BDLS_COUNT_LOGSYS' EXPORTING tabname = t_single_table max_anzahl = maximum client_spec = p_all IMPORTING table_ls_count = table_ls_count TABLES logsys = i_tbdls EXCEPTIONS too_many_fields = 1 no_authority = 2 OTHERS = 3.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-repid * i_callback_pf_status_set = gi_status_set i_grid_title = header is_layout = gsi_layout it_fieldcat = gti_fieldcat[] it_sort = gsi_sort[] it_excluding = gsi_excluding[] i_save = 'U' is_variant = l_disvariant TABLES t_outtab = lt_all_tables_dis EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RBDLS_CHECK - Number of Table Entries of Logical System Names RBDLS_CHECK - Number of Table Entries of Logical System Names RBDLSMAP_RESET - Deleting BDLS log tables and obsolete SBDLS programs RBDLSMAP_RESET - Deleting BDLS log tables and obsolete SBDLS programs RBDLSMAP_OLD - Report RBDLSMAP_OLD RBDLSMAP_OLD - Report RBDLSMAP_OLD