SAP DPR_PART_DIST Distribute Required Capacity to Project Role Table data and field list

DPR_PART_DIST is a standard SAP Table which is used to store Distribute Required Capacity to Project Role data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DPR_PART_DIST table consists of various fields, each holding specific information or linking keys about Distribute Required Capacity to Project Role data available in SAP. These include GUID (Application Object GUID (Entity with Conversion Exit)), ENDDA (Valid-To Date), CREATED_BY (Created By), CREATED_ON (UTC Time Stamp in Short Form (YYYYMMDDhhmmss)(with Con.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_PART_DIST 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_PART_DIST 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_PART_DIST 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
ENDDAValid-To Date DPR_TV_ENDDATEDATS8DATS
CREATED_BYCreated By DPR_TV_CREATED_BYCHAR12Assigned to domainXUBNAME
CREATED_ONUTC Time Stamp in Short Form (YYYYMMDDhhmmss)(with Con.Exit) DPR_TV_TIMESTAMPDEC15TSTPSBCOS_TSTMP
CHANGED_BYLast Changed By DPR_TV_CHANGED_BYCHAR12Assigned to domainXUBNAME
CHANGED_ONUTC Time Stamp in Short Form (YYYYMMDDhhmmss)(with Con.Exit) DPR_TV_TIMESTAMPDEC15TSTPSBCOS_TSTMP
ENTITY_GUIDApplication Object GUID DPR_TV_GUIDRAW16DPR_GUID
ALLOCATION_UNITDistribution Unit DPR_TV_ALLOCATION_UNITUNIT3Assigned to domainCUNITMEINS
PERIODTYPEPeriod Type (Weekly/Monthly/Generic Interval) DPR_TV_PERIOD_TYPENUMC2DPR_PERIOD_TYPE
BEGDAValid-From Date DPR_TV_BEGDATEDATS8DATS
DIST_WORK_EFFORTDemand or Assigned Effort DPR_TV_EFFORTQUAN9(2) DPR_WORK

Key field Non-key field



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

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

SELECT SINGLE *
FROM DPR_PART_DIST
INTO CORRESPONDING FIELDS OF WA_DPR_PART_DIST
WHERE...

How to access SAP table DPR_PART_DIST

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

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