REPM_PurchaseOrderProductQ

DDL: REPM_PURCHASEORDERPRODUCTQ SQL: REPM_PRODUCTQ Type: view

Product Details Query View

REPM_PurchaseOrderProductQ is a CDS View that provides data about "Product Details Query View" in SAP S/4HANA. It reads from 1 data source (REPM_PurchaseOrderProductC) and exposes 5 fields.

Data Sources (1)

SourceAliasJoin Type
REPM_PurchaseOrderProductC REPM_PurchaseOrderProductC from

Parameters (2)

NameTypeDefault
P_KeyDate sydate
hidden true

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName REPM_PRODUCTQ view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
Analytics.query true view
EndUserText.label Product Details Query View view
OData.publish true view

Fields (5)

KeyFieldSource TableSource FieldDescription
Product REPM_PurchaseOrderProductC Product ProductID
ProductName REPM_PurchaseOrderProductC ProductName ProductName
TransactionCurrency REPM_PurchaseOrderProductC TransactionCurrency Transaction Currency
GrossAmount REPM_PurchaseOrderProductC GrossAmount Purchase Order Gross Amount
po_counter REPM_PurchaseOrderProductC po_counter No Of PurchaseOrders

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 REPM_PurchaseOrderProductQ.
-- 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: REPM_PRODUCTQ
-- Parameters: P_KeyDate : sydate, hidden : true

CREATE VIEW REPM_PurchaseOrderProductQ AS
SELECT
  REPM_PurchaseOrderProductC.Product AS Product,
  REPM_PurchaseOrderProductC.ProductName AS ProductName,
  REPM_PurchaseOrderProductC.TransactionCurrency AS TransactionCurrency,
  REPM_PurchaseOrderProductC.GrossAmount AS GrossAmount,
  REPM_PurchaseOrderProductC.po_counter AS po_counter
FROM REPM_PurchaseOrderProductC
;