C_RunSettlementActualMessage
Actual Settlement Message
C_RunSettlementActualMessage is a Consumption CDS View that provides data about "Actual Settlement Message" in SAP S/4HANA. It reads from 1 data source (I_RunSettlementActlMessageTP) and exposes 11 fields with key fields ControllingObject, SystemMessageClass, SystemMessageType, SystemMessageNumber. It has 1 association to related views. It is exposed through 1 OData service (FCO_ACTUAL_SETTLEMENT).
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RunSettlementActlMessageTP | I_RunSettlementActlMessageTP | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | C_RunSettlmtActualStatistic | _RunSettlmtActualStatistic | $projection.ControllingObject = _RunSettlmtActualStatistic.ControllingObject |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CSETTLMNTACTMESG | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Actual Settlement Message | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.draftEnabled | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.presentationVariant.text | Settlement Messages | view | |
| UI.presentationVariant.qualifier | VAR_MSG | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| FCO_ACTUAL_SETTLEMENT | UI_FCO_ACTL_SETTLEMENT_O2 | V2 | C1 | NOT_RELEASED |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ControllingObject | ControllingObject | ||
| KEY | SystemMessageClass | SystemMessageClass | ||
| KEY | SystemMessageType | SystemMessageType | ||
| KEY | SystemMessageNumber | SystemMessageNumber | ||
| SettlementDraftUUID | SettlementDraftUUID | |||
| SystemMessageTypeName | SystemMessageTypeName | |||
| SystemMessageText | ||||
| SystemMessageLongText | SystemMessageLongText | |||
| LogMessageHasLongText | LogMessageHasLongText | |||
| SettlementSenderObject | SettlementSenderObject | |||
| _RunSettlmtActualStatistic | _RunSettlmtActualStatistic |
@AbapCatalog.sqlViewName: 'CSETTLMNTACTMESG'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Actual Settlement Message'
@Metadata.allowExtensions: true
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.draftEnabled: true
@VDM.viewType: #CONSUMPTION
@UI.presentationVariant: {
text: 'Settlement Messages',
qualifier: 'VAR_MSG',
sortOrder: [ { by: 'SettlementSenderObject', direction: #ASC }
],
groupBy: ['SettlementSenderObject']
}
//@UI.headerInfo: { typeNamePlural: 'Message Log' }
define view C_RunSettlementActualMessage
as select from I_RunSettlementActlMessageTP
association [1..1] to C_RunSettlmtActualStatistic as _RunSettlmtActualStatistic on $projection.ControllingObject = _RunSettlmtActualStatistic.ControllingObject
{
@UI.hidden: true
key ControllingObject,
key SystemMessageClass,
@UI.lineItem: [{ position: 20 }]
key SystemMessageType,
key SystemMessageNumber,
@UI.hidden: true
SettlementDraftUUID,
SystemMessageTypeName,
@UI.lineItem: [{ position: 30 }]
cast(SystemMessageText as msgtxt_long) as SystemMessageText,
SystemMessageLongText,
@UI.hidden: true
LogMessageHasLongText,
@UI.lineItem: [{ position: 10 }]
SettlementSenderObject,
@ObjectModel.association.type: [ #TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT ]
_RunSettlmtActualStatistic
}
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