C_Oij06_Recent_Events
Recent Events
C_Oij06_Recent_Events is a Consumption CDS View that provides data about "Recent Events" in SAP S/4HANA. It reads from 1 data source (I_Oij06_Recent_Event) and exposes 5 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Oij06_Recent_Event | I_Oij06_Recent_Event | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | COIJ06_REVENT | view | |
| EndUserText.label | Recent Events | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| NominationEventChangedDate | NominationEventChangedDate | |||
| NominationDoc | NominationDoc | |||
| NominationDocItem | NominationDocItem | |||
| NominationEventNumber | ||||
| NominationEventType | NominationEventType |
@AbapCatalog.sqlViewName: 'COIJ06_REVENT'
@EndUserText.label: 'Recent Events'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality:#D
@ObjectModel.usageType.sizeCategory: #L
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
define view C_Oij06_Recent_Events
as select from I_Oij06_Recent_Event
{
NominationEventChangedDate,
NominationDoc,
NominationDocItem,
max(NominationEventNumber) as NominationEventNumber,
NominationEventType
}
group by
NominationDoc,
NominationDocItem,
NominationEventChangedDate,
NominationEventType
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_OIJ06_RECENT_EVENT"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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