I_USFedProjectBasicDataVH

DDL: I_USFEDPROJECTBASICDATAVH Type: view_entity BASIC

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)

SourceAliasJoin Type
I_ProjectBasicData I_ProjectBasicData from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..*] I_ProfitCenter _ProfitCenter2 $projection.ControllingArea = _ProfitCenter2.ControllingArea and $projection.ProfitCenter = _ProfitCenter2.ProfitCenter

Annotations (15)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}