I_BusEvtLogObjectNode

DDL: I_BUSEVTLOGOBJECTNODE SQL: IBELOBJNODE Type: view BASIC

Business Event Log Object Node Instance

I_BusEvtLogObjectNode is a Basic CDS View that provides data about "Business Event Log Object Node Instance" in SAP S/4HANA. It reads from 1 data source (bel_d_obj_node) and exposes 26 fields with key fields BusEvtLogObjectNodeID, SAPObjectType.

Data Sources (1)

SourceAliasJoin Type
bel_d_obj_node bel_d_obj_node from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBELOBJNODE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey BusEvtLogObjectNodeID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Business Event Log Object Node Instance view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogObjectNodeID object_node_id BEL Object Node ID
KEY SAPObjectType bo_type SOT Name
BusinessObject obj_key Reference Key
SAPObjectNodeType object_node_type SONT Name
SAPBusinessObjectNodeKey1 key1 INT4
SAPBusinessObjectNodeKey2 key2 Character Field of Length 12
SAPBusinessObjectNodeKey3 key3 INT2
SAPBusinessObjectNodeKey4 key4 BO Key Part (4)
SAPBusinessObjectNodeKey5 key5 BO Key Part (5)
SAPBusinessObjectNodeKey6 key6 BO Key Part (6)
SAPBusinessObjectNodeKey7 key7 Business Object Key
SAPBusinessObjectNodeKey8 key8 BO Key Part (8)
BusEvtLogObjectNodeKey1UUID key1_raw Key1 Raw-16
StartingBusinessEventUUID start_event_guid First Event GUID
BusEvtLogCreationDateTime start_timestamp Valid From Timestamp
BusEvtLogCreationDate start_date Valn start date
BusEvtLogCreationTime start_time Time Stamp
BusEvtLogProcessVariant variant_hash Variant
LastBusinessEventUUID last_event_guid Last Event GUID
BusEvtLogLastEventDateTime last_timestamp Time Stamp
BusEvtLogLastEventDate last_date Modification date
BusEvtLogLastEventTime last_time Modification time
BuEvLgNodeLastChangedDateTime last_changed Node Last Changed
BuEvLgObjNodeCycTmeInSeconds cycle_time Cycle Time
UnitOfMeasure cycle_unit Cycle Unit
SAPObjectNodeCharacterKey1 key1_char BO Key Part (1)

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_BusEvtLogObjectNode.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IBELOBJNODE

CREATE VIEW I_BusEvtLogObjectNode AS
SELECT
  object_node_id AS BusEvtLogObjectNodeID,
  bo_type AS SAPObjectType,
  obj_key AS BusinessObject,
  object_node_type AS SAPObjectNodeType,
  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,
  start_event_guid AS StartingBusinessEventUUID,
  start_timestamp AS BusEvtLogCreationDateTime,
  start_date AS BusEvtLogCreationDate,
  start_time AS BusEvtLogCreationTime,
  variant_hash AS BusEvtLogProcessVariant,
  last_event_guid AS LastBusinessEventUUID,
  last_timestamp AS BusEvtLogLastEventDateTime,
  last_date AS BusEvtLogLastEventDate,
  last_time AS BusEvtLogLastEventTime,
  last_changed AS BuEvLgNodeLastChangedDateTime,
  cycle_time AS BuEvLgObjNodeCycTmeInSeconds,
  cycle_unit AS UnitOfMeasure,
  key1_char AS SAPObjectNodeCharacterKey1
FROM bel_d_obj_node
;