RMCEXLOG 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 RMCEXLOG 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: 03BF0 = Material Documents
Selection Text: 03UM0 = Revaluation Documents
Selection Text: 03_BELNR = D Document Number
Selection Text: 03_MBLNR = D Material Document
Selection Text: 08_TRFKN = D Doc. No. (TCNUM/FCNUM)
Selection Text: MCAPP = D Application
Selection Text: P_MCAPP = Application
Selection Text: UNAME = D User
Title: Extraction Log MCEXLOG
Text Symbol: 001 = Confirmation Prompt
Text Symbol: 002 = Are you sure you want to delete?
Text Symbol: 003 = Yes
Text Symbol: 004 = No
INCLUDE MCEX02TOP.
INCLUDE MCEX03TOP.
INCLUDE MCEX04TOP.
INCLUDE MCEX08TOP.
INCLUDE MCEX11TOP.
INCLUDE MCEX12TOP.
INCLUDE MCEX13TOP.
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM CALL FUNCTION 'POPUP_TO_CONFIRM' EXPORTING titlebar = 'Sicherheitsabfrage'(001) text_question = 'Wollen Sie wirklich löschen?'(002) text_button_1 = 'Ja'(003) text_button_2 = 'Nein'(004) IMPORTING answer = lf_answer.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING i_callback_program = g_repid i_callback_user_command = g_ucommand is_layout = g_layout it_fieldcat = g_fieldcat TABLES t_outtab = g_tmcexact_tab.
REUSE_ALV_LIST_DISPLAY call function 'REUSE_ALV_LIST_DISPLAY' exporting i_structure_name = &3 is_layout = g_layout tables t_outtab = &2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.