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 Vehicle Model
KEY Plant Plant Valuation Area
KEY ProductionVersion ProductionVersion Version ID
ProductionVersionText ProductionVersionText Vertikalization Text
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
_Material _Material
_Plant _Plant

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_ProductionVersionStdVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IPV__VH

CREATE VIEW I_ProductionVersionStdVH AS
SELECT
  Material,
  Plant,
  ProductionVersion,
  ProductionVersionText,
  ValidityEndDate,
  ValidityStartDate
FROM I_ProductionVersion
;