SAP PRP_TS_RESOURCE_TASK Tasks in Which a Resource Was Involved Table data and field list

PRP_TS_RESOURCE_TASK is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Tasks in Which a Resource Was Involved" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_PRP_TS_RESOURCE_TASK TYPE PRP_TS_RESOURCE_TASK.

The PRP_TS_RESOURCE_TASK table consists of various fields, each holding specific information or linking keys about Tasks in Which a Resource Was Involved data available in SAP. These include PROJECT_GUID (Application Object GUID (Entity with Conversion Exit)), TASK_ID (Task Number), SORT_NUMBER (Sort Number), PLANSTART (Planned start date)... 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. .

PRP_TS_RESOURCE_TASK structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can Be Enhanced (Deep)


SAP PRP_TS_RESOURCE_TASK structure 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 PRP_TS_RESOURCE_TASK 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
TASK_GUIDApplication Object GUID (Entity with Conversion Exit) DPR_TV_ENTITY_GUIDRAW16DPRCEDPR_ENTITY_GUID
PROJECT_GUIDApplication Object GUID (Entity with Conversion Exit) DPR_TV_ENTITY_GUIDRAW16DPRCEDPR_ENTITY_GUID
TASK_IDTask Number DPR_TV_TASK_IDCHAR24
SORT_NUMBERSort Number DPR_TV_SORT_NUMBERNUMC5
PLANSTARTPlanned start date CGPL_PLANSTARTDEC15TSTPSBCOS_TSTMP
PLANFINISHPlanned Finish Date CGPL_PLANFINISHDEC15TSTPSBCOS_TSTMP
CONSTRAINT_TYPEType of Scheduling Constraint CGPL_CONSTRAINTCHAR1CGPL_CONSTRAINT
CONSTRAINT_TIMEConstraint Date CGPL_CONSTRAINT_TIMEDEC15TSTPSBCOS_TSTMP
CONSTR_TYPE_FINType of Scheduling Constraint CGPL_CONSTRAINTCHAR1CGPL_CONSTRAINT
CONSTR_TIME_FINConstraint Date CGPL_CONSTRAINT_TIMEDEC15TSTPSBCOS_TSTMP
PARTICIPANT_ROLERole Type for Projects DPR_TV_PARTICIPANT_ROLECHAR15Assigned to domainDPR_PARTICIPANT_ROLE
PROC_STATUS_OWNObject Processing Status DPR_TV_PROC_STATUS_OWNCHAR2DPR_PROC_STATUS
CUSTOMERBusiness Partner GUID BU_PARTNER_GUIDRAW16SYSUUID
TASK_TEXTLanguage-Dependent Description CGPL_TEXT1CHAR40TEXT40
PROJECT_TEXTLanguage-Dependent Description CGPL_TEXT1CHAR40TEXT40
PROJECT_EXTERNAL_IDProject Planning: External Indentifier of an Element CGPL_EXTIDCHAR24CGPL_EXTID
PLANSTART_DATEStart Date BEGDADATS8DATUM
PLANFINISH_DATEEnd Date ENDDADATS8DATUM
START_DATE_FIXStart Date BEGDADATS8DATUM
FINISH_DATE_FIXEnd Date ENDDADATS8DATUM
PARTICIPANT_ROLE_TEXTName of Role Type DPR_TV_PARTICIPANT_ROLE_TEXTCHAR40DPR_TEXT

Key field Non-key field



How do I retrieve data from SAP structure PRP_TS_RESOURCE_TASK using ABAP code?

As PRP_TS_RESOURCE_TASK is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on PRP_TS_RESOURCE_TASK as there is no data to select.

How to access SAP table PRP_TS_RESOURCE_TASK

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

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