C_SalesQuotationTypeValueHelp
Sales Quotation specific document types
C_SalesQuotationTypeValueHelp is a Consumption CDS View that provides data about "Sales Quotation specific document types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 3 fields with key field SalesDocumentType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentType | _SalesDocumentType | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSALESQTTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientDependent | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Sales Quotation specific document types | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.headerInfo.typeName | Quotation Type | view | |
| UI.headerInfo.typeNamePlural | Quotation Types | view | |
| ObjectModel.representativeKey | SalesDocumentType | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Consumption.valueHelpDefault.fetchValues | #AUTOMATICALLY_WHEN_DISPLAYED | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesDocumentType | SalesDocumentType | Sales Quotation Type | |
| SalesDocumentTypeLangDepdnt | ||||
| SalesDocumentTypeName |
@AbapCatalog: {
sqlViewName: 'CSALESQTTYPEVH',
compiler.compareFilter: true
}
@ClientDependent: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Sales Quotation specific document types'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@VDM: {
viewType: #CONSUMPTION
}
@UI.headerInfo:{
typeName: 'Quotation Type',
typeNamePlural: 'Quotation Types'
}
@ObjectModel.representativeKey: 'SalesDocumentType'
@Search.searchable: true
@Consumption: {
ranked: true,
valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED
}
define view C_SalesQuotationTypeValueHelp as select from I_SalesDocumentType as _SalesDocumentType
{
@EndUserText.label : 'Sales Quotation Type'
@Search: {
defaultSearchElement: true,
ranking: #HIGH
}
@UI.lineItem: [{ position: 10, importance: #HIGH }]
@ObjectModel.text.element: ['SalesDocumentTypeName']
key SalesDocumentType,
@UI.hidden: true
@Search: {
defaultSearchElement: true,
ranking: #HIGH
}
@UI.textArrangement: #TEXT_SEPARATE
_SalesDocumentType._SalesDocumentTypeLangDepdnt[1:Language=$session.system_language].SalesDocumentTypeLangDepdnt,
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.9
}
@UI.lineItem: [{ position: 20, importance: #HIGH }]
@Semantics.text: true
_SalesDocumentType._Text[1:Language=$session.system_language].SalesDocumentTypeName
}
where SDDocumentCategory = 'B'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESDOCUMENTTYPE",
"I_SALESDOCUMENTTYPELANGDEPDNT",
"I_SALESDOCUMENTTYPETEXT"
],
"ASSOCIATED":
[],
"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