A_BusSolnOrdFUPServiceContract
Follow-up Service Contracts
A_BusSolnOrdFUPServiceContract is a Composite CDS View that provides data about "Follow-up Service Contracts" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentSuccessor) and exposes 6 fields with key fields ServiceDocumentRelationUUID, ServiceDocRltnSequenceNumber. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentSuccessor | I_ServiceDocumentSuccessor | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_BusinessSolutionOrder | _BusinessSolutionOrder | $projection.BusinessSolutionOrderUUID = _BusinessSolutionOrder.BusinessSolutionOrderUUID |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Follow-up Service Contracts | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ABSOFUPSRVCTR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentRelationUUID | ServiceDocumentRelationUUID | ||
| KEY | ServiceDocRltnSequenceNumber | ServiceDocRltnSequenceNumber | ||
| BusinessSolutionOrder | _BusinessSolutionOrder | BusinessSolutionOrder | ||
| BusinessSolutionOrderUUID | ServiceDocumentUUID | |||
| ServiceContract | _ServiceDoc | ServiceDocument | ||
| _BusinessSolutionOrder | _BusinessSolutionOrder |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Follow-up Service Contracts'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ABSOFUPSRVCTR',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
define view A_BusSolnOrdFUPServiceContract
as select from I_ServiceDocumentSuccessor
association [1..1] to A_BusinessSolutionOrder as _BusinessSolutionOrder on $projection.BusinessSolutionOrderUUID = _BusinessSolutionOrder.BusinessSolutionOrderUUID
{
key ServiceDocumentRelationUUID,
key ServiceDocRltnSequenceNumber,
_BusinessSolutionOrder.BusinessSolutionOrder as BusinessSolutionOrder,
ServiceDocumentUUID as BusinessSolutionOrderUUID,
_ServiceDoc.ServiceDocument as ServiceContract,
_BusinessSolutionOrder
}
where
ServiceObjectType = 'BUS2000172'
and ServiceDocSuccessorBusObjType = 'BUS2000112'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_BUSINESSSOLUTIONORDER",
"I_SERVICEDOCUMENTENHCD",
"I_SERVICEDOCUMENTSUCCESSOR"
],
"ASSOCIATED":
[
"A_BUSINESSSOLUTIONORDER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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