I_VisualProductIdVH

DDL: I_VISUALPRODUCTIDVH SQL: IVISUPRODID Type: view BASIC

Visual Product id

I_VisualProductIdVH is a Basic CDS View that provides data about "Visual Product id" in SAP S/4HANA. It reads from 2 data sources (mara, makt) and exposes 3 fields with key field ProductID.

Data Sources (2)

SourceAliasJoin Type
mara a from
makt b left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IVISUPRODID view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Visual Product id view
ObjectModel.dataCategory #VALUE_HELP view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProductID mara matnr Vehicle Model
ProductDescription makt maktx Product Description
ProductHierarchy mara prdha Prod.Hierarchy

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_VisualProductIdVH.
-- 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: IVISUPRODID

CREATE VIEW I_VisualProductIdVH AS
SELECT
  a.matnr AS ProductID,
  b.maktx AS ProductDescription,
  a.prdha AS ProductHierarchy
FROM mara AS a
LEFT OUTER JOIN makt AS b ON /* join condition not captured in parsed metadata */
;