I_PPM_ProjectRoleTypeCatText
Project Role Type Category Text
I_PPM_ProjectRoleTypeCatText is a Basic CDS View that provides data about "Project Role Type Category Text" in SAP S/4HANA. It reads from 1 data source (P_PPM_DomainValueText) and exposes 3 fields with key fields LanguageCode, ProjectRoleCategory.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_PPM_DomainValueText | text | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Project Role Type Category Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IPPMPRROLTPCTGT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProjectRoleCategory | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | LanguageCode | P_PPM_DomainValueText | ddlanguage | |
| KEY | ProjectRoleCategory | P_PPM_DomainValueText | domvalue_l | |
| ProjectRoleCategoryText | P_PPM_DomainValueText | ddtext |
@EndUserText.label: 'Project Role Type Category Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AbapCatalog: {
sqlViewName: 'IPPMPRROLTPCTGT',
compiler.compareFilter: true,
preserveKey:true
}
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'ProjectRoleCategory',
usageType: {
serviceQuality: #B,
dataClass: #MASTER,
sizeCategory: #S
}
}
@Search.searchable: true
define view I_PPM_ProjectRoleTypeCatText as select from P_PPM_DomainValueText as text {
@Semantics.language: true
@UI.hidden: true
key text.ddlanguage as LanguageCode,
@UI.hidden: true
@EndUserText: { label: 'Role Category ID', quickInfo: 'Role Category ID' }
@ObjectModel.text.element: 'ProjectRoleCategoryText'
key text.domvalue_l as ProjectRoleCategory,
@Semantics.text: true
@Search.defaultSearchElement: true
@EndUserText: { label: 'Role Category', quickInfo: 'Role Category' }
@UI.hidden: true
text.ddtext as ProjectRoleCategoryText
} where ( domname = 'DPR_PART_ROLE_CATEGORY' )
and ( as4local = 'A' )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_PPM_DOMAINVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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