I_RequestForQuotationStdVH

DDL: I_REQUESTFORQUOTATIONSTDVH SQL: IRFQ__VH Type: view COMPOSITE

Request For Quotation

I_RequestForQuotationStdVH is a Composite CDS View that provides data about "Request For Quotation" in SAP S/4HANA. It reads from 1 data source (I_RequestForQuotation) and exposes 6 fields with key field RequestForQuotation.

Data Sources (1)

SourceAliasJoin Type
I_RequestForQuotation I_RequestForQuotation from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRFQ__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey RequestForQuotation view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Request For Quotation view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY RequestForQuotation RequestForQuotation RFQ
RequestForQuotationName RequestForQuotationName RFQ Description
IsEndOfPurposeBlocked IsEndOfPurposeBlocked Busin. Purp. Cmpltd.
PurchasingDocumentType PurchasingDocumentType RFQ Type
PurchasingGroup PurchasingGroup Purchasing Group
PurchasingOrganization PurchasingOrganization Purchasing Organization

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 I_RequestForQuotationStdVH.
-- 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: IRFQ__VH

CREATE VIEW I_RequestForQuotationStdVH AS
SELECT
  RequestForQuotation,
  RequestForQuotationName,
  IsEndOfPurposeBlocked,
  PurchasingDocumentType,
  PurchasingGroup,
  PurchasingOrganization
FROM I_RequestForQuotation
;