I_ProjectDemandStatus
Project Demand Status
I_ProjectDemandStatus is a Basic CDS View (Dimension) that provides data about "Project Demand Status" in SAP S/4HANA. It reads from 1 data source (dmnd_proj_status) and exposes 2 fields with key field ProjectDemandStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dmnd_proj_status | value | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProjectDemandStatusText | _Text | |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.dataMaintenance | #RESTRICTED | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | IPRJDMNDSTATUS | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | ProjectDemandStatus | view | |
| ObjectModel.sapObjectNodeType.name | ProjectDemandStatus | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Project Demand Status | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProjectDemandStatus | status | ||
| _Text | _Text |
@Analytics: {
dataCategory: #DIMENSION,
internalName: #LOCAL
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AbapCatalog: {
compiler.compareFilter: true,
dataMaintenance: #RESTRICTED,
preserveKey: true,
sqlViewName: 'IPRJDMNDSTATUS'
}
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ObjectModel: {
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #ANALYTICAL_DIMENSION ],
semanticKey: [ 'ProjectDemandStatus' ],
representativeKey: 'ProjectDemandStatus',
sapObjectNodeType.name: 'ProjectDemandStatus',
usageType: {
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S
},
resultSet.sizeCategory: #XS
}
@ClientHandling: { algorithm: #SESSION_VARIABLE }
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Project Demand Status'
define root view I_ProjectDemandStatus
as select from dmnd_proj_status as value
composition [0..*] of I_ProjectDemandStatusText as _Text
{
@ObjectModel.text.association: '_Text'
key status as ProjectDemandStatus,
_Text
}; // where status <> '00100' ; // Filtered on release 2008
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