R_RequestForQuotationDraft

DDL: R_REQUESTFORQUOTATIONDRAFT SQL: RRFQDRAFT Type: view BASIC Package: ODATA_MM_PUR_RFQ_MAINTAIN

Draft View RFQ

R_RequestForQuotationDraft is a Basic CDS View that provides data about "Draft View RFQ" in SAP S/4HANA. It reads from 1 data source (mmrfqenh_d) and exposes 5 fields with key field RequestForQuotationUUID. Part of development package ODATA_MM_PUR_RFQ_MAINTAIN.

Data Sources (1)

SourceAliasJoin Type
mmrfqenh_d mmrfqenh_d from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName RRFQDRAFT view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Draft View RFQ view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RequestForQuotationUUID draftuuid UUID
RequestForQuotation requestforquotation RFQ
PurchasingDocumentType purchasingdocumenttype RFQ 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 R_RequestForQuotationDraft.
-- 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: RRFQDRAFT

CREATE VIEW R_RequestForQuotationDraft AS
SELECT
  draftuuid AS RequestForQuotationUUID,
  RequestForQuotation,
  PurchasingDocumentType,
  PurchasingDocumentCategory,
  CreationDate
FROM mmrfqenh_d
;