P_ServiceOrderConfirmation
Service Order Confirmation API
P_ServiceOrderConfirmation is a Composite CDS View that provides data about "Service Order Confirmation API" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentSuccessor) and exposes 3 fields with key fields ServiceOrder, ServiceConfirmation. It has 1 association to related views. Part of development package ODATA_CRMS4_SERVICEORDER.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentSuccessor | ServiceOrderConfirmation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ServiceDocumentEnhcd | _ServiceOrder | $projection.ServiceOrderUUID = _ServiceOrder.ServiceDocumentUUID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ServiceOrder | 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 (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceOrder | _ServiceOrder | ServiceDocument | |
| KEY | ServiceConfirmation | |||
| ServiceOrderUUID | ServiceDocumentUUID |
@VDM: {
private: true,
viewType: #COMPOSITE,
lifecycle.contract.type: #NONE
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
representativeKey: 'ServiceOrder',
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
//@Analytics.technicalName: 'PSRVORDCONF'
@Metadata.ignorePropagatedAnnotations: true
define view entity P_ServiceOrderConfirmation
as select from I_ServiceDocumentSuccessor as ServiceOrderConfirmation
association [0..1] to I_ServiceDocumentEnhcd as _ServiceOrder on $projection.ServiceOrderUUID = _ServiceOrder.ServiceDocumentUUID
{
key _ServiceOrder.ServiceDocument as ServiceOrder,
key ServiceOrderConfirmation._ServiceDoc.ServiceDocument as ServiceConfirmation,
ServiceDocumentUUID as ServiceOrderUUID
}
where
ServiceDocSuccessorBusObjType = 'BUS2000117'
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