I_PPM_ProjectRoleTypeText
Project Role Type Text
I_PPM_ProjectRoleTypeText is a Basic CDS View that provides data about "Project Role Type Text" in SAP S/4HANA. It reads from 1 data source (dpr_part_role_t) and exposes 1 field with key field ProjectRoleType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dpr_part_role_t | dpr_part_role_t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPPMPRRLTYTXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Project Role Type Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProjectRoleType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectRoleType | participant_role |
@AbapCatalog.sqlViewName: 'IPPMPRRLTYTXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Project Role Type Text'
//basic
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'ProjectRoleType',
usageType: {
serviceQuality: #A,
dataClass: #MIXED,
sizeCategory: #S
}
}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
define view I_PPM_ProjectRoleTypeText as select from dpr_part_role_t {
key participant_role as ProjectRoleType,
@Semantics.language: true -- identifies the language
key langu as LanguageCode,
@Semantics.text: true -- identifies the first text field
role_text as ObjectName
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA