I_ExtProdGrp

DDL: I_EXTPRODGRP Type: view BASIC Package: VDM_MD_PRODUCT_DDIC

External Product Group

I_ExtProdGrp is a Basic CDS View (Dimension) that provides data about "External Product Group" in SAP S/4HANA. It reads from 1 data source (twew) and exposes 2 fields with key field ExternalProductGroup. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (1)

SourceAliasJoin Type
twew twew from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ExtProdGrpText _Text $projection.ExternalProductGroup = _Text.ExternalProductGroup

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IEXTPRODGRP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label External Product Group view
ObjectModel.representativeKey ExternalProductGroup view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
Consumption.ranked true view
ObjectModel.sapObjectNodeType.name ExternalProductGroup view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ExternalProductGroup
_Text _Text
@AbapCatalog: {
  sqlViewName: 'IEXTPRODGRP',
  preserveKey: true,
  compiler.compareFilter: true,
  buffering: {
    status: #ACTIVE,
    type: #FULL
  }
 }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'External Product Group'
@ObjectModel:{
  representativeKey: 'ExternalProductGroup',
  dataCategory: #VALUE_HELP,
  supportedCapabilities: [ #SQL_DATA_SOURCE,
                           #CDS_MODELING_DATA_SOURCE,
                           #CDS_MODELING_ASSOCIATION_TARGET,
                           #SEARCHABLE_ENTITY,
                           #VALUE_HELP_PROVIDER,
                           #ANALYTICAL_DIMENSION,
                           #EXTRACTION_DATA_SOURCE
  ],
  usageType:{
    serviceQuality: #A,
    sizeCategory : #S,
    dataClass: #CUSTOMIZING
  }
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations:true

@Analytics:{
    dataCategory: #DIMENSION,
    dataExtraction: {
        enabled: true,
        delta.changeDataCapture.automatic: true
    }
}
@Consumption.ranked: true
@ObjectModel.sapObjectNodeType.name:'ExternalProductGroup'
define view I_ExtProdGrp
  as select from twew
  association [0..*] to I_ExtProdGrpText as _Text on $projection.ExternalProductGroup = _Text.ExternalProductGroup
{

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @ObjectModel.text.association: '_Text'
  key cast(extwg as externalproductgroup preserving type ) as ExternalProductGroup,

      _Text
}