I_FlxMtPlObjStkQtyInfoByBat

DDL: I_FLXMTPLOBJSTKQTYINFOBYBAT Type: view_entity COMPOSITE

Stock Quantity Info for FMPO by Batch

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

Data Sources (2)

SourceAliasJoin Type
I_DFS_UnrstrcdAndProjStkByBat _DFS_UnrstrcdAndProjStkByBat inner
I_FlxMtPlObjModLogsInformation _FlxMtPlObjModLogsInformation from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Stock 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 (7)

KeyFieldSource TableSource FieldDescription
KEY Plant I_DFS_UnrstrcdAndProjStkByBat Plant Valuation Area
KEY StorageLocation I_DFS_UnrstrcdAndProjStkByBat StorageLocation StorageLocation
KEY WBSElementInternalID I_DFS_UnrstrcdAndProjStkByBat WBSElementInternalID WBS Internal ID
KEY FlxblMatlPlngObjectUUID I_FlxMtPlObjModLogsInformation FlxblMatlPlngObjectUUID FMPO UUID
KEY Material I_DFS_UnrstrcdAndProjStkByBat Material Vehicle Model
KEY Batch I_DFS_UnrstrcdAndProjStkByBat Batch Lot No.
ActualFlxMtPlObjVarAvailVal

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_FlxMtPlObjStkQtyInfoByBat.
-- 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_FlxMtPlObjStkQtyInfoByBat AS
SELECT
  _DFS_UnrstrcdAndProjStkByBat.Plant AS Plant,
  _DFS_UnrstrcdAndProjStkByBat.StorageLocation AS StorageLocation,
  _DFS_UnrstrcdAndProjStkByBat.WBSElementInternalID AS WBSElementInternalID,
  _FlxMtPlObjModLogsInformation.FlxblMatlPlngObjectUUID AS FlxblMatlPlngObjectUUID,
  _DFS_UnrstrcdAndProjStkByBat.Material AS Material,
  _DFS_UnrstrcdAndProjStkByBat.Batch AS Batch,
  cast ( _DFS_UnrstrcdAndProjStkByBat.MatlWrhsStkQtyInMatlBaseUnit as abap.int8 ) AS ActualFlxMtPlObjVarAvailVal
FROM I_FlxMtPlObjModLogsInformation AS _FlxMtPlObjModLogsInformation
INNER JOIN I_DFS_UnrstrcdAndProjStkByBat AS _DFS_UnrstrcdAndProjStkByBat ON /* join condition not captured in parsed metadata */
;