I_EntProjectEntitlement
Enterprise Project Entitlement
I_EntProjectEntitlement is a Basic CDS View that provides data about "Enterprise Project Entitlement" in SAP S/4HANA. It reads from 1 data source (/s4ppm/entitlmnt) and exposes 11 fields with key field ProjectEntitlementUUID. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /s4ppm/entitlmnt | entitlmnt | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_EnterpriseProject | _Project | _Project.ProjectUUID = $projection.ProjectUUID |
| [1..1] | I_EnterpriseProjectRole | _Role | _Role.ProjectRoleUUID = $projection.ProjectRoleUUID |
| [1..1] | I_EnterpriseProjectTeamMember | _TeamMember | _TeamMember.TeamMemberUUID = $projection.TeamMemberUUID |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Enterprise Project Entitlement | view | |
| AbapCatalog.sqlViewName | IENTPROJENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | ProjectEntitlementUUID | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectEntitlementUUID | /s4ppm/entitlmnt | guid | |
| ProjectUUID | /s4ppm/entitlmnt | project_guid | ||
| ProjectRoleUUID | /s4ppm/entitlmnt | role_guid | ||
| TeamMemberUUID | /s4ppm/entitlmnt | team_member_guid | ||
| CreatedByUser | /s4ppm/entitlmnt | created_by | ||
| CreationDateTime | /s4ppm/entitlmnt | created_on | ||
| LastChangedByUser | /s4ppm/entitlmnt | changed_by | ||
| LastChangeDateTime | /s4ppm/entitlmnt | changed_on | ||
| _Project | _Project | |||
| _TeamMember | _TeamMember | |||
| _Role | _Role |
@VDM.viewType: #BASIC
@EndUserText.label: 'Enterprise Project Entitlement'
@AbapCatalog: {
sqlViewName: 'IENTPROJENT',
compiler.compareFilter: true,
preserveKey: true,
dataMaintenance: #RESTRICTED
}
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
// semanticKey: [ 'ProjectEntitlement' ], no semantic key, as this one has no real id at the moment
representativeKey: 'ProjectEntitlementUUID',
supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ],
usageType: {
serviceQuality: #B,
dataClass: #MASTER,
sizeCategory: #XL
}
}
@Metadata.ignorePropagatedAnnotations: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@Analytics.dataExtraction: {
enabled: true
}
@Analytics.dataExtraction.delta.changeDataCapture.automatic: true
define view I_EntProjectEntitlement
as select from /s4ppm/entitlmnt as entitlmnt
association [1..1] to I_EnterpriseProject as _Project on _Project.ProjectUUID = $projection.ProjectUUID
association [1..1] to I_EnterpriseProjectRole as _Role on _Role.ProjectRoleUUID = $projection.ProjectRoleUUID
association [1..1] to I_EnterpriseProjectTeamMember as _TeamMember on _TeamMember.TeamMemberUUID = $projection.TeamMemberUUID
{
key entitlmnt.guid as ProjectEntitlementUUID,
@ObjectModel.foreignKey.association: '_Project'
entitlmnt.project_guid as ProjectUUID,
@ObjectModel.foreignKey.association: '_Role'
entitlmnt.role_guid as ProjectRoleUUID,
@ObjectModel.foreignKey.association: '_TeamMember'
entitlmnt.team_member_guid as TeamMemberUUID,
@Semantics.user.createdBy: true
entitlmnt.created_by as CreatedByUser,
@Semantics.systemDateTime.createdAt: true
entitlmnt.created_on as CreationDateTime,
@Semantics.user.lastChangedBy: true
entitlmnt.changed_by as LastChangedByUser,
@Semantics.systemDateTime.lastChangedAt: true
entitlmnt.changed_on as LastChangeDateTime,
_Project,
_TeamMember,
_Role
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/S4PPM/ENTITLMNT"
],
"ASSOCIATED":
[
"I_ENTERPRISEPROJECT",
"I_ENTERPRISEPROJECTROLE",
"I_ENTERPRISEPROJECTTEAMMEMBER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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