I_SalesQuotationTypeText
Sales Quotation Type - Text
I_SalesQuotationTypeText is a Basic CDS View that provides data about "Sales Quotation Type - Text" in SAP S/4HANA. It reads from 2 data sources (I_SalesQuotationType, I_SalesDocumentTypeText) and exposes 5 fields with key fields SalesQuotationType, Language. It has 1 association to related views. Part of development package VDM_SD_SLS_QUT.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesQuotationType | SalesQuotationType | inner |
| I_SalesDocumentTypeText | Text | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_SalesQuotationType | _SalesQuotationType | $projection.SalesQuotationType = _SalesQuotationType.SalesQuotationType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Sales Quotation Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | SalesQuotationType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesQuotationType | I_SalesQuotationType | SalesQuotationType | |
| KEY | Language | I_SalesDocumentTypeText | Language | |
| SalesQuotationTypeName | ||||
| _SalesQuotationType | _SalesQuotationType | |||
| _Language | I_SalesDocumentTypeText | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@Consumption.ranked: true
@EndUserText.label: 'Sales Quotation Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING
}
@ObjectModel.representativeKey: 'SalesQuotationType'
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#LANGUAGE_DEPENDENT_TEXT,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE]
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define view entity I_SalesQuotationTypeText
as select from I_SalesDocumentTypeText as Text
inner join I_SalesQuotationType as SalesQuotationType on Text.SalesDocumentType = SalesQuotationType.SalesQuotationType
association [0..1] to I_SalesQuotationType as _SalesQuotationType on $projection.SalesQuotationType = _SalesQuotationType.SalesQuotationType
{
@ObjectModel.foreignKey.association: '_SalesQuotationType'
@ObjectModel.text.element: ['SalesQuotationTypeName']
key SalesQuotationType.SalesQuotationType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key Text.Language,
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.9,
ranking: #LOW }
@Semantics.text: true
cast( Text.SalesDocumentTypeName as quotation_type_name preserving type ) as SalesQuotationTypeName,
_SalesQuotationType,
Text._Language
}
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