SAP Reports / Programs

GLE_MCA_RREV_POSTPROCESS SAP ABAP Report - Mass Reversal of MCA Documents - Postprocessing







GLE_MCA_RREV_POSTPROCESS is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for The program updates the status of MCA Run IDs that have been reversed but whose status is not yet 'Finished'...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 GLE_MCA_RREV_POSTPROCESS into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FBMCA80P - Exec. Mass Reversal MCA Docs: Postp.


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


Text pool values


Selection Text: SO_RUNID = D .
Selection Text: P_SIMUL = Simulation
Selection Text: P_RETRY = Restart
Title: Mass Reversal of MCA Documents - Postprocessing
Text Symbol: 210 = Time
Text Symbol: 200 = Date
Text Symbol: 130 = Run ID
Text Symbol: 125 = MCA Document Number
Text Symbol: 120 = D.Num.
Text Symbol: 118 = Fiscal Year
Text Symbol: 117 = F.Year
Text Symbol: 115 = Company Code
Text Symbol: 110 = C.Code
Text Symbol: 100 = Confirm the selected entries to be reversed
Text Symbol: 080 = ERROR in Function BAPI_ACC_DOCUMENT_REV_POST, see log for more details
Text Symbol: 070 = ERROR in Function GLE_MCA_REVERSE_FX_POST, see log for more details
Text Symbol: 060 = ERROR in Function GLE_MCA_FDOCREF_READ, see log for more details
Text Symbol: 040 = ERROR in Function GLE_MCA_GENL_OPEN_LOG, see log for more details
Text Symbol: 012 = Reversal Period
Text Symbol: 011 = MCA User
Text Symbol: 010 = Selection Parameters
Text Symbol: 009 = Reversal Posting Date
Text Symbol: 008 = Reversal Reason
Text Symbol: 007 = New Reversal Status
Text Symbol: 006 = Previous Reversal Status
Text Symbol: 005 = Reversal Post Processing
Text Symbol: 004 = MCA Process Category
Text Symbol: 002 = MCA Run ID
Text Symbol: 001 = Reversal Status Overview


INCLUDES used within this REPORT GLE_MCA_RREV_POSTPROCESS

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:

GLE_MCA_GENL_OPEN_LOG CALL FUNCTION 'GLE_MCA_GENL_OPEN_LOG' EXPORTING i_subobject = l_bal_subobj i_altext = l_logtext IMPORTING e_log_handle = l_log_handle e_return = l_tab_return e_errors = l_errors.

TRANSACTION_BEGIN CALL FUNCTION 'TRANSACTION_BEGIN' IMPORTING transaction_id = l_idtrans.

GLE_MCA_FDOCREF_READ CALL FUNCTION 'GLE_MCA_FDOCREF_READ' EXPORTING I_TAB_RANGE_RUNID = l_tab_range_runid IMPORTING e_tab_fdocref = l_tab_fdocref e_tab_return = l_tab_return e_error = l_errors.

GLE_MCA_REVERSE_FX_POST CALL FUNCTION 'GLE_MCA_REVERSE_FX_POST' EXPORTING i_tab_docref = l_tab_docref i_simulation = p_simul IMPORTING e_tab_runadm_id = l_tab_runadm_id e_cancel = l_cancel e_rev_stgrd = l_str_rev_stgrd CHANGING c_tab_return = l_tab_return c_errors = l_errors.

TRANSACTION_END CALL FUNCTION 'TRANSACTION_END' EXPORTING transaction_id = l_idtrans.

GLE_MCA_GENL_CLOSE_LOG CALL FUNCTION 'GLE_MCA_GENL_CLOSE_LOG' EXPORTING i_log_handle = l_log_handle IMPORTING e_return = l_tab_return e_errors = l_errors.

REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_grid_title = text-001 is_layout = l_str_layout it_fieldcat = l_tab_fieldcat TABLES t_outtab = l_tab_runadm_id_alv EXCEPTIONS program_error = 1 OTHERS = 2.



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