I_MaterialOfSIT

DDL: I_MATERIALOFSIT Type: view_entity TRANSACTIONAL Package: ODATA_MM_IM_OVERDUE_GRBLOCKED

Value Help for Material

I_MaterialOfSIT is a Transactional CDS View that provides data about "Value Help for Material" in SAP S/4HANA. It has 1 association to related views. Part of development package ODATA_MM_IM_OVERDUE_GRBLOCKED.

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Product _Product $projection.Material = _Product.Product

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Value Help for Material view
ObjectModel.dataCategory #VALUE_HELP view
VDM.private false view
VDM.viewType #TRANSACTIONAL view
Search.searchable true view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY MaterialName Short Text
KEY MaterialGroup MaterialGroup Product Group
MaterialExternalID

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_MaterialOfSIT.
-- 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.

CREATE VIEW I_MaterialOfSIT AS
SELECT
  Material,
  cast(PurchasingDocumentItemText as maktx preserving type) AS MaterialName,
  MaterialGroup,
  cast(_Product.ProductExternalID as nsdm_mat_external preserving type ) AS MaterialExternalID
LEFT OUTER JOIN I_Product AS _Product ON Material = _Product.Product  -- association [0..1]
;