C_BusEvtLogObjectNodeDEX

DDL: C_BUSEVTLOGOBJECTNODEDEX SQL: CBELOBJNODEDX Type: view CONSUMPTION

Business Event Log Object Node Instance

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

Data Sources (1)

SourceAliasJoin Type
I_BusEvtLogObjectNode I_BusEvtLogObjectNode from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CBELOBJNODEDX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Analytics.dataCategory #FACT view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true 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 (25)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogObjectNodeID BusEvtLogObjectNodeID BEL Object Node ID
KEY SAPObjectType SAPObjectType SOT Name
BusinessObject BusinessObject Business Object
SAPObjectNodeType SAPObjectNodeType SONT Name
SAPBusinessObjectNodeKey1 SAPBusinessObjectNodeKey1 INT4
SAPBusinessObjectNodeKey2 SAPBusinessObjectNodeKey2 Character Field of Length 12
SAPBusinessObjectNodeKey3 SAPBusinessObjectNodeKey3 INT2
SAPBusinessObjectNodeKey4 SAPBusinessObjectNodeKey4 BO Key Part (4)
SAPBusinessObjectNodeKey5 SAPBusinessObjectNodeKey5 BO Key Part (5)
SAPBusinessObjectNodeKey6 SAPBusinessObjectNodeKey6 BO Key Part (6)
SAPBusinessObjectNodeKey7 SAPBusinessObjectNodeKey7 Business Object Key
SAPBusinessObjectNodeKey8 SAPBusinessObjectNodeKey8 BO Key Part (8)
BusEvtLogObjectNodeKey1UUID BusEvtLogObjectNodeKey1UUID Key1 Raw-16
StartingBusinessEventUUID StartingBusinessEventUUID First Event GUID
BusEvtLogCreationDateTime BusEvtLogCreationDateTime Valid From Timestamp
BusEvtLogCreationDate BusEvtLogCreationDate Valn start date
BusEvtLogCreationTime BusEvtLogCreationTime Time Stamp
BusEvtLogProcessVariant BusEvtLogProcessVariant Variant
LastBusinessEventUUID LastBusinessEventUUID Last Event GUID
BusEvtLogLastEventDateTime BusEvtLogLastEventDateTime Time Stamp
BusEvtLogLastEventDate BusEvtLogLastEventDate Modification date
BusEvtLogLastEventTime BusEvtLogLastEventTime Modification time
BuEvLgNodeLastChangedDateTime BuEvLgNodeLastChangedDateTime UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
BuEvLgObjNodeCycTmeInSeconds BuEvLgObjNodeCycTmeInSeconds Cycle Time
UnitOfMeasure UnitOfMeasure Unit Protected Qty

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 C_BusEvtLogObjectNodeDEX.
-- 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: CBELOBJNODEDX

CREATE VIEW C_BusEvtLogObjectNodeDEX AS
SELECT
  BusEvtLogObjectNodeID,
  SAPObjectType,
  BusinessObject,
  SAPObjectNodeType,
  SAPBusinessObjectNodeKey1,
  SAPBusinessObjectNodeKey2,
  SAPBusinessObjectNodeKey3,
  SAPBusinessObjectNodeKey4,
  SAPBusinessObjectNodeKey5,
  SAPBusinessObjectNodeKey6,
  SAPBusinessObjectNodeKey7,
  SAPBusinessObjectNodeKey8,
  BusEvtLogObjectNodeKey1UUID,
  StartingBusinessEventUUID,
  BusEvtLogCreationDateTime,
  BusEvtLogCreationDate,
  BusEvtLogCreationTime,
  BusEvtLogProcessVariant,
  LastBusinessEventUUID,
  BusEvtLogLastEventDateTime,
  BusEvtLogLastEventDate,
  BusEvtLogLastEventTime,
  BuEvLgNodeLastChangedDateTime,
  BuEvLgObjNodeCycTmeInSeconds,
  UnitOfMeasure
FROM I_BusEvtLogObjectNode
;