I_MaterialValueHelp

DDL: I_MATERIALVALUEHELP SQL: IMATLHLP Type: view BASIC

Material value help

I_MaterialValueHelp is a Basic CDS View that provides data about "Material value help" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key fields Plant, Material.

Data Sources (1)

SourceAliasJoin Type
makt b left_outer

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMATLHLP view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Material value help view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Plant werks Receiving Plant
KEY Material a matnr Vehicle Model
MaterialName makt maktx Product Description

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_MaterialValueHelp.
-- 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: IMATLHLP

CREATE VIEW I_MaterialValueHelp AS
SELECT
  werks AS Plant,
  a.matnr AS Material,
  b.maktx AS MaterialName
LEFT OUTER JOIN makt AS b ON /* join condition not captured in parsed metadata */
;