I_BusEvtLogActivitySequence

DDL: I_BUSEVTLOGACTIVITYSEQUENCE Type: view_entity BASIC

Business Event Log Activity Sequence

I_BusEvtLogActivitySequence is a Basic CDS View that provides data about "Business Event Log Activity Sequence" in SAP S/4HANA. It reads from 1 data source (bel_d_activity) and exposes 8 fields with key fields BusEvtLogBusinessActivity, SAPObjectType, BusEvtLogCreationDate.

Data Sources (1)

SourceAliasJoin Type
bel_d_activity bel_d_activity from

Annotations (7)

NameValueLevelField
EndUserText.label Business Event Log Activity Sequence view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusEvtLogBusinessActivity activity_id IMG Activity
KEY SAPObjectType bo_type SOT Name
KEY BusEvtLogCreationDate exec_date Executed Date
BusEvtLogPrdcssrBusActivity pre_activity_id
BuEvLgTimeSinceLastEvent kpi_duration LeadTime
UnitOfMeasure kpi_dur_unit Process KPI Unit
BusEvtLogLastChangedDateTime last_changed UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
BusEvtLogReferenceEventUUID ref_event_guid Event GUID

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_BusEvtLogActivitySequence.
-- 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_BusEvtLogActivitySequence AS
SELECT
  activity_id AS BusEvtLogBusinessActivity,
  bo_type AS SAPObjectType,
  exec_date AS BusEvtLogCreationDate,
  pre_activity_id AS BusEvtLogPrdcssrBusActivity,
  kpi_duration AS BuEvLgTimeSinceLastEvent,
  kpi_dur_unit AS UnitOfMeasure,
  last_changed AS BusEvtLogLastChangedDateTime,
  ref_event_guid AS BusEvtLogReferenceEventUUID
FROM bel_d_activity
;