I_BuEvLgObjNodeRelshpEnhcd

DDL: I_BUEVLGOBJNODERELSHPENHCD Type: view_entity COMPOSITE

Bus Evt Log Object Node Relshp Enhanced

I_BuEvLgObjNodeRelshpEnhcd is a Composite CDS View that provides data about "Bus Evt Log Object Node Relshp Enhanced" in SAP S/4HANA. It reads from 1 data source (I_BusEvtLogObjectNodeRelshp) and exposes 27 fields with key fields BusEvtLogObjectNodeID, BusEvtLogRelatedObjectNodeID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_BusEvtLogObjectNodeRelshp I_BusEvtLogObjectNodeRelshp from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_SAPObjectTypeText _SAPObjectTypeText $projection.SAPObjectType = _SAPObjectTypeText.SAPObjectType
[0..*] I_SAPObjectNodeTypeText _SAPObjectNodeTypeText $projection.SAPObjectNodeType = _SAPObjectNodeTypeText.SAPObjectNodeType

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bus Evt Log Object Node Relshp Enhanced view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey BusEvtLogObjectNodeID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogObjectNodeID BusEvtLogObjectNodeID Node ID
KEY BusEvtLogRelatedObjectNodeID BusEvtLogRelatedObjectNodeID Related Node ID
SAPObjectType SAPObjectType Object Type
SAPObjectNodeType SAPObjectNodeType Node Type
SAPBusinessObjectNodeKey1 SAPBusinessObjectNodeKey1 Key (part) 1
SAPBusinessObjectNodeKey2 SAPBusinessObjectNodeKey2 Key (part) 2
SAPBusinessObjectNodeKey3 SAPBusinessObjectNodeKey3 Key (part) 3
SAPBusinessObjectNodeKey4 SAPBusinessObjectNodeKey4 Key (part) 4
SAPBusinessObjectNodeKey5 SAPBusinessObjectNodeKey5 Key (part) 5
SAPBusinessObjectNodeKey6 SAPBusinessObjectNodeKey6 Key (part) 6
SAPBusinessObjectNodeKey7 SAPBusinessObjectNodeKey7 Key (part) 7
RelatedSAPObjectType RelatedSAPObjectType Related Object Type
RelatedSAPObjectNodeType RelatedSAPObjectNodeType Related Node Type
BusEvtLogAssociationName BusEvtLogAssociationName DD: Name of an Association
BuEvLgReltdSAPBusObjNodeKey1 BuEvLgReltdSAPBusObjNodeKey1 Related Key (part) 1
BuEvLgReltdSAPBusObjNodeKey2 BuEvLgReltdSAPBusObjNodeKey2 Related Key (part) 2
BuEvLgReltdSAPBusObjNodeKey3 BuEvLgReltdSAPBusObjNodeKey3 Related Key (part) 3
BuEvLgReltdSAPBusObjNodeKey4 BuEvLgReltdSAPBusObjNodeKey4 Related Key (part) 4
BuEvLgReltdSAPBusObjNodeKey5 BuEvLgReltdSAPBusObjNodeKey5 Related Key (part) 5
BuEvLgReltdSAPBusObjNodeKey6 BuEvLgReltdSAPBusObjNodeKey6 Related Key (part) 6
BuEvLgReltdSAPBusObjNodeKey7 BuEvLgReltdSAPBusObjNodeKey7 Related Key (part) 7
BusEvtLogRelatedProcIsOutdated BusEvtLogRelatedProcIsOutdated Outdated
BusEvtLogLastChangedDateTime BusEvtLogLastChangedDateTime UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
SAPObjectTypeName
SAPObjectNodeTypeText
_SAPObjectTypeText _SAPObjectTypeText
_SAPObjectNodeTypeText _SAPObjectNodeTypeText

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_BuEvLgObjNodeRelshpEnhcd.
-- 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.

CREATE VIEW I_BuEvLgObjNodeRelshpEnhcd AS
SELECT
  BusEvtLogObjectNodeID,
  BusEvtLogRelatedObjectNodeID,
  SAPObjectType,
  SAPObjectNodeType,
  SAPBusinessObjectNodeKey1,
  SAPBusinessObjectNodeKey2,
  SAPBusinessObjectNodeKey3,
  SAPBusinessObjectNodeKey4,
  SAPBusinessObjectNodeKey5,
  SAPBusinessObjectNodeKey6,
  SAPBusinessObjectNodeKey7,
  RelatedSAPObjectType,
  RelatedSAPObjectNodeType,
  BusEvtLogAssociationName,
  BuEvLgReltdSAPBusObjNodeKey1,
  BuEvLgReltdSAPBusObjNodeKey2,
  BuEvLgReltdSAPBusObjNodeKey3,
  BuEvLgReltdSAPBusObjNodeKey4,
  BuEvLgReltdSAPBusObjNodeKey5,
  BuEvLgReltdSAPBusObjNodeKey6,
  BuEvLgReltdSAPBusObjNodeKey7,
  BusEvtLogRelatedProcIsOutdated,
  BusEvtLogLastChangedDateTime,
  _SAPObjectTypeText[1:Language = $session.system_language].SAPObjectTypeName AS SAPObjectTypeName,
  _SAPObjectNodeTypeText[1:Language = $session.system_language].SAPObjectNodeTypeText AS SAPObjectNodeTypeText
FROM I_BusEvtLogObjectNodeRelshp
LEFT OUTER JOIN I_SAPObjectTypeText AS _SAPObjectTypeText ON SAPObjectType = _SAPObjectTypeText.SAPObjectType  -- association [0..*]
LEFT OUTER JOIN I_SAPObjectNodeTypeText AS _SAPObjectNodeTypeText ON SAPObjectNodeType = _SAPObjectNodeTypeText.SAPObjectNodeType  -- association [0..*]
;