C_AdditionalProductGroup1Text

DDL: C_ADDITIONALPRODUCTGROUP1TEXT Type: view CONSUMPTION Package: VDM_MD_PRODUCT

Text View of C_AdditionalProductGroup1VH

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

Data Sources (1)

SourceAliasJoin Type
I_AdditionalMaterialGroup1Text I_AdditionalMaterialGroup1Text from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_AdditionalProductGroup1VH _FirstSalesSpecProductGroup $projection.FirstSalesSpecProductGroup = _FirstSalesSpecProductGroup.FirstSalesSpecProductGroup

Annotations (13)

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

Fields (5)

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

define view C_AdditionalProductGroup1Text
  as select from I_AdditionalMaterialGroup1Text

  association [1..1] to C_AdditionalProductGroup1VH as _FirstSalesSpecProductGroup on $projection.FirstSalesSpecProductGroup = _FirstSalesSpecProductGroup.FirstSalesSpecProductGroup

{
      @ObjectModel.foreignKey.association: '_FirstSalesSpecProductGroup'
      @Search: {
         defaultSearchElement: true,
         fuzzinessThreshold: 0.8,
         ranking: #LOW
      }
  key cast ( AdditionalMaterialGroup1 as firstsalesspecproductgroup preserving type ) as FirstSalesSpecProductGroup,
      @Semantics.language: true
  key Language,
      @Search: {
         defaultSearchElement: true,
         fuzzinessThreshold: 0.8,
         ranking: #LOW
      }
      @Semantics.text: true
      AdditionalMaterialGroup1Name,

      //Associations

      _Language,
      _FirstSalesSpecProductGroup


}