C_ServiceDocumentTypeVH
Service Document Type Value Help
C_ServiceDocumentTypeVH is a Consumption CDS View that provides data about "Service Document Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentType) and exposes 3 fields with key field ServiceDocumentType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentType | I_ServiceDocumentType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | I_ServiceDocumentTypeText | _ServiceDocumentTypeText | $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSERVDOCTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Service Document Type Value Help | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| UI.headerInfo.typeName | Transaction Type | view | |
| UI.headerInfo.typeNamePlural | Transaction Types | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | ServiceDocumentType | ||
| ServiceObjectType | ServiceObjectType | |||
| _ServiceDocumentTypeText | _ServiceDocumentTypeText |
@AbapCatalog:{
sqlViewName: 'CSERVDOCTYPEVH',
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Service Document Type Value Help'
@VDM.viewType: #CONSUMPTION
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
dataCategory: #VALUE_HELP,
// representativeKey: 'ServiceDocumentType',
resultSet.sizeCategory: #XS,
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #D,
sizeCategory: #S
},
supportedCapabilities: [#VALUE_HELP_PROVIDER]
}
@Search.searchable: true
@Consumption.ranked:true
@UI.headerInfo:{
typeName: 'Transaction Type',
typeNamePlural: 'Transaction Types'
}
define view C_ServiceDocumentTypeVH
as select from I_ServiceDocumentType
association [1..*] to I_ServiceDocumentTypeText as _ServiceDocumentTypeText on $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType
{
// @Consumption.labelElement: 'ServiceDocumentTypeName'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key ServiceDocumentType,
@Search.ranking: #LOW
ServiceObjectType,
_ServiceDocumentTypeText
}
where
ServiceObjectType = 'BUS2000116'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_SERVICEDOCUMENTTYPETEXT"
],
"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