Test_IV_Event

DDL: TEST_I_EVENT SQL: TEST_I_EVENT Type: view

CDS for WB2E event

Test_IV_Event is a CDS View that provides data about "CDS for WB2E event" in SAP S/4HANA. It reads from 1 data source (wb2_event) and exposes 9 fields with key fields EventName, version. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
wb2_event Event from

Associations (1)

CardinalityTargetAliasCondition
[0..*] TEST_IV_Event_Item _EventItem

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName TEST_I_EVENT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS for WB2E event view
Metadata.allowExtensions true view
Search.searchable true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY EventName wb2_event event_name Process Event
KEY version wb2_event version XML Vers.
changed_at wb2_event changed_at Changed at
EventTitle wb2_event title Display Title
EventTime wb2_event time Time
EventLocation wb2_event location Location
EventDescription wb2_event description Description
EventStatus wb2_event status Event Status
_EventItem _EventItem

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 Test_IV_Event.
-- 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: TEST_I_EVENT

CREATE VIEW Test_IV_Event AS
SELECT
  Event.event_name AS EventName,
  Event.version AS version,
  Event.changed_at AS changed_at,
  Event.title AS EventTitle,
  Event.time AS EventTime,
  Event.location AS EventLocation,
  Event.description AS EventDescription,
  Event.status AS EventStatus
FROM wb2_event AS Event
LEFT OUTER JOIN TEST_IV_Event_Item AS _EventItem ON /* condition not available in parsed metadata */  -- association [0..*]
;