I_MatlStkCsgnmtOutpMgmtParam

DDL: I_MATLSTKCSGNMTOUTPMGMTPARAM Type: view_entity BASIC Package: ODATA_MM_IM_STOCKOUTPUT

Material Stock Details OM Parameter

I_MatlStkCsgnmtOutpMgmtParam is a Basic CDS View that provides data about "Material Stock Details OM Parameter" in SAP S/4HANA. It reads from 1 data source (I_MatlStockReportConsignment) and exposes 9 fields with key field MaterialStockReportUUID. It has 1 association to related views. Part of development package ODATA_MM_IM_STOCKOUTPUT.

Data Sources (1)

SourceAliasJoin Type
I_MatlStockReportConsignment _Report from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_MatlStkSubscrpnConsignment _Subscription _Report.MaterialStockSubscriptionUUID = _Subscription.MaterialStockSubscriptionUUID and _Report.MaterialStockSubscriptionItem = _Subscription.MaterialStockSubscriptionItem

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Stock Details OM Parameter view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY MaterialStockReportUUID MaterialStockReportUUID Stock Report ID
CompanyCode _Subscription CompanyCode Receiver Company Code
Plant _Subscription Plant Valuation Area
Supplier _Subscription Supplier Supplier
MatlStkRptCollectionFrequency
MatlStkRptHasOnlyNewMovements
EmptyMatlStkReportsAreSent _Subscription EmptyMatlStkReportsAreSent Send Empty Reports
StorageLocation StorageLocation StorageLocation
Material Material Vehicle Model

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_MatlStkCsgnmtOutpMgmtParam.
-- 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_MatlStkCsgnmtOutpMgmtParam AS
SELECT
  MaterialStockReportUUID,
  _Subscription.CompanyCode AS CompanyCode,
  _Subscription.Plant AS Plant,
  _Subscription.Supplier AS Supplier,
  _Subscription._Procedure.MatlStkRptCollectionFrequency AS MatlStkRptCollectionFrequency,
  _Subscription._Procedure.MatlStkRptHasOnlyNewMovements AS MatlStkRptHasOnlyNewMovements,
  _Subscription.EmptyMatlStkReportsAreSent AS EmptyMatlStkReportsAreSent,
  StorageLocation,
  Material
FROM I_MatlStockReportConsignment AS _Report
LEFT OUTER JOIN I_MatlStkSubscrpnConsignment AS _Subscription ON _Report.MaterialStockSubscriptionUUID = _Subscription.MaterialStockSubscriptionUUID AND _Report.MaterialStockSubscriptionItem = _Subscription.MaterialStockSubscriptionItem  -- association [0..1]
;