C_AdditionalProductGroup4Text

DDL: C_ADDITIONALPRODUCTGROUP4TEXT Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Text View of C_AdditionalProductGroup4VH

C_AdditionalProductGroup4Text is a Consumption CDS View that provides data about "Text View of C_AdditionalProductGroup4VH" in SAP S/4HANA. It reads from 1 data source (I_AdditionalMaterialGroup4Text) and exposes 5 fields with key fields FourthSalesSpecProductGroup, Language. It has 1 association to related views. Part of development package VDM_MD_PRODUCT.

Data Sources (1)

SourceAliasJoin Type
I_AdditionalMaterialGroup4Text I_AdditionalMaterialGroup4Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AdditionalProductGroup4VH _FourthSalesSpecProductGroup $projection.FourthSalesSpecProductGroup = _FourthSalesSpecProductGroup.FourthSalesSpecProductGroup

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CADLPRDGRP4TXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text View of C_AdditionalProductGroup4VH view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey FourthSalesSpecProductGroup view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
VDM.viewType #CONSUMPTION view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY FourthSalesSpecProductGroup
KEY Language Language
AdditionalMaterialGroup4Name AdditionalMaterialGroup4Name
_Language _Language
_FourthSalesSpecProductGroup _FourthSalesSpecProductGroup
@AbapCatalog: {
  sqlViewName: 'CADLPRDGRP4TXT',
  compiler.compareFilter: true,
  preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text View of C_AdditionalProductGroup4VH'
@ObjectModel: {
  usageType:{
    dataClass: #CUSTOMIZING,
    serviceQuality: #A,
    sizeCategory: #S
  },
  representativeKey: 'FourthSalesSpecProductGroup',
  dataCategory: #TEXT
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType: #CONSUMPTION

define view C_AdditionalProductGroup4Text
  as select from I_AdditionalMaterialGroup4Text

  association [1..1] to C_AdditionalProductGroup4VH as _FourthSalesSpecProductGroup on $projection.FourthSalesSpecProductGroup = _FourthSalesSpecProductGroup.FourthSalesSpecProductGroup

{
      @Search: {
         defaultSearchElement: true,
         fuzzinessThreshold: 0.8,
         ranking: #LOW
      }
      @ObjectModel.foreignKey.association: '_FourthSalesSpecProductGroup'
  key cast(AdditionalMaterialGroup4 as fourthsalesspecproductgroup preserving type ) as FourthSalesSpecProductGroup,
      @Semantics.language: true
  key Language,
      @Search: {
         defaultSearchElement: true,
         fuzzinessThreshold: 0.8,
         ranking: #LOW
      }
      @Semantics.text: true
      AdditionalMaterialGroup4Name,
      //associations

      _Language,
      _FourthSalesSpecProductGroup
}