I_ProductionVersionGroup
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)
| Source | Alias | Join Type |
|---|---|---|
| I_RepetitiveMfgPlanningGroup | I_RepetitiveMfgPlanningGroup | from |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA