I_WorkCenterHierarchyHeaderTxt

DDL: I_WORKCENTERHIERARCHYHEADERTXT Type: view_entity BASIC Package: VDM_PP_WORKCENTER_GROUP

Work Center Hierarchy Header - Text

I_WorkCenterHierarchyHeaderTxt is a Basic CDS View that provides data about "Work Center Hierarchy Header - Text" in SAP S/4HANA. It reads from 1 data source (I_ProductionResourceText) and exposes 6 fields with key fields ProductionResourceType, ProductionResourceInternalID, Language. It has 2 associations to related views. Part of development package VDM_PP_WORKCENTER_GROUP.

Data Sources (1)

SourceAliasJoin Type
I_ProductionResourceText text from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ProductionResourceType _ProductionResourceType $projection.ProductionResourceType = _ProductionResourceType.ProductionResourceType
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ProductionResourceInternalID view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IWCHIERHDRTXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Work Center Hierarchy Header - Text view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Analytics.internalName #LOCAL view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name WorkCenterGroupText view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProductionResourceType ProductionResourceType
KEY ProductionResourceInternalID ProductionResourceInternalID
KEY Language Language
ProductionResourceText ProductionResourceText
_ProductionResourceType _ProductionResourceType
_Language _Language
@AccessControl.authorizationCheck: #MANDATORY
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.representativeKey: 'ProductionResourceInternalID'
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IWCHIERHDRTXT'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER}
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Work Center Hierarchy Header - Text'
@Analytics: {
    dataExtraction: {
       enabled: true,
       delta.changeDataCapture: {
       automatic : true
       }
     },
internalName: #LOCAL
}
@ObjectModel.supportedCapabilities:[#EXTRACTION_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT,#CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.sapObjectNodeType.name: 'WorkCenterGroupText'
define view entity I_WorkCenterHierarchyHeaderTxt
  as select from I_ProductionResourceText as text
  association [1..1] to I_ProductionResourceType as _ProductionResourceType on $projection.ProductionResourceType = _ProductionResourceType.ProductionResourceType
  association [1..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ProductionResourceType'
  key ProductionResourceType,
  key ProductionResourceInternalID,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key Language,

      // Text

      @Semantics.text: true
      ProductionResourceText,

      // Associations

      _ProductionResourceType,
      _Language
}