SAP DPR_CHECKLIST_I Checklist Items Table data and field list

DPR_CHECKLIST_I is a standard SAP Table which is used to store Checklist Items data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DPR_CHECKLIST_I table consists of various fields, each holding specific information or linking keys about Checklist Items data available in SAP. These include GUID (Application Object GUID (Entity with Conversion Exit)), PROC_STATUS_OWN (Object Processing Status), PROC_STATUS_SUP (Processing Status of Higher-Level Object), CL_ITEM_ID (Checklist Item Number)... 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. .

DPR_CHECKLIST_I table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP DPR_CHECKLIST_I 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 DPR_CHECKLIST_I 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
CLIENTClient MANDTCLNT3Assigned to domainMANDT
GUIDApplication Object GUID (Entity with Conversion Exit) DPR_TV_ENTITY_GUIDRAW16DPRCEDPR_ENTITY_GUID
PROC_STATUS_OWNObject Processing Status DPR_TV_PROC_STATUS_OWNCHAR2DPR_PROC_STATUS
PROC_STATUS_SUPProcessing Status of Higher-Level Object DPR_TV_PROC_STATUS_SUPCHAR2DPR_PROC_STATUS
CL_ITEM_IDChecklist Item Number DPR_TV_CHECKLIST_ITEM_IDCHAR24
SORT_NUMBERSort Number DPR_TV_SORT_NUMBERNUMC5
VERSION_NUMBERVersion Number CGPL_TV_VERSIONCHAR24CGPL_VERSION
GROUPINGGrouping DPR_TV_GROUPINGCHAR40
SEARCH_FIELDSearch Field DPR_TV_SEARCH_FIELDCHAR40
MASTER_LANGUAGELanguage Key DPR_TV_LANGULANG1Assigned to domainISOLASPRAS
TEMPLATE_GUIDApplication Object GUID (Entity with Conversion Exit) DPR_TV_ENTITY_GUIDRAW16DPR_CHECKLIST_IDPRCEDPR_ENTITY_GUID
CHANGEABILITYChangeability of Checklist Items DPR_TV_CHANGEABILITY_ITEMCHAR1DPR_CHANGEABILITY_ITEM
OKOK DPR_TV_CHECKLIST_ITEM_OKCHAR1DPR_BOOLEAN
NOKNot OK DPR_TV_CHECKLIST_ITEM_NOKCHAR1DPR_BOOLEAN
NOT_RELEVANTNot Relevant DPR_TV_NOT_RELEVANTCHAR1DPR_BOOLEAN
OBLIGATORYMandatory DPR_TV_OBLIGATORYCHAR1DPR_BOOLEAN
APP_RELEVANTRelevant for Approval DPR_TV_APPROVAL_RELEVANTCHAR1DPR_BOOLEAN
PROCESSProcess DPR_TV_PROCESSCHAR15DPR_PROCESSDPR_PROCESS
SEVERITYSeverity DPR_TV_SEVERITYDEC2DPR_FMEA_RATING
OCCURENCEOccurrence DPR_TV_OCCURENCEDEC2DPR_FMEA_RATING
DETECTIONDetection DPR_TV_DETECTIONDEC2DPR_FMEA_RATING
RPNRisk Priority Number DPR_TV_RPNDEC4DPR_RPN
STAT_PROFILE_CLIStatus Profile Template DPR_TV_STAT_PROFILE_CLICHAR8Assigned to domainJ_STSMA
SCHEDULE_INDStatus of Scheduling Data PPM_SCHEDULE_INDICATORCHAR1PPM_SCHEDULE_INDICATOR
EA_DUMMYDummy Data Element for Enhanced Proj. Mgmt Attributes DPR_TV_EA_DUMMYCHAR1CHAR1

Key field Non-key field



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

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

SELECT SINGLE *
FROM DPR_CHECKLIST_I
INTO CORRESPONDING FIELDS OF WA_DPR_CHECKLIST_I
WHERE...

How to access SAP table DPR_CHECKLIST_I

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

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