PRODCMPLNCLICRLVTPURGDOC

DDL: PRODCMPLNCLICRLVTPURGDOC SQL: PCLRPO Type: view

License Relevant Purchase Order Items

PRODCMPLNCLICRLVTPURGDOC is a CDS View that provides data about "License Relevant Purchase Order Items" in SAP S/4HANA. It reads from 1 data source (ekpo) and exposes 4 fields with key fields PurchasingDocument, PurchasingDocumentItem.

Data Sources (1)

SourceAliasJoin Type
ekpo ekpo from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PCLRPO view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #AUTOMATED view
EndUserText.label License Relevant Purchase Order Items view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ekpo ebeln Source PurchDoc
KEY PurchasingDocumentItem ekpo ebelp Item pur. doc.
CreationDate ekpo creationdate Time Stamp
NumberOfItems

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 PRODCMPLNCLICRLVTPURGDOC.
-- 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: PCLRPO

CREATE VIEW PRODCMPLNCLICRLVTPURGDOC AS
SELECT
  ekpo.ebeln AS PurchasingDocument,
  ekpo.ebelp AS PurchasingDocumentItem,
  ekpo.creationdate AS CreationDate,
  cast( 1 as abap.int8 ) AS NumberOfItems
FROM ekpo
;