P_MltplMatlStk_L1_WOS_BATCH

DDL: P_MLTPLMATLSTK_L1_WOS_BATCH Type: view_entity COMPOSITE Package: MBND_CLOUD_BL

Level 1: Material never on stock Batch

P_MltplMatlStk_L1_WOS_BATCH is a Composite CDS View that provides data about "Level 1: Material never on stock Batch" in SAP S/4HANA. It reads from 1 data source (I_Batch) and exposes 6 fields with key fields Material, Plant, StorageLocation, Plant, StorageLocation. Part of development package MBND_CLOUD_BL.

Data Sources (1)

SourceAliasJoin Type
I_Batch I_Batch 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 Material Vehicle Model
KEY Plant Plant Valuation Area
KEY 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_BATCH.
-- 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_BATCH AS
SELECT
  Material,
  Plant,
  cast(' ' as lgort_d preserving type) AS StorageLocation,
  StockIdentifyingBatch AS Batch
FROM I_Batch
;