A_ServiceRequestText
Service Request Text
A_ServiceRequestText is a Composite CDS View that provides data about "Service Request Text" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentLongText) and exposes 5 fields with key fields ServiceRequest, Language, LongTextID. It has 1 association to related views. Part of development package ODATA_CRMS4_SERVICEREQUEST.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentLongText | ServiceRequestText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceRequest | _ServiceRequest | $projection.ServiceRequest = _ServiceRequest.ServiceRequest |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Service Request Text | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ASRVREQTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceRequest | I_ServiceDocumentLongText | ServiceDocument | |
| KEY | Language | Language | ||
| KEY | LongTextID | TextObjectType | ||
| LongText | ServiceDocumentLongText | |||
| _ServiceRequest | _ServiceRequest |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Service Request Text'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ASRVREQTEXT',
compiler.compareFilter: true
}
@AccessControl: {
authorizationCheck: #MANDATORY,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_ServiceRequestText
as select from I_ServiceDocumentLongText as ServiceRequestText
association [1] to A_ServiceRequest as _ServiceRequest on $projection.ServiceRequest = _ServiceRequest.ServiceRequest
{
key ServiceRequestText.ServiceDocument as ServiceRequest,
key Language,
key TextObjectType as LongTextID,
ServiceDocumentLongText as LongText,
_ServiceRequest
}
where ServiceRequestText.ServiceObjectType = 'BUS2000223'
and ServiceRequestText.ServiceDocumentItem = '000000'
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