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
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.
Title: Report for synchronizing the role structure BW/CE
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
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 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSCR_SYNCHRONIZE_ROLES - Report for synchronizing the role structure BW/CE RSCR_SYNCHRONIZE_ROLES - Report for synchronizing the role structure BW/CE RSCR_ROLES_REORG - Reorganization of role storage and storage for Crystal Reports RSCR_ROLES_REORG - Reorganization of role storage and storage for Crystal Reports RSCR_LAUNCH_CRW - Start of Crystal Reports Designer (CRW) RSCR_LAUNCH_CRW - Start of Crystal Reports Designer (CRW)