SAP DPR_CONF_DET Project Management Confirmation: Detail Fields of Tasks Table data and field list

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

The DPR_CONF_DET table consists of various fields, each holding specific information or linking keys about Project Management Confirmation: Detail Fields of Tasks data available in SAP. These include CONF_GUID (GUID of a Confirmation Document), PROJECT_GUID (Project Planning: 16 Character GUID for Projects), TASK_GUID (Project Planning: 16 Character GUID for Tasks), ACTUAL_START (Actual Start)... 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_DET 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: Cannot Be Enhanced


SAP DPR_CONF_DET 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_DET 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
CONF_GUIDGUID of a Confirmation Document DPR_TV_CONF_GUIDRAW16
PROJECT_GUIDProject Planning: 16 Character GUID for Projects CGPL_PROJECT_GUIDRAW16CGPLPCGPL_PROJECT_GUID
TASK_GUIDProject Planning: 16 Character GUID for Tasks CGPL_TASK_GUIDRAW16CGPLPCGPL_PROJECT_GUID
ACTUAL_STARTActual Start DPR_TV_ACTUAL_STARTDATS8
ACTUAL_FINISHActual Finish DPR_TV_ACTUAL_FINISHDATS8
PERCENT_COMPLETEPercentage of Completion CGPL_COMPLETIONNUMC3CGPL_COMPLETION
REM_WORKRemaining Work DPR_TV_REM_WORKQUAN16(3) DPR_WORK_LONG
REM_WORK_UNITUnit DPR_TV_UNITUNIT3Assigned to domainCUNITMEINS
COMMENTSComment DPR_TV_COMMENTARYSTRG0
LOGSYSLogical system LOGSYSCHAR10Assigned to domainALPHALOGSYS
TRANSF_FLGCATS 2 Document Posted in Project Management DPR_TRANSF_FLGCHAR1
RECEIVE_DATEDate DPR_TV_DATE_CATSDATS8

Key field Non-key field



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

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

SELECT SINGLE *
FROM DPR_CONF_DET
INTO CORRESPONDING FIELDS OF WA_DPR_CONF_DET
WHERE...

How to access SAP table DPR_CONF_DET

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

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