I_FlxMtPlObjBlkdQtyInfoByBatch

DDL: I_FLXMTPLOBJBLKDQTYINFOBYBATCH Type: view_entity COMPOSITE

Blocked Quantity Info for FMPO by batch

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

Data Sources (2)

SourceAliasJoin Type
I_DFS_BlockedStockByBatch _DFS_BlockedStockByBatch inner
I_FlxMtPlObjModLogsInformation _FlxMtPlObjModLogsInformation from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Blocked Quantity 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_BlockedStockByBatch Material Vehicle Model
KEY Plant I_DFS_BlockedStockByBatch Plant Valuation Area
KEY StorageLocation I_DFS_BlockedStockByBatch StorageLocation StorageLocation
KEY WBSElementInternalID I_DFS_BlockedStockByBatch WBSElementInternalID WBS Internal ID
KEY Batch I_DFS_BlockedStockByBatch Batch Lot No.
KEY FlxblMatlPlngObjectUUID I_FlxMtPlObjModLogsInformation FlxblMatlPlngObjectUUID FMPO UUID
MaterialBaseUnit I_DFS_BlockedStockByBatch 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_FlxMtPlObjBlkdQtyInfoByBatch.
-- 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_FlxMtPlObjBlkdQtyInfoByBatch AS
SELECT
  _DFS_BlockedStockByBatch.Material AS Material,
  _DFS_BlockedStockByBatch.Plant AS Plant,
  _DFS_BlockedStockByBatch.StorageLocation AS StorageLocation,
  _DFS_BlockedStockByBatch.WBSElementInternalID AS WBSElementInternalID,
  _DFS_BlockedStockByBatch.Batch AS Batch,
  _FlxMtPlObjModLogsInformation.FlxblMatlPlngObjectUUID AS FlxblMatlPlngObjectUUID,
  _DFS_BlockedStockByBatch.MaterialBaseUnit AS MaterialBaseUnit,
  sum( _DFS_BlockedStockByBatch.MatlWrhsStkQtyInMatlBaseUnit ) AS MatlWrhsStkQtyInMatlBaseUnit
FROM I_FlxMtPlObjModLogsInformation AS _FlxMtPlObjModLogsInformation
INNER JOIN I_DFS_BlockedStockByBatch AS _DFS_BlockedStockByBatch ON /* join condition not captured in parsed metadata */
;