P_BUSINESSEVENTLOGEVENTSDM

DDL: P_BUSINESSEVENTLOGEVENTSDM Type: view_entity BASIC

Business Event Logging Business Event

P_BUSINESSEVENTLOGEVENTSDM is a Basic CDS View that provides data about "Business Event Logging Business Event" in SAP S/4HANA. It reads from 1 data source (bel_d_event) and exposes 34 fields with key fields event_guid, bo_type, exec_date.

Data Sources (1)

SourceAliasJoin Type
bel_d_event bel_d_event from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
EndUserText.label Business Event Logging Business Event view

Fields (34)

KeyFieldSource TableSource FieldDescription
KEY event_guid event_guid Event GUID
KEY bo_type bo_type SOT Name
KEY exec_date exec_date Executed Date
obj_key obj_key Reference Key
bo_task bo_task SAP Object Task Type
key1 key1 INT4
key2 key2 Character Field of Length 12
key3 key3 INT2
key4 key4 BO Key Part (4)
key5 key5 BO Key Part (5)
key6 key6 BO Key Part (6)
key7 key7 Business Object Key
key8 key8 BO Key Part (8)
key1_raw key1_raw Key1 Raw-16
uname uname User Name
exec_time exec_time Time
deleted deleted Truth Value
kpi_duration kpi_duration LeadTime
kpi_dur_unit kpi_dur_unit Process KPI Unit
last_changed last_changed UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
event_source event_source Evt Source
key1_char key1_char BO Key Part (1)
changenr changenr Document Number
chngind chngind Change Indicator
activity_id activity_id IMG Activity
key1_name key1_name BO Key Name 1
key2_name key2_name BO Key Name 2
key3_name key3_name BO Key Name 3
key4_name key4_name BO Key Name 4
key5_name key5_name BO Key Name 5
key6_name key6_name BO Key Name 6
key7_name key7_name Business Object Key
key8_name key8_name
event_entity event_entity BEL Entity Name

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 P_BUSINESSEVENTLOGEVENTSDM.
-- 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 P_BUSINESSEVENTLOGEVENTSDM AS
SELECT
  event_guid,
  bo_type,
  exec_date,
  obj_key,
  bo_task,
  key1,
  key2,
  key3,
  key4,
  key5,
  key6,
  key7,
  key8,
  key1_raw,
  uname,
  exec_time,
  deleted,
  kpi_duration,
  kpi_dur_unit,
  last_changed,
  event_source,
  key1_char,
  changenr,
  chngind,
  activity_id,
  key1_name,
  key2_name,
  key3_name,
  key4_name,
  key5_name,
  key6_name,
  key7_name,
  key8_name,
  event_entity
FROM bel_d_event
;