RKEREOLT 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 RKEREOLT into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
KE1Q - Reorganize Long Texts
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: PA_TYPE = Type of Profitability Analysis
Selection Text: P_ERKRS = Operating Concern
Selection Text: P_TEST = Test Run
Selection Text: R_TDFDAT = Date created
Selection Text: R_TDLDAT = Last changed on
Selection Text: R_TDLUSE = Last changed by
Selection Text: R_VERSI = Version
Selection Text: R_VRGAR = Record type
Title: Reorganize Long Texts for CO-PA Planning
Text Symbol: 010 = No.of Long Texts To Be Deleted
Text Symbol: 011 = No. of Deleted Long Texts
Text Symbol: 020 = Test Run
Text Symbol: 021 = Upd. Run
Text Symbol: 030 = Information
Text Symbol: 040 = Value
Text Symbol: 100 = General data selection
Text Symbol: 101 = Further restrictions
Text Symbol: 102 = Ctrl Parameters
Text Symbol: 103 = Processing Mode
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RKE_CHECK_GENERATION CALL FUNCTION 'RKE_CHECK_GENERATION' EXPORTING erkrs = p_erkrs.
SELECT_TEXT CALL FUNCTION 'SELECT_TEXT' EXPORTING client = sy-mandt id = c_tdid language = '*' name = '*' object = c_tdobject TABLES selections = gt_head.
DELETE_TEXT CALL FUNCTION 'DELETE_TEXT' EXPORTING client = sy-mandt id = c_tdid language = '*' name = gt_head-tdname object = c_tdobject savemode_direct = 'X'.
REUSE_ALV_GRID_DISPLAY CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_callback_program = sy-cprog i_callback_pf_status_set = c_form_alv_status is_layout = gs_layout it_fieldcat = gt_fieldcat TABLES t_outtab = gt_alv EXCEPTIONS program_error = 1 OTHERS = 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.