I_MaterialStdVH

DDL: I_MATERIALSTDVH SQL: IM__VH Type: view COMPOSITE

Material

I_MaterialStdVH is a Composite CDS View that provides data about "Material" in SAP S/4HANA. It reads from 1 data source (I_Material) and exposes 7 fields with key field Material.

Data Sources (1)

SourceAliasJoin Type
I_Material I_Material from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IM__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Material view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Material view
Consumption.ranked true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
_Text _Text
MaterialGroup MaterialGroup Product Group
MaterialType MaterialType Material Type
AuthorizationGroup AuthorizationGroup AuthorizGroup
_MaterialGroup _MaterialGroup
_MaterialType _MaterialType

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_MaterialStdVH.
-- 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: IM__VH

CREATE VIEW I_MaterialStdVH AS
SELECT
  Material,
  MaterialGroup,
  MaterialType,
  AuthorizationGroup
FROM I_Material
;