I_MaterialChId

DDL: I_MATERIALCHID SQL: ISDMATCHID Type: view BASIC

Material Chapter Id

I_MaterialChId is a Basic CDS View that provides data about "Material Chapter Id" in SAP S/4HANA. It reads from 1 data source (j_1imtchid) and exposes 4 fields with key fields Material, Plant.

Data Sources (1)

SourceAliasJoin Type
j_1imtchid j_1imtchid from

Annotations (9)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.sqlViewName ISDMATCHID view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Material Chapter Id view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material matnr Vehicle Model
KEY Plant werks Receiving Plant
ExciseChapterID j_1ichid Chapter ID
CreatedByUser usnam User Name

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_MaterialChId.
-- 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: ISDMATCHID

CREATE VIEW I_MaterialChId AS
SELECT
  matnr AS Material,
  werks AS Plant,
  j_1ichid AS ExciseChapterID,
  usnam AS CreatedByUser
FROM j_1imtchid
;