I_Hdmatlist

DDL: I_HDMATLIST SQL: IHDMATLIST Type: view BASIC

Hardware Material Value Help

I_Hdmatlist is a Basic CDS View that provides data about "Hardware Material Value Help" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SwText _SwText _Mara.EmbeddedSwHardwareMaterial = _SwText.Material and _SwText.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IHDMATLIST view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Hardware Material Value Help view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey EmbeddedSwHardwareMaterial view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY EmbeddedSwHardwareMaterial _Mara EmbeddedSwHardwareMaterial
KEY DocNumber _Mara DocNumber Document Number
KEY DocumentPart _Mara DocumentPart Document Part
KEY DocumentType _Mara DocumentType Order Type
KEY DocumentVersion _Mara DocumentVersion Docu. Version
EmbeddedSwHardwareMaterialDesc _SwText MaterialName Material Description
_SwText _SwText
AuthorizationGroup _Mara AuthorizationGroup AuthorizGroup

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_Hdmatlist.
-- 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: IHDMATLIST

CREATE VIEW I_Hdmatlist AS
SELECT
  _Mara.EmbeddedSwHardwareMaterial AS EmbeddedSwHardwareMaterial,
  _Mara.DocNumber AS DocNumber,
  _Mara.DocumentPart AS DocumentPart,
  _Mara.DocumentType AS DocumentType,
  _Mara.DocumentVersion AS DocumentVersion,
  _SwText.MaterialName AS EmbeddedSwHardwareMaterialDesc,
  _Mara.AuthorizationGroup AS AuthorizationGroup
LEFT OUTER JOIN I_SwText AS _SwText ON _Mara.EmbeddedSwHardwareMaterial = _SwText.Material AND _SwText.Language = $session.system_language  -- association [0..1]
;