RMCSGENA 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 RMCSGENA into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
MCRB - LIS: Generate Evaluations
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: UPD_NAME = Last changed by
Selection Text: UPD_DATE = Last Changed on (DDMMYY)
Selection Text: RW_TABLE = Table
Selection Text: NO_LIST = Generate W/o Selection List
Selection Text: LIB_NAME = Library
Selection Text: JOB_NAME = Report Group
Selection Text: GEN_STAT = Status
Selection Text: GEN_NAME = Generated by
Selection Text: GEN_DATE = Generated on (DDMMYY)
Selection Text: EVA_NAME = Evaluation
Selection Text: EST_NAME = Evaluation Structure
Selection Text: CRE_NAME = Author
Selection Text: CRE_DATE = Created on (DDMMYY)
Title: Logistics Information System: Generate Evaluations
Text Symbol: 044 = Select Evaluations
Text Symbol: 043 = Number
Text Symbol: 042 = Error code
Text Symbol: 041 = Author
Text Symbol: 040 = Statistics by Author:
Text Symbol: 033 = Cancel
Text Symbol: 032 = Error
Text Symbol: 031 = Warning
Text Symbol: 030 = Information
Text Symbol: 021 = Further Specifications---------------------------------------------------------------
Text Symbol: 020 = Selection Criteria--------------------------------------------------------------
Text Symbol: 017 = Author/Last Changed by:
Text Symbol: 016 = Evaluation Structure:
Text Symbol: 015 = Log
Text Symbol: 014 = Generated Without Errors
Text Symbol: 013 = Evaluation :
Text Symbol: 012 = Logistics Information System: Generate evaluations
Text Symbol: 011 = Logistics Information System: Generation List
Text Symbol: 009 = Generation Statistics:
Text Symbol: 008 = Number of Error Codes & (&)
Text Symbol: 007 = Highest Error Code : & (&)
Text Symbol: 005 = No. of Faulty Report Evaluations : &
Text Symbol: 004 = No. of Generated Evaluations : &
Text Symbol: 003 = Number of Evaluations : &
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_ACCESSIBILITY_MODE CALL FUNCTION 'GET_ACCESSIBILITY_MODE' IMPORTING ACCESSIBILITY = gf_acc_on EXCEPTIONS ITS_NOT_AVAILABLE = 1 OTHERS = 2 .
G_REPORT_GROUP_GENERATE * CALL FUNCTION 'G_REPORT_GROUP_GENERATE' * EXPORTING * GENERATE_ABAP = 'X' * LAYOUT_CONTROL = ' ' * MESSAGE_LEVEL = 99 * REPORT_GROUP = GJ_RGJNR * IMPORTING * RETURN_CODE = STAT-JOB_SUBRC * EXCEPTIONS * SYNTAX_ERROR = 01.
GRW_JOB_SUBMIT_PREPARE CALL FUNCTION 'GRW_JOB_SUBMIT_PREPARE' EXPORTING i_report_group = gj_rgjnr i_force_generation = 'X' i_message_level = 99 IMPORTING e_subrc = stat-job_subrc EXCEPTIONS OTHERS = 1.
MESSAGES_GIVE CALL FUNCTION 'MESSAGES_GIVE' TABLES t_mesg = messages.
MC_POPUP_TO_MARK_FIELDS CALL FUNCTION 'MC_POPUP_TO_MARK_FIELDS' EXPORTING i_field_number_max = 9999 i_field_number_min = 1 i_mark_by_table = 'X' I_OBJECT_NAME_PLURAL = HLP_TEXT1 I_OBJECT_NAME_SINGULAR = HLP_TEXT2 I_POPUP_TITLE = HLP_TEXT3 IMPORTING e_marked = hlp_flg_mark TABLES t_fields = HELP_AUSWERT t_marked_fields = AUS_HELP_AUSWERT.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.