P_PhysInvtryNotPosted_L1

DDL: P_PHYSINVTRYNOTPOSTED_L1 Type: view_entity COMPOSITE Package: ODATA_MM_IM_PI_MASS_CREATE

Not posted master data

P_PhysInvtryNotPosted_L1 is a Composite CDS View that provides data about "Not posted master data" in SAP S/4HANA. It reads from 2 data sources (P_PhysInvtryNotPostedBatch_L2, P_ProductStorageLocationNoPost) and exposes 20 fields with key fields Material, Plant, StorageLocation, Batch, Supplier. Part of development package ODATA_MM_IM_PI_MASS_CREATE.

Data Sources (2)

SourceAliasJoin Type
P_PhysInvtryNotPostedBatch_L2 _ProductBatchNoPost union_all
P_ProductStorageLocationNoPost _ProductStorageLocationNoPost from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Not posted master data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY Material Material Vehicle Model
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
KEY Batch Batch Lot No.
KEY Supplier Supplier Supplier
KEY SalesOrder SalesOrder SD Document
KEY SalesOrderItem SalesOrderItem Sales Order Item
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
KEY Customer Customer Sold-to Party
KEY StockOwner StockOwner Owner of stock
KEY Plant Plant Valuation Area
KEY StorageLocation StorageLocation StorageLocation
KEY Batch Batch Lot No.
KEY Supplier Supplier Supplier
KEY SalesOrder SalesOrder SD Document
KEY SalesOrderItem SalesOrderItem Sales Order Item
KEY WBSElementInternalID WBSElementInternalID WBS Internal ID
KEY Customer Customer Sold-to Party
KEY StockOwner StockOwner Owner of stock
KEY InventoryStockType InventoryStockType Stock Type

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_PhysInvtryNotPosted_L1.
-- 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_PhysInvtryNotPosted_L1 AS
SELECT
  Material,
  Plant,
  StorageLocation,
  Batch,
  Supplier,
  SalesOrder,
  SalesOrderItem,
  WBSElementInternalID,
  Customer,
  StockOwner,
  InventoryStockType
FROM P_ProductStorageLocationNoPost AS _ProductStorageLocationNoPost
-- UNION ALL with additional select branch(es): P_PhysInvtryNotPostedBatch_L2
;