I_BusEvtLogObjectNodeRelshp

DDL: I_BUSEVTLOGOBJECTNODERELSHP SQL: IBELNODEREL Type: view BASIC

Bus Evt Log Object Node Relationship

I_BusEvtLogObjectNodeRelshp is a Basic CDS View that provides data about "Bus Evt Log Object Node Relationship" in SAP S/4HANA. It reads from 1 data source (bel_d_node_rel) and exposes 25 fields with key fields BusEvtLogObjectNodeID, BusEvtLogRelatedObjectNodeID, SAPObjectType, BusEvtLogAssociationName.

Data Sources (1)

SourceAliasJoin Type
bel_d_node_rel bel_d_node_rel from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBELNODEREL view
EndUserText.label Bus Evt Log Object Node Relationship view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey 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

Fields (25)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogObjectNodeID object_node_id BEL Object Node ID
KEY BusEvtLogRelatedObjectNodeID rel_object_node_id BEL Object Node ID
KEY SAPObjectType bo_type SOT Name
KEY BusEvtLogAssociationName associationname DD: Name of an Association
SAPObjectNodeType object_node_type SONT Name
SAPBusinessObjectNodeKey1 node_key1 BO Key Part (1)
SAPBusinessObjectNodeKey2 node_key2 BO Key Part (2)
SAPBusinessObjectNodeKey3 node_key3 BO Key Part (3)
SAPBusinessObjectNodeKey4 node_key4 BO Key Part (4)
SAPBusinessObjectNodeKey5 node_key5 BO Key Part (5)
SAPBusinessObjectNodeKey6 node_key6 BO Key Part (6)
SAPBusinessObjectNodeKey7 node_key7 BO Key Part (7)
SAPBusinessObjectNodeKey8 node_key8 BO Key Part (8)
RelatedSAPObjectType rel_bo_type SAP Object Type
RelatedSAPObjectNodeType rel_object_node_type SAP Obj Node Type
BuEvLgReltdSAPBusObjNodeKey1 rel_node_key1 BO Key Part (1)
BuEvLgReltdSAPBusObjNodeKey2 rel_node_key2 BO Key Part (2)
BuEvLgReltdSAPBusObjNodeKey3 rel_node_key3 BO Key Part (3)
BuEvLgReltdSAPBusObjNodeKey4 rel_node_key4 BO Key Part (4)
BuEvLgReltdSAPBusObjNodeKey5 rel_node_key5 BO Key Part (5)
BuEvLgReltdSAPBusObjNodeKey6 rel_node_key6 BO Key Part (6)
BuEvLgReltdSAPBusObjNodeKey7 rel_node_key7 BO Key Part (7)
BuEvLgReltdSAPBusObjNodeKey8 rel_node_key8 BO Key Part (8)
BusEvtLogRelatedProcIsOutdated outdated Outdated
BusEvtLogLastChangedDateTime last_changed UTC Time Stamp in Short Form (YYYYMMDDhhmmss)

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_BusEvtLogObjectNodeRelshp.
-- 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: IBELNODEREL

CREATE VIEW I_BusEvtLogObjectNodeRelshp AS
SELECT
  object_node_id AS BusEvtLogObjectNodeID,
  rel_object_node_id AS BusEvtLogRelatedObjectNodeID,
  bo_type AS SAPObjectType,
  associationname AS BusEvtLogAssociationName,
  object_node_type AS SAPObjectNodeType,
  node_key1 AS SAPBusinessObjectNodeKey1,
  node_key2 AS SAPBusinessObjectNodeKey2,
  node_key3 AS SAPBusinessObjectNodeKey3,
  node_key4 AS SAPBusinessObjectNodeKey4,
  node_key5 AS SAPBusinessObjectNodeKey5,
  node_key6 AS SAPBusinessObjectNodeKey6,
  node_key7 AS SAPBusinessObjectNodeKey7,
  node_key8 AS SAPBusinessObjectNodeKey8,
  rel_bo_type AS RelatedSAPObjectType,
  rel_object_node_type AS RelatedSAPObjectNodeType,
  rel_node_key1 AS BuEvLgReltdSAPBusObjNodeKey1,
  rel_node_key2 AS BuEvLgReltdSAPBusObjNodeKey2,
  rel_node_key3 AS BuEvLgReltdSAPBusObjNodeKey3,
  rel_node_key4 AS BuEvLgReltdSAPBusObjNodeKey4,
  rel_node_key5 AS BuEvLgReltdSAPBusObjNodeKey5,
  rel_node_key6 AS BuEvLgReltdSAPBusObjNodeKey6,
  rel_node_key7 AS BuEvLgReltdSAPBusObjNodeKey7,
  rel_node_key8 AS BuEvLgReltdSAPBusObjNodeKey8,
  outdated AS BusEvtLogRelatedProcIsOutdated,
  last_changed AS BusEvtLogLastChangedDateTime
FROM bel_d_node_rel
;