SAP CJIT09 Sort Variants for Progress Confirmation / Monitoring Table data and field list

CJIT09 is a standard SAP Table which is used to store Sort Variants for Progress Confirmation / Monitoring data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The CJIT09 table consists of various fields, each holding specific information or linking keys about Sort Variants for Progress Confirmation / Monitoring data available in SAP. These include SORTV (Sort Variant), PRIO1 (Priority 1 in the Sort Variant), PRIO2 (Priority 2 in the Sort Variant), PRIO3 (Priority 3 in the Sort Variant)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

CJIT09 table Technical Details:

Delivery Class: G - Customising table which is protected against SAP Update
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type)

Text table = CJIT09T


SAP CJIT09 table fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the CJIT09 table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3T000MANDT
SORTVSort Variant JIT_SORTVCHAR12JIT_SORTVJIT_SORTVJIT_SORTV
PRIO1Priority 1 in the Sort Variant JIT_PRIO1CHAR5JIT_PRIO1
PRIO2Priority 2 in the Sort Variant JIT_PRIO2CHAR5JIT_SPRIO
PRIO3Priority 3 in the Sort Variant JIT_PRIO3CHAR5JIT_SPRIO
PRIO4Priority 4 in the Sort Variant JIT_PRIO4CHAR5JIT_PRIO1
P1ORDSorting Sequence of Criteria with Priority 1 JIT_P1ORDCHAR1JIT_ORDER
P2ORDSort Sequence of Criteria with Priority 2 JIT_P2ORDCHAR1JIT_ORDER
P3ORDSort Sequence of Criteria with Priority 3 JIT_P3ORDCHAR1JIT_ORDER
P4ORDSort Sequence of Criteria with Priority 4 JIT_P4ORDCHAR1JIT_ORDER
MASKESort-Relevant Figures of External Sequence Number JIT_MASKECHAR35CHAR35

Key field Non-key field



How do I retrieve data from SAP table CJIT09 using ABAP code

The following ABAP code Example will allow you to do a basic selection on CJIT09 to SELECT all data from the table
DATA: WA_CJIT09 TYPE CJIT09.

SELECT SINGLE *
FROM CJIT09
INTO CORRESPONDING FIELDS OF WA_CJIT09
WHERE...

How to access SAP table CJIT09

Within an ECC or HANA version of SAP you can also view further information about CJIT09 and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).