CNCLASSI 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 CNCLASSI 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.
Text Symbol: 001 = Correction mode possible for single project only
Text Symbol: 002 = ================================================
Text Symbol: 003 = Project
Text Symbol: 004 = Classification Inconsistencies Corrected
Text Symbol: 005 = Cannot be locked. Termination
Text Symbol: 006 = No classification error found
Text Symbol: 007 = Has classification data without flag
Text Symbol: 008 = Has flag CLASF without classification
Text Symbol: 009 = Temporary files TM...PR exist in table KSSK
Text Symbol: 010 = Temporary files TM...PR exist in table AUSP
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_EC_PROJ CALL FUNCTION 'ENQUEUE_EC_PROJ' EXPORTING MANDT = SY-MANDT TYP = 'P' PSPID = INT_PROJ-PSPID _WAIT = 'X' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
DEQUEUE_ALL CALL FUNCTION 'DEQUEUE_ALL'.
CLFM_CLEAR_CLASSIFICATION CALL FUNCTION 'CLFM_CLEAR_CLASSIFICATION' EXPORTING CLASSTYPE = '014' OBJECT = OBJECT TABLE = 'KKRAMERK' EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02 TABLE_NOT_FOUND = 03.
K_KKRAMERK_FILL_FROM_TABLES CALL FUNCTION 'K_KKRAMERK_FILL_FROM_TABLES' EXPORTING IMP_PRPS = INT_PRPS IMPORTING EXP_KKRAMERK = LOC_KKRAMERK.
CTMS_OBJECT_AREA CALL FUNCTION 'CTMS_OBJECT_AREA' TABLES OBJECTS = MERKTAB.
CLFM_OBJECT_CLASSIFICATION CALL FUNCTION 'CLFM_OBJECT_CLASSIFICATION' EXPORTING CLASS = 'SAP_KKR_CLASS' CLASSTYPE = '014' INITFLAG = LOC_INITFLAG NO_CHANGE_TYPE = LOC_YES NO_DISPLAY = LOC_YES OBJECT = LOC_OBJECT OBJTXT = LOC_OBJTXT STATUS = '2' TABLE = 'KKRAMERK ' EXCEPTIONS FOREIGN_LOCK = 1 NO_AUTH_KLART = 2 SYSTEM_FAILURE = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.