R_PurgDocPricingSimulation

DDL: R_PURGDOCPRICINGSIMULATION Type: view BASIC

Purchasing Document Pricing Simulation

R_PurgDocPricingSimulation is a Basic CDS View that provides data about "Purchasing Document Pricing Simulation" in SAP S/4HANA. It reads from 1 data source (ekko) and exposes 8 fields with key field PurchasingDocument.

Data Sources (1)

SourceAliasJoin Type
ekko ekko from

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName RPURGDOCSIM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Purchasing Document Pricing Simulation view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument ebeln Source PurchDoc
PurchasingDocumentCategory bstyp Source doc.cat.
PurchasingDocumentType bsart Stnd purch.ord.
PurchasingOrganization ekorg Purchasing Org.
PurchasingGroup ekgrp Sub. purchasing grp
PurchasingDocumentOrigin statu Vehicle Status
IsEndOfPurposeBlocked iseopblocked Business Usage Comp.
CompanyCode bukrs Value

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 R_PurgDocPricingSimulation.
-- 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 R_PurgDocPricingSimulation AS
SELECT
  ebeln AS PurchasingDocument,
  bstyp AS PurchasingDocumentCategory,
  bsart AS PurchasingDocumentType,
  ekorg AS PurchasingOrganization,
  ekgrp AS PurchasingGroup,
  statu AS PurchasingDocumentOrigin,
  iseopblocked AS IsEndOfPurposeBlocked,
  bukrs AS CompanyCode
FROM ekko
;