I_FlxMtPlObjRstrcdQtyInfo

DDL: I_FLXMTPLOBJRSTRCDQTYINFO Type: view_entity COMPOSITE

Restricted Quantity Info for FMPO

I_FlxMtPlObjRstrcdQtyInfo is a Composite CDS View that provides data about "Restricted Quantity Info for FMPO" in SAP S/4HANA. It reads from 2 data sources (I_DFS_RestrictedStock, I_FlxMtPlObjModLogsInformation) and exposes 10 fields with key fields Material, Plant, StorageLocation, WBSElementInternalID, FlxblMatlPlngObjectUUID.

Data Sources (2)

SourceAliasJoin Type
I_DFS_RestrictedStock _DFS_RestrictedStock inner
I_FlxMtPlObjModLogsInformation _FlxMtPlObjModLogsInformation from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Restricted Quantity Info for FMPO 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 (10)

KeyFieldSource TableSource FieldDescription
KEY Material I_DFS_RestrictedStock Material Vehicle Model
KEY Plant I_DFS_RestrictedStock Plant Valuation Area
KEY StorageLocation I_DFS_RestrictedStock StorageLocation StorageLocation
KEY WBSElementInternalID I_DFS_RestrictedStock WBSElementInternalID WBS Internal ID
KEY FlxblMatlPlngObjectUUID I_FlxMtPlObjModLogsInformation FlxblMatlPlngObjectUUID FMPO UUID
MaterialBaseUnit I_DFS_RestrictedStock MaterialBaseUnit Valuation Unit
MatlWrhsStkQtyInMatlBaseUnit
_Material I_DFS_RestrictedStock _Material
_Plant I_DFS_RestrictedStock _Plant
_StorageLocation I_DFS_RestrictedStock _StorageLocation

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_FlxMtPlObjRstrcdQtyInfo.
-- 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_FlxMtPlObjRstrcdQtyInfo AS
SELECT
  _DFS_RestrictedStock.Material AS Material,
  _DFS_RestrictedStock.Plant AS Plant,
  _DFS_RestrictedStock.StorageLocation AS StorageLocation,
  _DFS_RestrictedStock.WBSElementInternalID AS WBSElementInternalID,
  _FlxMtPlObjModLogsInformation.FlxblMatlPlngObjectUUID AS FlxblMatlPlngObjectUUID,
  _DFS_RestrictedStock.MaterialBaseUnit AS MaterialBaseUnit,
  sum( _DFS_RestrictedStock.MatlWrhsStkQtyInMatlBaseUnit ) AS MatlWrhsStkQtyInMatlBaseUnit,
  _DFS_RestrictedStock._Material AS _Material,
  _DFS_RestrictedStock._Plant AS _Plant,
  _DFS_RestrictedStock._StorageLocation AS _StorageLocation
FROM I_FlxMtPlObjModLogsInformation AS _FlxMtPlObjModLogsInformation
INNER JOIN I_DFS_RestrictedStock AS _DFS_RestrictedStock ON /* join condition not captured in parsed metadata */
;