P_SrlNmbrStockDiffMatlStock

DDL: P_SRLNMBRSTOCKDIFFMATLSTOCK Type: view_entity COMPOSITE Package: ODATA_LO_SN_STOCK_QUANTITIES

Material Stock Quantity

P_SrlNmbrStockDiffMatlStock is a Composite CDS View that provides data about "Material Stock Quantity" in SAP S/4HANA. It reads from 1 data source (I_MaterialStock_2) and exposes 16 fields with key fields Material, Plant, Batch, StorageLocation, InventoryStockType. It has 1 association to related views. Part of development package ODATA_LO_SN_STOCK_QUANTITIES.

Data Sources (1)

SourceAliasJoin Type
I_MaterialStock_2 I_MaterialStock_2 from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_ProductPlant _MaterialPlant $projection.Material = _MaterialPlant.Product and $projection.Plant = _MaterialPlant.Plant

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Material Stock Quantity view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY Batch Batch Lot No.
KEY StorageLocation StorageLocation StorageLocation
KEY InventoryStockType InventoryStockType Stock Type
KEY InventorySpecialStockType InventorySpecialStockType Special Stock Type
KEY Supplier Supplier Supplier
KEY SDDocument SDDocument SD Document
KEY SDDocumentItem SDDocumentItem
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
KEY Customer Customer Sold-to Party
KEY SpecialStockIdfgStockOwner SpecialStockIdfgStockOwner
KEY MaterialBaseUnit MaterialBaseUnit Valuation Unit
CompanyCode CompanyCode Receiver Company Code
MatlWrhsStkQtyInMatlBaseUnit
SerialNumberProfile _MaterialPlant SerialNumberProfile SerialNoProfile

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 P_SrlNmbrStockDiffMatlStock.
-- 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 P_SrlNmbrStockDiffMatlStock AS
SELECT
  Material,
  Plant,
  Batch,
  StorageLocation,
  InventoryStockType,
  InventorySpecialStockType,
  Supplier,
  SDDocument,
  SDDocumentItem,
  WBSElementInternalID,
  Customer,
  SpecialStockIdfgStockOwner,
  MaterialBaseUnit,
  CompanyCode,
  cast(sum(MatlWrhsStkQtyInMatlBaseUnit) as nsdm_stock_qty) AS MatlWrhsStkQtyInMatlBaseUnit,
  _MaterialPlant.SerialNumberProfile AS SerialNumberProfile
FROM I_MaterialStock_2
LEFT OUTER JOIN I_ProductPlant AS _MaterialPlant ON Material = _MaterialPlant.Product AND Plant = _MaterialPlant.Plant  -- association [1..1]
;