I_EntProjectRoleCategory
Role Category for Enterprise Projects
I_EntProjectRoleCategory is a Basic CDS View (Dimension) that provides data about "Role Category for Enterprise Projects" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ProjectRoleCategory. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_EntProjectRoleCategoryText | _Text | |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Role Category for Enterprise Projects | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | IENTPROJROLECAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.representativeKey | ProjectRoleCategory | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.sapObjectNodeType.name | EnterpriseProjectRoleCategory | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectRoleCategory | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@EndUserText.label: 'Role Category for Enterprise Projects'
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog: {
sqlViewName: 'IENTPROJROLECAT',
compiler.compareFilter: true,
preserveKey:true,
dataMaintenance: #RESTRICTED
}
@Analytics: {
dataCategory: #DIMENSION,
// dataExtraction.enabled: true,
internalName: #LOCAL
}
@ObjectModel: {
compositionRoot: true,
representativeKey: 'ProjectRoleCategory',
dataCategory: #VALUE_HELP,
supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #VALUE_HELP_PROVIDER ],
usageType: {
serviceQuality: #A,
dataClass: #META,
sizeCategory: #S
},
resultSet.sizeCategory: #XS,
sapObjectNodeType.name: 'EnterpriseProjectRoleCategory'
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define root view I_EntProjectRoleCategory as select from dd07l
composition [0..*] of I_EntProjectRoleCategoryText as _Text
{
@ObjectModel.text.association: '_Text'
key cast( dd07l.domvalue_l as /s4ppm/tv_role_category ) as ProjectRoleCategory,
@Analytics.hidden: true
@Consumption.hidden: true
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
dd07l.domvalue_l as DomainValue,
_Text
}
where dd07l.domname = 'DPR_PART_ROLE_CATEGORY'
and dd07l.as4local = 'A'
and dd07l.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_ENTPROJECTROLECATEGORYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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