SAP DPR_CONF_LI Project Management Confirmation: Line Item Table data and field list

DPR_CONF_LI is a standard SAP Table which is used to store Project Management Confirmation: Line Item data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DPR_CONF_LI table consists of various fields, each holding specific information or linking keys about Project Management Confirmation: Line Item data available in SAP. These include CPR_CABA_GUID (GUID of a Confirmation Document), CPR_CABA_BELNR (Document Number of a CATSII Record), FLG_REV (Project Management - Confirmation: Cancellation), OBJ_GUID (Application Object GUID (Entity with Conversion Exit))... 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_CONF_LI 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_CONF_LI 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_CONF_LI 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
CPR_CABA_GUIDGUID of a Confirmation Document DPR_TV_CONF_GUIDRAW16
CPR_CABA_BELNRDocument Number of a CATSII Record CPR_CABA_BELNRCHAR14CPR_CABA_BELNR
FLG_REVProject Management - Confirmation: Cancellation DPR_STO_FLGCHAR1
OBJ_GUIDApplication Object GUID (Entity with Conversion Exit) DPR_TV_ENTITY_GUIDRAW16DPRCEDPR_ENTITY_GUID
OBJ_TYPEObject Type DPR_TV_TYPECHAR15Assigned to domainDPR_TYPE
PROJECT_GUIDProject Planning: 16 Character GUID for Projects CGPL_PROJECT_GUIDRAW16CGPLPCGPL_PROJECT_GUID
CONF_DATEDate DPR_TV_DATE_CATSDATS8
ACT_WORK_EFFORTConfirmation (Insternal Display) DPR_TV_ACT_WORKQUAN16(3) DPR_WORK_LONG
ACT_WORK_UNITUnit DPR_TV_UNITUNIT3Assigned to domainCUNITMEINS
LOGSYSLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
AWTYPReference Transaction AWTYPCHAR5Assigned to domainAWTYP
TRANSF_FLGCATS 2 Document Posted in Project Management DPR_TRANSF_FLGCHAR1
SACK_IDExternal Identification of an SRM Service Entry Document DPR_TV_SACK_IDCHAR35DPR_SACK_EXT_ID
SACK_ITEMExternal Identification of an SRM Service Entry Item DPR_TV_SACK_I_IDCHAR10DPR_SACK_I_EXT_ID

Key field Non-key field



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

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

SELECT SINGLE *
FROM DPR_CONF_LI
INTO CORRESPONDING FIELDS OF WA_DPR_CONF_LI
WHERE...

How to access SAP table DPR_CONF_LI

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

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