I_ProductionVersionStdVH

DDL: I_PRODUCTIONVERSIONSTDVH SQL: IPV__VH Type: view COMPOSITE

Production Version

I_ProductionVersionStdVH is a Composite CDS View that provides data about "Production Version" in SAP S/4HANA. It reads from 1 data source (I_ProductionVersion) and exposes 8 fields with key fields Material, Plant, ProductionVersion.

Data Sources (1)

SourceAliasJoin Type
I_ProductionVersion I_ProductionVersion from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPV__VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ProductionVersion view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Production Version view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material Material
KEY Plant Plant
KEY ProductionVersion ProductionVersion
ProductionVersionText ProductionVersionText
ValidityEndDate ValidityEndDate
ValidityStartDate ValidityStartDate
_Material _Material
_Plant _Plant
//GENERATED:003:E6ExH29r7kU{rc1Uxl{1wW

@AbapCatalog.sqlViewName: 'IPV__VH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true 

@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'ProductionVersion'
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER

@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@Search.searchable: true
@Consumption.ranked: true

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Production Version'
define view I_ProductionVersionStdVH as select from I_ProductionVersion {
  @Consumption.valueHelpDefinition: [ { entity: { name: 'I_MaterialStdVH', element: 'Material' } } ]
  @ObjectModel.foreignKey.association: '_Material'
  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.8
  key Material,
  @ObjectModel.foreignKey.association: '_Plant'
  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.8
  key Plant,
  @ObjectModel.text.element: ['ProductionVersionText']
  @Search.defaultSearchElement: true
  @Search.ranking: #HIGH
  @Search.fuzzinessThreshold: 0.8
  key ProductionVersion,

  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.8
  @Semantics.text: true
  ProductionVersionText,
  @Semantics.businessDate.to: true
  ValidityEndDate,
  @Semantics.businessDate.from: true
  ValidityStartDate,

  @Consumption.hidden: true
  _Material,
  @Consumption.hidden: true
  _Plant
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCTIONVERSION"
],
"ASSOCIATED":
[
"I_MATERIAL",
"I_PLANT"
],
"BASE":
[
"I_PRODUCTIONVERSION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/