A_ServiceContractItemText
Item Text
A_ServiceContractItemText is a Composite CDS View that provides data about "Item Text" in SAP S/4HANA. It reads from 1 data source (P_ServiceDocumentItemText) and exposes 6 fields with key fields ServiceContract, ServiceContractItem, Language, LongTextID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_ServiceDocumentItemText | P_ServiceDocumentItemText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceContractItem | _ServiceContractItem | $projection.ServiceContract = _ServiceContractItem.ServiceContract and $projection.ServiceContractItem = _ServiceContractItem.ServiceContractItem |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Item Text | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ASRVCTRITMTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.createEnabled | false | view | |
| ObjectModel.updateEnabled | false | view | |
| ObjectModel.deleteEnabled | false | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceContract | ServiceContractItemText | ServiceDocument | |
| KEY | ServiceContractItem | ServiceContractItemText | ServiceDocumentItem | |
| KEY | Language | Language | ||
| KEY | LongTextID | LongTextID | ||
| LongText | LongText | |||
| _ServiceContractItem | _ServiceContractItem |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Item Text'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ASRVCTRITMTEXT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: false,
updateEnabled: false,
deleteEnabled: false,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
},
dataCategory:#TEXT
}
@Metadata.ignorePropagatedAnnotations: true
define view A_ServiceContractItemText
as select from P_ServiceDocumentItemText( P_SAPClient : $session.client ) as ServiceContractItemText
association [1] to A_ServiceContractItem as _ServiceContractItem on $projection.ServiceContract = _ServiceContractItem.ServiceContract
and $projection.ServiceContractItem = _ServiceContractItem.ServiceContractItem
{
key ServiceContractItemText.ServiceDocument as ServiceContract,
key ServiceContractItemText.ServiceDocumentItem as ServiceContractItem,
@Semantics.language:true
key Language,
key LongTextID,
@ObjectModel.virtualElement
@ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_CRMS4_ODATA_SRVCTR_TEXT'
@Semantics.text:true
LongText,
//Associations
_ServiceContractItem
}
where ServiceContractItemText.ServiceDocumentType = 'BUS2000112'
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