/dmbe/i_MaterialBasic

DDL: /DMBE/I_MATERIALBASIC SQL: /DMBE/IMATBASE Type: view

Material Basic View

/dmbe/i_MaterialBasic is a CDS View that provides data about "Material Basic View" in SAP S/4HANA. It reads from 1 data source (mara) and exposes 3 fields with key field material.

Data Sources (1)

SourceAliasJoin Type
mara mara from

Annotations (9)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName /DMBE/IMATBASE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
Search.searchable false view
EndUserText.label Material Basic View view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY material matnr Vehicle Model
wrkst wrkst Basic Material
lvorm lvorm Stock del. flag

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 /dmbe/i_MaterialBasic.
-- 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: /DMBE/IMATBASE

CREATE VIEW /dmbe/i_MaterialBasic AS
SELECT
  matnr AS material,
  wrkst,
  lvorm
FROM mara
;