I_VMSVehicleModelVariantVH

DDL: I_VMSVEHICLEMODELVARIANTVH Type: view_entity COMPOSITE

VMSVehicle Model Variant Search Help

I_VMSVehicleModelVariantVH is a Composite CDS View that provides data about "VMSVehicle Model Variant Search Help" in SAP S/4HANA. It reads from 1 data source (I_Product) and exposes 4 fields with key field VMSVehicleModelVariant.

Data Sources (1)

SourceAliasJoin Type
I_Product I_Product from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label VMSVehicle Model Variant Search Help view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey VMSVehicleModelVariant view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY VMSVehicleModelVariant Product Sold
ProductDescription
Product Cross-plant CP
ProductConfiguration ProductConfiguration Int. object no.

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_VMSVehicleModelVariantVH.
-- 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.

CREATE VIEW I_VMSVehicleModelVariantVH AS
SELECT
  cast ( Product as vlc_model_variant preserving type ) AS VMSVehicleModelVariant,
  _MaterialText[1: Language=$session.system_language].ProductDescription AS ProductDescription,
  cast ( CrossPlantConfigurableProduct as vlc_matnr preserving type ) AS Product,
  ProductConfiguration
FROM I_Product
;