I_RequestForQuotationType

DDL: I_REQUESTFORQUOTATIONTYPE SQL: IRFQTYPE Type: view BASIC

RFQ Type

I_RequestForQuotationType is a Basic CDS View that provides data about "RFQ Type" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 2 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 (13)

NameValueLevelField
ObjectModel.representativeKey RFQType view
ObjectModel.semanticKey RFQType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IRFQTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label RFQ Type view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY RFQType I_PurchasingDocumentType PurchasingDocumentType
_RFQTypeText _RFQTypeText
@ObjectModel.representativeKey: 'RFQType'
@ObjectModel.semanticKey: 'RFQType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'IRFQTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@EndUserText.label: 'RFQ Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities:[ #SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET ]

define view I_RequestForQuotationType
  as select from I_PurchasingDocumentType as RFQType

  association [0..*] to I_PurchasingDocumentTypeText as _RFQTypeText on  _RFQTypeText.PurchasingDocumentCategory = 'R'
                                                                     and _RFQTypeText.PurchasingDocumentType     = $projection.RFQType

{
      @Search: { defaultSearchElement: true, ranking: #HIGH }
      @ObjectModel.text.association: '_RFQTypeText'
  key RFQType.PurchasingDocumentType as RFQType,

      _RFQTypeText

}
where
  RFQType.PurchasingDocumentCategory = 'R'