SAP Reports / Programs

RMCLCNKL SAP ABAP Report - Overview of Characteristic Changes for Class







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


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 RMCLCNKL. "Basic submit
SUBMIT RMCLCNKL AND RETURN. "Return to original report after report execution complete
SUBMIT RMCLCNKL 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: 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


INCLUDES used within this REPORT RMCLCNKL

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:

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.



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