A_ServiceDocumentTypeText
Service Transaction Type Text
A_ServiceDocumentTypeText is a Composite CDS View that provides data about "Service Transaction Type Text" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentTypeText) and exposes 4 fields with key fields ServiceDocumentType, Language. It has 1 association to related views. It is exposed through 1 OData service (API_SERVICEDOCUMENTTYPE).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentTypeText | I_ServiceDocumentTypeText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_ServiceDocumentType | _ServiceDocumentType | $projection.ServiceDocumentType = _ServiceDocumentType.ServiceDocumentType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ASERVDOCTYPETEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Service Transaction Type Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| OData.entityType.name | ServiceDocumentTypeText_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 (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | ServiceDocumentType | ||
| KEY | Language | Language | ||
| ServiceDocumentTypeName | ServiceDocumentTypeName | |||
| _ServiceDocumentType | _ServiceDocumentType |
@AbapCatalog:{
sqlViewName: 'ASERVDOCTYPETEXT',
compiler.compareFilter: true,
preserveKey: true}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Service Transaction Type Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel:{
usageType:{
serviceQuality: #A,
dataClass: #CUSTOMIZING,
sizeCategory: #S},
dataCategory: #TEXT }
@OData.entityType.name:'ServiceDocumentTypeText_Type'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE
define view A_ServiceDocumentTypeText
as select from I_ServiceDocumentTypeText
association [1..1] to A_ServiceDocumentType as _ServiceDocumentType on $projection.ServiceDocumentType = _ServiceDocumentType.ServiceDocumentType
{
@ObjectModel.text.element: ['ServiceDocumentTypeName']
key ServiceDocumentType,
@Semantics.language: true
key Language,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
ServiceDocumentTypeName,
/* Associations */
_ServiceDocumentType
}
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