I_SupDmndAllDocNonBatchStock

DDL: I_SUPDMNDALLDOCNONBATCHSTOCK Type: view COMPOSITE

View for Non Batch Stock

I_SupDmndAllDocNonBatchStock is a Composite CDS View that provides data about "View for Non Batch Stock" in SAP S/4HANA. It reads from 2 data sources (P_ARunAssgmtSup, I_SupDmndAllDocNonBatStkBsc) and exposes 35 fields.

Data Sources (2)

SourceAliasJoin Type
P_ARunAssgmtSup bdbs left_outer
I_SupDmndAllDocNonBatStkBsc Stock from

Annotations (10)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISUPDMNDADNBSTK view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label View for Non Batch Stock view

Fields (35)

KeyFieldSource TableSource FieldDescription
SupplyNumber I_SupDmndAllDocNonBatStkBsc SupplyNumber
SupplyItem I_SupDmndAllDocNonBatStkBsc SupplyItem
SupplyScheduleLine I_SupDmndAllDocNonBatStkBsc SupplyScheduleLine
Material I_SupDmndAllDocNonBatStkBsc Material Vehicle Model
Plant I_SupDmndAllDocNonBatStkBsc Plant Valuation Area
Batch I_SupDmndAllDocNonBatStkBsc Batch Lot No.
StorageLocation I_SupDmndAllDocNonBatStkBsc StorageLocation StorageLocation
SupAssgmtSource I_SupDmndAllDocNonBatStkBsc SupAssgmtSource
AssignedSupplyType I_SupDmndAllDocNonBatStkBsc AssignedSupplyType
SupplyDeliveryDate I_SupDmndAllDocNonBatStkBsc SupplyDeliveryDate
ProductAvailabilityDate I_SupDmndAllDocNonBatStkBsc ProductAvailabilityDate Mat.Avail.Date
InventorySpecialStockType I_SupDmndAllDocNonBatStkBsc InventorySpecialStockType Special Stock Type
SalesOrder I_SupDmndAllDocNonBatStkBsc SalesOrder SD Document
SalesOrderItem I_SupDmndAllDocNonBatStkBsc SalesOrderItem Sales Order Item
MaterialGroup I_SupDmndAllDocNonBatStkBsc MaterialGroup Product Group
Customer I_SupDmndAllDocNonBatStkBsc Customer Sold-to Party
Supplier I_SupDmndAllDocNonBatStkBsc Supplier Supplier
CrossPlantConfigurableProduct I_SupDmndAllDocNonBatStkBsc CrossPlantConfigurableProduct Cross-plant CP
IsInternalBatchManaged I_SupDmndAllDocNonBatStkBsc IsInternalBatchManaged Batches
TotalQuantity I_SupDmndAllDocNonBatStkBsc TotalQuantity Activity Quantity
UnrestrictedStkInStkUnit UnrestrictedStkInStkUnit
QualityInspectionStockQuantity QualityInspectionStockQuantity
TransferStockStorageLocQty TransferStockStorageLocQty
TransferStockPlantQuantity TransferStockPlantQuantity
StockInTransitQuantity StockInTransitQuantity Stk in Transit
BlockedStockQuantity BlockedStockQuantity
RestrictedStockQuantity RestrictedStockQuantity
TiedEmptiesStockQuantity TiedEmptiesStockQuantity
GoodsReceiptBlockedStockQty GoodsReceiptBlockedStockQty Val. GR Blocked Stck
AssignedQuantityInBaseUnit AssignedQuantityInBaseUnit
NormalAssignedQuantityInBsUnt NormalAssignedQuantityInBsUnt
PreviewAssignedQuantityInBsUnt PreviewAssignedQuantityInBsUnt
BaseUnit I_SupDmndAllDocNonBatStkBsc BaseUnit Unit of Measure
StockSegment I_SupDmndAllDocNonBatStkBsc StockSegment Stock Segment
DeliveredQuantity I_SupDmndAllDocNonBatStkBsc DeliveredQuantity Qty. in OPUn

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_SupDmndAllDocNonBatchStock.
-- 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_SupDmndAllDocNonBatchStock AS
SELECT
  Stock.SupplyNumber AS SupplyNumber,
  Stock.SupplyItem AS SupplyItem,
  Stock.SupplyScheduleLine AS SupplyScheduleLine,
  Stock.Material AS Material,
  Stock.Plant AS Plant,
  Stock.Batch AS Batch,
  Stock.StorageLocation AS StorageLocation,
  Stock.SupAssgmtSource AS SupAssgmtSource,
  Stock.AssignedSupplyType AS AssignedSupplyType,
  Stock.SupplyDeliveryDate AS SupplyDeliveryDate,
  Stock.ProductAvailabilityDate AS ProductAvailabilityDate,
  Stock.InventorySpecialStockType AS InventorySpecialStockType,
  Stock.SalesOrder AS SalesOrder,
  Stock.SalesOrderItem AS SalesOrderItem,
  Stock.MaterialGroup AS MaterialGroup,
  Stock.Customer AS Customer,
  Stock.Supplier AS Supplier,
  Stock.CrossPlantConfigurableProduct AS CrossPlantConfigurableProduct,
  Stock.IsInternalBatchManaged AS IsInternalBatchManaged,
  Stock.TotalQuantity AS TotalQuantity,
  UnrestrictedStkInStkUnit,
  QualityInspectionStockQuantity,
  TransferStockStorageLocQty,
  TransferStockPlantQuantity,
  StockInTransitQuantity,
  BlockedStockQuantity,
  RestrictedStockQuantity,
  TiedEmptiesStockQuantity,
  GoodsReceiptBlockedStockQty,
  AssignedQuantityInBaseUnit,
  NormalAssignedQuantityInBsUnt,
  PreviewAssignedQuantityInBsUnt,
  Stock.BaseUnit AS BaseUnit,
  Stock.StockSegment AS StockSegment,
  Stock.DeliveredQuantity AS DeliveredQuantity
FROM I_SupDmndAllDocNonBatStkBsc AS Stock
LEFT OUTER JOIN P_ARunAssgmtSup AS bdbs ON /* join condition not captured in parsed metadata */
;