P_PurchaseOrderItemAddFields

DDL: P_PURCHASEORDERITEMADDFIELDS SQL: PPUORDITMADDF Type: view COMPOSITE Package: ODATA_MM_PUR_PO_API

Purchase Order Item Additional Fields

P_PurchaseOrderItemAddFields is a Composite CDS View that provides data about "Purchase Order Item Additional Fields" in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLine) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem. Part of development package ODATA_MM_PUR_PO_API.

Data Sources (1)

SourceAliasJoin Type
I_PurgDocScheduleLine _PurchaseOrderScheduline inner

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PPUORDITMADDF view
EndUserText.label Purchase Order Item Additional Fields view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder I_PurchaseOrderItem PurchaseOrder Purchasing Document
KEY PurchaseOrderItem I_PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
Batch I_PurgDocScheduleLine Batch Lot No.

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_PurchaseOrderItemAddFields.
-- 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.
-- SQL view name: PPUORDITMADDF

CREATE VIEW P_PurchaseOrderItemAddFields AS
SELECT
  I_PurchaseOrderItem.PurchaseOrder AS PurchaseOrder,
  I_PurchaseOrderItem.PurchaseOrderItem AS PurchaseOrderItem,
  _PurchaseOrderScheduline.Batch AS Batch
INNER JOIN I_PurgDocScheduleLine AS _PurchaseOrderScheduline ON /* join condition not captured in parsed metadata */
;