I_AcctgServiceDocumentTypeVH
Service Document Type Value Help
I_AcctgServiceDocumentTypeVH is a Composite CDS View that provides data about "Service Document Type Value Help" in SAP S/4HANA. It reads from 1 data source (P_AcctgServiceDocumentItem) and exposes 2 fields with key field ServiceDocumentType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_AcctgServiceDocumentItem | P_AcctgServiceDocumentItem | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFIACSRVDOCTYPVH | view | |
| ObjectModel.representativeKey | ServiceDocumentType | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Service Document Type Value Help | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | ServiceDocumentType | ||
| ServiceDocumentTypeName | ServiceDocumentTypeName |
@AbapCatalog.sqlViewName: 'IFIACSRVDOCTYPVH'
@ObjectModel.representativeKey: 'ServiceDocumentType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #C,
sizeCategory: #L
}
@ObjectModel.semanticKey: ['ServiceDocumentType']
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'Service Document Type Value Help'
define view I_AcctgServiceDocumentTypeVH
as select from P_AcctgServiceDocumentItem
{
@ObjectModel.text.element: ['ServiceDocumentTypeName']
@UI.textArrangement: #TEXT_LAST
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key ServiceDocumentType,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
ServiceDocumentTypeName
}
group by ServiceDocumentType, ServiceDocumentTypeName
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_ACCTGSERVICEDOCUMENTITEM"
],
"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