C_SalesOrderTypeValueHelp
Sales Order Type
C_SalesOrderTypeValueHelp is a Consumption CDS View that provides data about "Sales Order Type" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 7 fields with key field SalesOrderType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentType | _SalesDocumentType | from |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSALESORTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | SalesOrderType | view | |
| UI.headerInfo.typeName | Sales Order Type | view | |
| UI.headerInfo.typeNamePlural | Sales Order Types | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Consumption.valueHelpDefault.fetchValues | #AUTOMATICALLY_WHEN_DISPLAYED | view | |
| EndUserText.label | Sales Order Type | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SalesOrderType | |||
| SalesDocumentTypeLangDepdnt | ||||
| SalesDocumentTypeName | ||||
| SalesDocumentProcessingType | SalesDocumentProcessingType | |||
| NumberRangeForIntIDAssignment | NumberRangeForIntIDAssignment | |||
| NumberRangeForExtIDAssignment | NumberRangeForExtIDAssignment | |||
| IsLocked | IsLocked |
@AbapCatalog: {
sqlViewName: 'CSALESORTYPEVH',
compiler.compareFilter: true,
preserveKey: true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM: {
viewType: #CONSUMPTION
}
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
representativeKey: 'SalesOrderType'
}
@UI.headerInfo:{
typeName: 'Sales Order Type',
typeNamePlural: 'Sales Order Types'
}
@Search.searchable: true
@Consumption: {
ranked: true,
valueHelpDefault.fetchValues:#AUTOMATICALLY_WHEN_DISPLAYED
}
@EndUserText.label: 'Sales Order Type'
define view C_SalesOrderTypeValueHelp as select from I_SalesDocumentType as _SalesDocumentType
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH
}
@UI.lineItem: [{ position: 10, importance: #HIGH }]
@ObjectModel.text.element: ['SalesDocumentTypeName']
key cast( SalesDocumentType as sales_order_type preserving type ) as SalesOrderType,
@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 }]
_SalesDocumentType._Text[1:Language=$session.system_language].SalesDocumentTypeName,
@UI.hidden: true
SalesDocumentProcessingType,
@UI.hidden: true
NumberRangeForIntIDAssignment,
@UI.hidden: true
NumberRangeForExtIDAssignment,
@UI.hidden: true
IsLocked
}
where SDDocumentCategory = 'C'
/*+[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