RIWP_LOAD_REPOS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report fills the repository tables for ILM...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 RIWP_LOAD_REPOS into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
IWP_LOAD_REPOS - Load Repositors from Metadata
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: PO_SPRAS = Sprachen
Selection Text: P_CLNT = D .
Selection Text: P_SYS = D .
Selection Text: P_TR = D .
Selection Text: P_UPD = Update Database
Title: Load Repository from Metadata
Text Symbol: 001 = Source System
Text Symbol: 002 = Update
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TR_SYS_PARAMS CALL FUNCTION 'TR_SYS_PARAMS' IMPORTING system_client_edit = g_client_edit.
TR_F4_REQUESTS CALL FUNCTION 'TR_F4_REQUESTS' EXPORTING * IV_USERNAME = SY-UNAME * IV_TRKORR_PATTERN = iv_trfunctions = 'W' * IV_TRSTATUS = * IV_FROM_DATE = * IV_TO_DATE = iv_client = sy-mandt * IV_PROJECT = * IV_TITLE = * IV_VIA_SELECTION_SCREEN = 'X' * IV_COMPLETE_REQUESTS = 'X' * IT_EXCLUDE_REQUESTS = IMPORTING ev_selected_request = p_tr * ES_SELECTED_REQUEST = .
F4IF_INT_TABLE_VALUE_REQUEST * CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' * EXPORTING ** DDIC_STRUCTURE = ' ' * retfield = ** PVALKEY = ' ' ** DYNPPROG = ' ' ** DYNPNR = ' ' ** DYNPROFIELD = ' ' ** STEPL = 0 ** WINDOW_TITLE = ** VALUE = ' ' ** VALUE_ORG = 'C' ** MULTIPLE_CHOICE = ' ' ** DISPLAY = ' ' ** CALLBACK_PROGRAM = ' ' ** CALLBACK_FORM = ' ' ** CALLBACK_METHOD = ** MARK_TAB = ** IMPORTING ** USER_RESET = * tables * value_tab = ** FIELD_TAB = ** RETURN_TAB = ** DYNPFLD_MAPPING = ** EXCEPTIONS ** PARAMETER_ERROR = 1 ** NO_VALUES_FOUND = 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.