RLMFW_REP 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 RLMFW_REP 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: P_ACTUSR = D .
Selection Text: P_AGTYPE = D .
Selection Text: P_AGTYPF = D .
Selection Text: P_CHNGBY = D .
Selection Text: P_CHNGDA = D .
Selection Text: P_CHNGTI = D .
Selection Text: P_CREABY = D .
Selection Text: P_CREADA = D .
Selection Text: P_CREATI = D .
Selection Text: P_OBJID = D .
Selection Text: P_OTYPE = D .
Selection Text: P_ROKTXT = D .
Selection Text: P_RONUM = D .
Selection Text: P_ROSTAT = D .
Title: Find Release Orders
Text Symbol: F00 = Basic Data
Text Symbol: F01 = Recipient
Text Symbol: F02 = History
Text Symbol: T02 = Component that can be hidden
Text Symbol: T03 = Output Parameters
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
LVC_FIELDCATALOG_MERGE CALL FUNCTION 'LVC_FIELDCATALOG_MERGE' EXPORTING i_structure_name = 'RLMFW_S_OH' i_bypassing_buffer = 'X' CHANGING ct_fieldcat = pt_fieldcat.
RLMFW_ORDER_DISP CALL FUNCTION 'RLMFW_ORDER_DISP' EXPORTING i_ronum = ls_oh-ronum.
SUSR_SHOW_USER_DETAILS CALL FUNCTION 'SUSR_SHOW_USER_DETAILS' EXPORTING bname = ls_oh-chngby.
SUSR_SHOW_USER_DETAILS CALL FUNCTION 'SUSR_SHOW_USER_DETAILS' EXPORTING bname = ls_oh-creaby.
RH_OTYPE_REQUEST_WITH_TABLE CALL FUNCTION 'RH_OTYPE_REQUEST_WITH_TABLE' IMPORTING sel_otype = p_otype TABLES otypes = lt_otype.
RH_GET_ACTIVE_WF_PLVAR CALL FUNCTION 'RH_GET_ACTIVE_WF_PLVAR' IMPORTING act_plvar = l_plvar EXCEPTIONS no_active_plvar = 0.
RH_OBJID_REQUEST CALL FUNCTION 'RH_OBJID_REQUEST' EXPORTING otype = p_otype-low plvar = l_plvar dynpro_repid = l_repid dynpro_dynnr = sy-dynnr set_mode = ' ' IMPORTING sel_object = l_sel_object EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.