P_CntrlPurchaseContractDraft

DDL: P_CNTRLPURCHASECONTRACTDRAFT SQL: PCEPUCODRAFT Type: view BASIC Package: VDM_MM_PUR_CCTR

Central Purchase Contracts Draft View

P_CntrlPurchaseContractDraft is a Basic CDS View that provides data about "Central Purchase Contracts Draft View" in SAP S/4HANA. It reads from 1 data source (cntrlpctp_d) and exposes 5 fields with key field CntrlPurchaseContractDraftUUID. Part of development package VDM_MM_PUR_CCTR.

Data Sources (1)

SourceAliasJoin Type
cntrlpctp_d cntrlpctp_d from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PCEPUCODRAFT view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.private true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Central Purchase Contracts Draft View view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CntrlPurchaseContractDraftUUID draftuuid UUID
CentralPurchaseContract centralpurchasecontract Purchasing Doc.
PurchaseContractType purchasecontracttype Order Type
PurchasingDocumentCategory purchasingdocumentcategory Doc. Category
CreationDate creationdate Time Stamp

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 P_CntrlPurchaseContractDraft.
-- 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: PCEPUCODRAFT

CREATE VIEW P_CntrlPurchaseContractDraft AS
SELECT
  draftuuid AS CntrlPurchaseContractDraftUUID,
  CentralPurchaseContract,
  PurchaseContractType,
  PurchasingDocumentCategory,
  CreationDate
FROM cntrlpctp_d
;