I_MatOfGRBlockStock_VH

DDL: I_MATOFGRBLOCKSTOCK_VH Type: view_entity TRANSACTIONAL Package: ODATA_MM_IM_OVERDUE_GRBLOCKED

Value Help for Material of GR Blocked Stock

I_MatOfGRBlockStock_VH is a Transactional CDS View that provides data about "Value Help for Material of GR Blocked Stock" 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 (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
EndUserText.label Value Help for Material of GR Blocked Stock view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.contract.type #SAP_INTERNAL_API 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 MaterialName Material Description
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_MatOfGRBlockStock_VH.
-- 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_MatOfGRBlockStock_VH AS
SELECT
  Material,
  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]
;