I_BusinessEventLogEvent
Business Event Logging Business Event
I_BusinessEventLogEvent is a Basic CDS View that provides data about "Business Event Logging Business Event" in SAP S/4HANA. It reads from 1 data source (bel_d_event) and exposes 31 fields with key fields BusinessEventUUID, SAPObjectType, BusEvtLogCreationDate.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| bel_d_event | bel_d_event | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBELEVENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | BusinessEventUUID | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| EndUserText.label | Business Event Logging Business Event | view |
Fields (31)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessEventUUID | event_guid | ||
| KEY | SAPObjectType | bo_type | ||
| KEY | BusEvtLogCreationDate | exec_date | ||
| BusinessObject | obj_key | |||
| SAPObjectNodeType | object_node_type | |||
| BusinessEventType | ||||
| EventOperation | bo_task | |||
| BusEvtLogObjectNodeID | object_node_id | |||
| SAPBusinessObjectNodeKey1 | key1 | |||
| SAPBusinessObjectNodeKey2 | key2 | |||
| SAPBusinessObjectNodeKey3 | key3 | |||
| SAPBusinessObjectNodeKey4 | key4 | |||
| SAPBusinessObjectNodeKey5 | key5 | |||
| SAPBusinessObjectNodeKey6 | key6 | |||
| SAPBusinessObjectNodeKey7 | key7 | |||
| SAPBusinessObjectNodeKey8 | key8 | |||
| BusEvtLogObjectNodeKey1UUID | key1_raw | |||
| CreatedByUser | uname | |||
| BusEvtLogCreationDateTime | exec_timestamp | |||
| BusEvtLogCreationTime | exec_time | |||
| PredecessorBusinessEventUUID | pre_event_guid | |||
| BuEvLgTimeSinceLastEvent | kpi_duration | |||
| UnitOfMeasure | kpi_dur_unit | |||
| BusinessEventLogLogicalSystem | source_system | |||
| BusEvtLogIsDeleted | deleted | |||
| BusEvtLogTransactionID | transaction_id | |||
| BusEvtLogLastChangedDateTime | last_changed | |||
| BusinessEventLogSource | event_source | |||
| SAPObjectNodeCharacterKey1 | key1_char | |||
| BusinessEventLogEventVersion | event_version | |||
| EventProducerNamespace | producer_namespace |
@AbapCatalog.sqlViewName: 'IBELEVENT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'BusinessEventUUID',
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #A,
sizeCategory: #XXL
}
}
@EndUserText.label: 'Business Event Logging Business Event'
define view I_BusinessEventLogEvent
as select from bel_d_event
{
key event_guid as BusinessEventUUID,
key bo_type as SAPObjectType,
key exec_date as BusEvtLogCreationDate,
obj_key as BusinessObject,
object_node_type as SAPObjectNodeType,
cast(bo_task as beh_task_code_short) as BusinessEventType,
bo_task as EventOperation,
object_node_id as BusEvtLogObjectNodeID,
key1 as SAPBusinessObjectNodeKey1,
key2 as SAPBusinessObjectNodeKey2,
key3 as SAPBusinessObjectNodeKey3,
key4 as SAPBusinessObjectNodeKey4,
key5 as SAPBusinessObjectNodeKey5,
key6 as SAPBusinessObjectNodeKey6,
key7 as SAPBusinessObjectNodeKey7,
key8 as SAPBusinessObjectNodeKey8,
key1_raw as BusEvtLogObjectNodeKey1UUID,
uname as CreatedByUser,
exec_timestamp as BusEvtLogCreationDateTime,
exec_time as BusEvtLogCreationTime,
pre_event_guid as PredecessorBusinessEventUUID,
kpi_duration as BuEvLgTimeSinceLastEvent,
kpi_dur_unit as UnitOfMeasure,
source_system as BusinessEventLogLogicalSystem,
deleted as BusEvtLogIsDeleted,
transaction_id as BusEvtLogTransactionID,
last_changed as BusEvtLogLastChangedDateTime,
event_source as BusinessEventLogSource,
key1_char as SAPObjectNodeCharacterKey1,
key_concat as SAPObjectNodeConcatenatedKey,
event_version as BusinessEventLogEventVersion,
producer_namespace as EventProducerNamespace
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BEL_D_EVENT"
],
"ASSOCIATED":
[],
"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