I_ProductionVersionGroup

DDL: I_PRODUCTIONVERSIONGROUP Type: view_entity BASIC Package: VDM_PP_MD_PRV

Production Version Group

I_ProductionVersionGroup is a Basic CDS View (Dimension) that provides data about "Production Version Group" in SAP S/4HANA. It reads from 1 data source (I_RepetitiveMfgPlanningGroup) and exposes 4 fields with key fields Plant, ProductionVersionGroup. Part of development package VDM_PP_MD_PRV.

Data Sources (1)

SourceAliasJoin Type
I_RepetitiveMfgPlanningGroup I_RepetitiveMfgPlanningGroup from

Annotations (14)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName IPPPRODVERSGRP view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ProductionVersionGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Production Version Group view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
KEY ProductionVersionGroup
ProductionVersionGroupDesc
_Plant _Plant
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.technicalName: 'IPPPRODVERSGRP'
@Analytics.internalName: #LOCAL
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ProductionVersionGroup'
@ObjectModel.semanticKey: ['Plant', 'ProductionVersionGroup']
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #MASTER}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Production Version Group'

define view entity I_ProductionVersionGroup
  as select from I_RepetitiveMfgPlanningGroup
{
      @ObjectModel.foreignKey.association: '_Plant'
  key Plant,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @ObjectModel.text.element: [ 'ProductionVersionGroupDesc']
  key cast(RepetitiveMfgPlanningGroup     as pph_mdv preserving type)       as ProductionVersionGroup,

      @Semantics.text: true
      cast(RepetitiveMfgPlanningGroupText as pph_plid_text preserving type) as ProductionVersionGroupDesc,

      // Associations

      _Plant
};