I_USFedProjectBasicDataVH
USFed Project Details
I_USFedProjectBasicDataVH is a Basic CDS View (Dimension) that provides data about "USFed Project Details" in SAP S/4HANA. It reads from 1 data source (I_ProjectBasicData) and exposes 6 fields with key field USFedProjectIdentifier. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ProjectBasicData | I_ProjectBasicData | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ControllingArea | _ControllingArea | $projection.ControllingArea = _ControllingArea.ControllingArea |
| [0..*] | I_ProfitCenter | _ProfitCenter2 | $projection.ControllingArea = _ProfitCenter2.ControllingArea and $projection.ProfitCenter = _ProfitCenter2.ProfitCenter |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| Metadata.allowExtensions | true | view | |
| EndUserText.label | USFed Project Details | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | USFedProjectIdentifier | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Analytics.internalName | #LOCAL | view | |
| Analytics.dataCategory | #DIMENSION | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | USFedProjectIdentifier | ProjectExternalID | ||
| ProjectDescription | ProjectDescription | |||
| ControllingArea | ControllingArea | |||
| ProfitCenter | ProfitCenter | |||
| _ControllingArea | _ControllingArea | |||
| _ProfitCenter2 | _ProfitCenter2 |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@Metadata.allowExtensions: true
@EndUserText.label: 'USFed Project Details'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #L,
dataClass: #MASTER
}
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'USFedProjectIdentifier'
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.supportedCapabilities: [ #VALUE_HELP_PROVIDER, #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@Search.searchable: true
@Consumption.ranked: true
@Analytics.internalName: #LOCAL
@Analytics.dataCategory: #DIMENSION
define view entity I_USFedProjectBasicDataVH
as select from I_ProjectBasicData
association [0..1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
association [0..*] to I_ProfitCenter as _ProfitCenter2 on $projection.ControllingArea = _ProfitCenter2.ControllingArea
and $projection.ProfitCenter = _ProfitCenter2.ProfitCenter
{
@ObjectModel.text.element: [ 'ProjectDescription' ]
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
key ProjectExternalID as USFedProjectIdentifier,
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #MEDIUM
}
@Semantics.text: true
ProjectDescription as ProjectDescription,
ControllingArea,
ProfitCenter,
// Assoc
_ControllingArea,
_ProfitCenter2
}
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