I_MaterialStockReportStep

DDL: I_MATERIALSTOCKREPORTSTEP Type: view_entity BASIC Package: ODATA_MM_IM_STOCKOUTPUT

Material Strock Report Step

I_MaterialStockReportStep is a Basic CDS View that provides data about "Material Strock Report Step" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MaterialStockReportStep. It has 1 association to related views. Part of development package ODATA_MM_IM_STOCKOUTPUT.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MaterialStockReportStepT _MatDocItmSetStepT $projection.MaterialStockReportStep = _MatDocItmSetStepT.MaterialStockReportStep

Annotations (13)

NameValueLevelField
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey MaterialStockReportStep view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Strock Report Step view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #BASIC view
VDM.private false view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MaterialStockReportStep
_MatDocItmSetStepT _MatDocItmSetStepT

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_MaterialStockReportStep.
-- 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_MaterialStockReportStep AS
SELECT
  cast(substring(dd07l.domvalue_l, 1, 2) as matdocitmsetstep preserving type) AS MaterialStockReportStep
FROM dd07l
LEFT OUTER JOIN I_MaterialStockReportStepT AS _MatDocItmSetStepT ON MaterialStockReportStep = _MatDocItmSetStepT.MaterialStockReportStep  -- association [0..*]
;