I_RequestForQuotationType
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)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingDocumentType | RFQType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PurchasingDocumentTypeText | _RFQTypeText | _RFQTypeText.PurchasingDocumentCategory = 'R' and _RFQTypeText.PurchasingDocumentType = $projection.RFQType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASINGDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_PURCHASINGDOCUMENTTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA