C_RfqTypeVH

DDL: C_RFQTYPEVH SQL: CRFQTYPE Type: view CONSUMPTION

Value help for RFQ Type

C_RfqTypeVH is a Consumption CDS View that provides data about "Value help for RFQ Type" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 3 fields with key field RFQType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentType RFQType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PurchasingDocumentTypeText _RFQTypeText _RFQTypeText.PurchasingDocumentCategory = 'R' and _RFQTypeText.PurchasingDocumentType = $projection.RFQType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CRFQTYPE view
EndUserText.label Value help for RFQ Type view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey RFQType view
ObjectModel.representativeKey RFQType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY RFQType I_PurchasingDocumentType PurchasingDocumentType RFQ Type
PurchasingDocumentTypeName
_RFQTypeText _RFQTypeText

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_RfqTypeVH.
-- 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: CRFQTYPE

CREATE VIEW C_RfqTypeVH AS
SELECT
  RFQType.PurchasingDocumentType AS RFQType,
  _RFQTypeText[ Language = $session.system_language ].PurchasingDocumentTypeName AS PurchasingDocumentTypeName
FROM I_PurchasingDocumentType AS RFQType
LEFT OUTER JOIN I_PurchasingDocumentTypeText AS _RFQTypeText ON _RFQTypeText.PurchasingDocumentCategory = 'R' AND _RFQTypeText.PurchasingDocumentType = RFQType  -- association [0..*]
;