A_PurgDocPricingSimulation

DDL: A_PURGDOCPRICINGSIMULATION Type: view_entity CONSUMPTION

Purg Document Pricing Simulation

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

Data Sources (1)

SourceAliasJoin Type
R_PurgDocPricingSimulationTP R_PurgDocPricingSimulationTP projection

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Purg Document Pricing Simulation view
OData.entityType.name PurchasingDocument_Type view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument PurchasingDocument Purchasing Document
PurchasingDocumentCategory PurchasingDocumentCategory Doc. Category
PurchasingDocumentType PurchasingDocumentType RFQ Type
PurchasingOrganization PurchasingOrganization Purchasing Organization
PurchasingGroup PurchasingGroup Purchasing Group
PurchasingDocumentOrigin PurchasingDocumentOrigin Status
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
CompanyCode CompanyCode Receiver Company Code

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 A_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 A_PurgDocPricingSimulation AS
SELECT
  PurchasingDocument,
  PurchasingDocumentCategory,
  PurchasingDocumentType,
  PurchasingOrganization,
  PurchasingGroup,
  PurchasingDocumentOrigin,
  IsEndOfPurposeBlocked,
  CompanyCode
FROM R_PurgDocPricingSimulationTP
;