RMCLCNKL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Item overview from database table KSML (characteristics of class) The following data is shown: Item, characteristic name, change number, change date, deletion indicator for characteristic, organizational areas, code letter, characteristic origin, overwrite indicator...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 RMCLCNKL 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: CLINT = Class number
Title: Overview of Characteristic Changes for Class
Text Symbol: 000 = Itm Characteristic Change no. Date D Org areas CdL Origin Tr
Text Symbol: 001 = Class has no characteristics
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CLSE_SELECT_KSML CALL FUNCTION 'CLSE_SELECT_KSML' EXPORTING KEY_DATE = MAXDATUV TABLES IMP_EXP_KSML = XKSML EXCEPTIONS NO_ENTRY_FOUND = 1.
CLSE_SELECT_CABN CALL FUNCTION 'CLSE_SELECT_CABN' EXPORTING KEY_DATE = CDAT TABLES IN_CABN = ICABN T_CABN = XCABN EXCEPTIONS NO_ENTRY_FOUND = 1.
CC_CHANGE_NUMBER_READ CALL FUNCTION 'CC_CHANGE_NUMBER_READ' EXPORTING EAENNR = T_AENNR-AENNR IMPORTING ACLASS = T_AENNR-CLASS EXCEPTIONS NO_RECORD_FOUND = 01.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = G_REPID I_CALLBACK_PF_STATUS_SET = G_STATUS I_CALLBACK_USER_COMMAND = G_USER_COMMAND I_SAVE = G_SAVE IS_VARIANT = G_VARIANT IS_LAYOUT = GS_LAYOUT IT_FIELDCAT = GT_FIELDCAT[] IT_EVENTS = GT_EVENTS[] I_BUFFER_ACTIVE = 'X'
* I_SCREEN_START_COLUMN = 10 * I_SCREEN_START_line = 4 * I_SCREEN_end_COLUMN = 80 * I_SCREEN_end_line = 24 TABLES T_OUTTAB = GT_OUT 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.
RMCLCNKL - Overview of Characteristic Changes for Class RMCLCNKL - Overview of Characteristic Changes for Class RMCLCLMO - Initial Program for Class Maintenance RMCLCLMO - Initial Program for Class Maintenance RMCLCLIB - LIL: Check whether table T731/MCLI up-to-date (possibly delete) RMCLCLIB - LIL: Check whether table T731/MCLI up-to-date (possibly delete)