P_ServiceOrderItemConfirmation
P_ServiceOrderItemConfirmation is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemSuccssr_2) and exposes 5 fields with key field ServiceOrderItemUUID. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentItemSuccssr_2 | ServiceOrderItemConfirmation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ServiceDocumentItemEnhcd | _ServiceOrderItem | $projection.ServiceOrderItemUUID = _ServiceOrderItem.ServiceDocumentItemCharUUID |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| AbapCatalog.sqlViewName | PSRVORDITMCONF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | 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 | ServiceOrderItemUUID | ServiceDocumentItemCharUUID | ||
| ServiceOrder | _ServiceOrderItem | ServiceDocument | ||
| ServiceOrderItem | _ServiceOrderItem | ServiceDocumentItem | ||
| ServiceConfirmation | ||||
| ServiceConfirmationItem |
@ClientHandling.algorithm:#SESSION_VARIABLE
//@EndUserText.label: 'Service Order Item Confirmation API'
@VDM: {
private: true,
viewType: #COMPOSITE,
lifecycle.contract.type: #NONE
}
@AbapCatalog: {
sqlViewName: 'PSRVORDITMCONF',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view P_ServiceOrderItemConfirmation
//as select from I_ServiceDocumentItemSuccessor as ServiceOrderItemConfirmation
as select from I_ServiceDocumentItemSuccssr_2 as ServiceOrderItemConfirmation
association [0..*] to I_ServiceDocumentItemEnhcd as _ServiceOrderItem on $projection.ServiceOrderItemUUID = _ServiceOrderItem.ServiceDocumentItemCharUUID
{
key ServiceDocumentItemCharUUID as ServiceOrderItemUUID,
_ServiceOrderItem.ServiceDocument as ServiceOrder,
_ServiceOrderItem.ServiceDocumentItem as ServiceOrderItem,
ServiceOrderItemConfirmation._ServiceDocItm.ServiceDocument as ServiceConfirmation,
ServiceOrderItemConfirmation._ServiceDocItm.ServiceDocumentItem as ServiceConfirmationItem
}
where
ServiceOrderItemConfirmation._ServiceDocItm.ServiceObjectType = 'BUS2000117'
// and CharcLength = 32 // Filter out only Document Item GUID
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