A_ServiceOrderItemConfirmation
Service Confirmations of Service Order
A_ServiceOrderItemConfirmation is a Composite CDS View that provides data about "Service Confirmations of Service Order" in SAP S/4HANA. It reads from 1 data source (P_ServiceOrderItemConfirmation) and exposes 5 fields with key fields ServiceOrder, ServiceOrderItem, ServiceConfirmation, ServiceConfirmationItem. It has 1 association to related views. Part of development package ODATA_CRMS4_SERVICEORDER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_ServiceOrderItemConfirmation | P_ServiceOrderItemConfirmation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceOrder | _ServiceOrder | $projection.ServiceOrder = _ServiceOrder.ServiceOrder |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Service Confirmations of Service Order | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ASRVORDITMCONF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceOrder | ServiceOrder | ||
| KEY | ServiceOrderItem | ServiceOrderItem | ||
| KEY | ServiceConfirmation | ServiceConfirmation | ||
| KEY | ServiceConfirmationItem | ServiceConfirmationItem | ||
| _ServiceOrder | _ServiceOrder |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Service Confirmations of Service Order'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ASRVORDITMCONF',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_ServiceOrderItemConfirmation
as select from P_ServiceOrderItemConfirmation
association [1] to A_ServiceOrder as _ServiceOrder on $projection.ServiceOrder = _ServiceOrder.ServiceOrder
{
key ServiceOrder,
key ServiceOrderItem,
key ServiceConfirmation,
key ServiceConfirmationItem,
//Associations
_ServiceOrder
}
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