P_MltplMatlStk_L1_WOS_SLOC

DDL: P_MLTPLMATLSTK_L1_WOS_SLOC Type: view_entity COMPOSITE

P_MltplMatlStk_L1_WOS_SLOC is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_ProductPlantBasic, I_ProductStorageLocationBasic) and exposes 6 fields with key fields Material, Plant, StorageLocation, Plant, StorageLocation.

Data Sources (2)

SourceAliasJoin Type
I_ProductPlantBasic Plant inner
I_ProductStorageLocationBasic Sloc from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Material I_ProductStorageLocationBasic Product Product Sold
KEY Plant I_ProductStorageLocationBasic Plant Valuation Area
KEY StorageLocation I_ProductStorageLocationBasic StorageLocation
KEY Plant Plant Valuation Area
KEY StorageLocation StockIdfgStorageLocation
KEY Batch StockIdentifyingBatch

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_MltplMatlStk_L1_WOS_SLOC.
-- 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_MltplMatlStk_L1_WOS_SLOC AS
SELECT
  Sloc.Product AS Material,
  Sloc.Plant AS Plant,
  Sloc.StorageLocation AS StorageLocation,
  StockIdentifyingBatch AS Batch
FROM I_ProductStorageLocationBasic AS Sloc
INNER JOIN I_ProductPlantBasic AS Plant ON /* join condition not captured in parsed metadata */
;