A_DigitalVehicleProduct

DDL: A_DIGITALVEHICLEPRODUCT Type: view_entity CONSUMPTION Package: ISAUTO_VLC_LEAN

Digital Vehicle Product

A_DigitalVehicleProduct is a Consumption CDS View that provides data about "Digital Vehicle Product" in SAP S/4HANA. It reads from 1 data source (I_DigitalVehicleProduct) and exposes 9 fields with key fields Material, Plant. It is exposed through 1 OData service (API_DIGITALVEHICLEORGDATA). Part of development package ISAUTO_VLC_LEAN.

Data Sources (1)

SourceAliasJoin Type
I_DigitalVehicleProduct I_DigitalVehicleProduct from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Digital Vehicle Product view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #CONSUMPTION view
OData.entityType.name DigitalVehicleProduct_Type view

OData Services (1)

ServiceBindingVersionContractRelease
API_DIGITALVEHICLEORGDATA API_DIGITALVEHICLEORGDATA V4 C2 C1

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
MaterialName MaterialName Material Description
PlantName PlantName Plant Name
ProductGroupText ProductGroupText
MaterialType MaterialType Material Type
MaterialTypeName MaterialTypeName Mat.Type Desc.
UnitOfMeasure UnitOfMeasure Unit Protected Qty
UnitOfMeasureText UnitOfMeasureText Extracted Unit of Measure

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 A_DigitalVehicleProduct.
-- 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 A_DigitalVehicleProduct AS
SELECT
  Material,
  Plant,
  MaterialName,
  PlantName,
  ProductGroupText,
  MaterialType,
  MaterialTypeName,
  UnitOfMeasure,
  UnitOfMeasureText
FROM I_DigitalVehicleProduct
;