SAP Reports / Programs

RSCR_SYNCHRONIZE_ROLES SAP ABAP Report - Report for synchronizing the role structure BW/CE







RSCR_SYNCHRONIZE_ROLES is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Report for Role Synchronization BW <-> CE This report allows you to adjust the folder structure created in CE to the role structure in BW...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 RSCR_SYNCHRONIZE_ROLES into the relevant SAP transactions such as SE38 or SE80


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 RSCR_SYNCHRONIZE_ROLES. "Basic submit
SUBMIT RSCR_SYNCHRONIZE_ROLES AND RETURN. "Return to original report after report execution complete
SUBMIT RSCR_SYNCHRONIZE_ROLES VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Report for synchronizing the role structure BW/CE


INCLUDES used within this REPORT RSCR_SYNCHRONIZE_ROLES

No INCLUDES are used within this REPORT code!


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:

RSBB_TREE_READ CALL FUNCTION 'RSBB_TREE_READ' EXPORTING * I_ROLE = * I_NODE = * I_LEVEL = * I_REFRESH = * I_OPEN = 'X' * I_SORT = * I_CHILDREN = * I_FAVORITES_ONLY = * I_ROLES_ONLY = I_ALL_ROLES = 'X' * I_URL = * I_WORKBOOK = * I_FOLDER = * I_DOCUMENT = * I_SHORTCUT = * I_WEB_REPORT = * I_QUERY = * I_INFOSET_QUERY = I_CRYSTAL_REPORT = 'X' * I_MINIAPP = * I_TRANSACTION = * I_TEMPLATE = * I_ITEM_LIBRARY = * IMPORTING * E_SUBRC = TABLES E_T_TREENODES = L_T_TREENODES .

TH_GET_PROFILE_VALUE CALL FUNCTION 'TH_GET_PROFILE_VALUE' EXPORTING NAME = 'eu/iwb/installed_languages' "#EC NEEDED SERVER = sy-host * WP = IMPORTING VALUE = l_languages EXCEPTIONS INTERNAL_ERROR = 1 TOO_LARGE = 2 NOT_FOUND = 3 OTHERS = 4 .

RSCR_CE_SYNCHRONIZE_ROLES CALL FUNCTION 'RSCR_CE_SYNCHRONIZE_ROLES' EXPORTING * I_MASTERLANGU = SY-LANGU I_LANGUAGES = l_languages * I_FORCE_PUBLISH = ' ' * I_REFRESH_PICKLISTS = ' ' IMPORTING E_LOGFILE = l_logfile E_SUBRC = l_subrc TABLES I_T_AGR_IDS = L_T_AGR_IDS EXCEPTIONS SYSTEM_FAILURE = 1 COMMUNICATION_FAILURE = 2 OTHERS = 3 .



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