A_ServiceDocumentType
Service Transaction Type
A_ServiceDocumentType is a Composite CDS View that provides data about "Service Transaction Type" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentType) and exposes 5 fields with key field ServiceDocumentType. It has 1 association to related views. It is exposed through 1 OData service (API_SERVICEDOCUMENTTYPE).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentType | I_ServiceDocumentType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | A_ServiceDocumentTypeText | _ServiceDocumentTypeText | $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ASERVDOCTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Service Transaction Type | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ServiceDocumentType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| OData.entityType.name | ServiceDocumentType_Type | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #COMPOSITE | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| API_SERVICEDOCUMENTTYPE | API_SRVCDOCUMENTTYPE | V4 | C2 | C1 |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | ServiceDocumentType | ||
| ServiceObjectType | ServiceObjectType | |||
| BusinessObjectTypeName | ||||
| ServiceDocumentTypeName | ||||
| _ServiceDocumentTypeText | _ServiceDocumentTypeText |
@AbapCatalog:{
sqlViewName: 'ASERVDOCTYPE',
compiler.compareFilter: true,
preserveKey: true }
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Service Transaction Type'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
representativeKey: 'ServiceDocumentType',
usageType:{
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S } }
@OData.entityType.name:'ServiceDocumentType_Type'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE
define view A_ServiceDocumentType
as select from I_ServiceDocumentType
association [1..*] to A_ServiceDocumentTypeText as _ServiceDocumentTypeText on $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType
{
@ObjectModel.sapObjectNodeTypeReference: 'ServiceDocumentType'
@ObjectModel.text.element: ['ServiceDocumentTypeName']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key ServiceDocumentType,
@ObjectModel.text.element: ['BusinessObjectTypeName']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
ServiceObjectType,
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Semantics.text: true
_ServiceObjectTypeText[1:Language=$session.system_language].BusinessObjectTypeName,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
_ServiceDocumentTypeText[1:Language=$session.system_language].ServiceDocumentTypeName,
/* Associations */
_ServiceDocumentTypeText
}
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