I_ProductionVersionGroup

DDL: I_PRODUCTIONVERSIONGROUP SQL: IPPPRODVERSGRP Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
I_RepetitiveMfgPlanningGroup I_RepetitiveMfgPlanningGroup from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPPPRODVERSGRP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE 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
@AbapCatalog.sqlViewName: 'IPPPRODVERSGRP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true 
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@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 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
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_REPETITIVEMFGPLANNINGGROUP"
],
"ASSOCIATED":
[
"I_PLANT"
],
"BASE":
[
"I_REPETITIVEMFGPLANNINGGROUP"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/