C_SuplrConfPurchaseOrderVH

DDL: C_SUPLRCONFPURCHASEORDERVH SQL: CSCPURORD_VH Type: view CONSUMPTION

Purchase Order Value Help

C_SuplrConfPurchaseOrderVH is a Consumption CDS View that provides data about "Purchase Order Value Help" in SAP S/4HANA. It reads from 1 data source (R_PurchaseOrder) and exposes 10 fields with key field PurchaseOrder.

Data Sources (1)

SourceAliasJoin Type
R_PurchaseOrder PurchaseOrder from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CSCPURORD_VH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PurchaseOrder view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label Purchase Order Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder R_PurchaseOrder PurchaseOrder Purchasing Document
Supplier R_PurchaseOrder Supplier Supplier
PurchasingGroup R_PurchaseOrder PurchasingGroup Purchasing Group
PurchasingOrganization R_PurchaseOrder PurchasingOrganization Purchasing Organization
PurchaseOrderType R_PurchaseOrder PurchaseOrderType PO Type
CompanyCode R_PurchaseOrder CompanyCode Receiver Company Code
_Supplier _Supplier
_PurchasingOrganization _PurchasingOrganization
_PurchasingGroup _PurchasingGroup
_CompanyCode _CompanyCode

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 C_SuplrConfPurchaseOrderVH.
-- 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: CSCPURORD_VH

CREATE VIEW C_SuplrConfPurchaseOrderVH AS
SELECT
  PurchaseOrder.PurchaseOrder AS PurchaseOrder,
  PurchaseOrder.Supplier AS Supplier,
  PurchaseOrder.PurchasingGroup AS PurchasingGroup,
  PurchaseOrder.PurchasingOrganization AS PurchasingOrganization,
  PurchaseOrder.PurchaseOrderType AS PurchaseOrderType,
  PurchaseOrder.CompanyCode AS CompanyCode
FROM R_PurchaseOrder AS PurchaseOrder
;