P_FollowUpServiceOrder
Follow-up Service Orders for Service Transaction
P_FollowUpServiceOrder is a Consumption CDS View that provides data about "Follow-up Service Orders for Service Transaction" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentSuccessor) and exposes 4 fields with key fields ServiceDocumentUUID, ServiceDocumentSuccessorUUID. Part of development package CRMS4_SERV_QUOTATION_UI.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentSuccessor | I_ServiceDocumentSuccessor | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentUUID | ServiceDocumentUUID | ||
| KEY | ServiceDocumentSuccessorUUID | ServiceDocumentSuccessorUUID | ||
| ServiceOrder | ||||
| ServiceDocumentIsOpen |
@VDM: {
private: true,
viewType: #CONSUMPTION,
lifecycle.contract.type: #NONE
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #TRANSACTIONAL}
}
@Metadata: {
ignorePropagatedAnnotations: true
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity P_FollowUpServiceOrder
as select from I_ServiceDocumentSuccessor
{
key ServiceDocumentUUID,
key ServiceDocumentSuccessorUUID,
_ServiceDoc[inner where ServiceDocumentIsQuotation = ''].ServiceDocument as ServiceOrder,
_ServiceDoc[inner where ServiceDocumentIsQuotation = ''].ServiceDocumentIsOpen
}
where
ServiceDocumentRelationType = 'VONA'
and ServiceDocSuccessorBusObjType = 'BUS2000116'
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