I_ServiceDocumentTypeStdVH
Service Document Type Value Help
I_ServiceDocumentTypeStdVH is a Basic 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 4 fields with key field ServiceDocumentType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentType | I_ServiceDocumentType | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISERVDOCTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | ServiceDocumentType | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Service Document Type Value Help | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | ServiceDocumentType | ||
| ServiceObjectType | ServiceObjectType | |||
| _ServiceDocumentTypeText | _ServiceDocumentTypeText | |||
| _ServiceObjectTypeText | _ServiceObjectTypeText |
@AbapCatalog:{
sqlViewName: 'ISERVDOCTYPEVH',
compiler.compareFilter: true,
preserveKey:true
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
dataCategory: #VALUE_HELP,
representativeKey: 'ServiceDocumentType',
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #XL
},
supportedCapabilities: [#VALUE_HELP_PROVIDER]
}
@AccessControl: {
authorizationCheck: #CHECK }
@EndUserText.label: 'Service Document Type Value Help'
@Search.searchable:true
@Consumption.ranked:true
define view I_ServiceDocumentTypeStdVH
as select from I_ServiceDocumentType
{
@Search.ranking: #HIGH
@ObjectModel.text.association: '_ServiceDocumentTypeText'
key ServiceDocumentType,
@Search.ranking: #LOW
ServiceObjectType,
_ServiceDocumentTypeText,
_ServiceObjectTypeText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_BUSINESSOBJTYPETEXT",
"I_SERVICEDOCUMENTTYPETEXT"
],
"BASE":
[
"I_SERVICEDOCUMENTTYPE"
],
"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