I_FlxMtPlObjRstrcdQtyInfoByBat

DDL: I_FLXMTPLOBJRSTRCDQTYINFOBYBAT Type: view_entity COMPOSITE

Restricted Qty Info for FMPO by batch

I_FlxMtPlObjRstrcdQtyInfoByBat is a Composite CDS View that provides data about "Restricted Qty Info for FMPO by batch" in SAP S/4HANA. It reads from 2 data sources (I_DFS_RestrictedStockByBatch, I_FlxMtPlObjModLogsInformation) and exposes 8 fields with key fields Material, Plant, StorageLocation, WBSElementInternalID, Batch.

Data Sources (2)

SourceAliasJoin Type
I_DFS_RestrictedStockByBatch _DFS_RestrictedStockByBatch inner
I_FlxMtPlObjModLogsInformation _FlxMtPlObjModLogsInformation from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Restricted Qty Info for FMPO by batch view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY Material I_DFS_RestrictedStockByBatch Material Vehicle Model
KEY Plant I_DFS_RestrictedStockByBatch Plant Valuation Area
KEY StorageLocation I_DFS_RestrictedStockByBatch StorageLocation StorageLocation
KEY WBSElementInternalID I_DFS_RestrictedStockByBatch WBSElementInternalID WBS Internal ID
KEY Batch I_DFS_RestrictedStockByBatch Batch Lot No.
KEY FlxblMatlPlngObjectUUID I_FlxMtPlObjModLogsInformation FlxblMatlPlngObjectUUID FMPO UUID
MaterialBaseUnit I_DFS_RestrictedStockByBatch MaterialBaseUnit Valuation Unit
MatlWrhsStkQtyInMatlBaseUnit

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_FlxMtPlObjRstrcdQtyInfoByBat.
-- 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_FlxMtPlObjRstrcdQtyInfoByBat AS
SELECT
  _DFS_RestrictedStockByBatch.Material AS Material,
  _DFS_RestrictedStockByBatch.Plant AS Plant,
  _DFS_RestrictedStockByBatch.StorageLocation AS StorageLocation,
  _DFS_RestrictedStockByBatch.WBSElementInternalID AS WBSElementInternalID,
  _DFS_RestrictedStockByBatch.Batch AS Batch,
  _FlxMtPlObjModLogsInformation.FlxblMatlPlngObjectUUID AS FlxblMatlPlngObjectUUID,
  _DFS_RestrictedStockByBatch.MaterialBaseUnit AS MaterialBaseUnit,
  sum( _DFS_RestrictedStockByBatch.MatlWrhsStkQtyInMatlBaseUnit ) AS MatlWrhsStkQtyInMatlBaseUnit
FROM I_FlxMtPlObjModLogsInformation AS _FlxMtPlObjModLogsInformation
INNER JOIN I_DFS_RestrictedStockByBatch AS _DFS_RestrictedStockByBatch ON /* join condition not captured in parsed metadata */
;