I_EventXtrctConfig

DDL: I_EVENTXTRCTCONFIG SQL: IEVENTXTRCTCONFG Type: view BASIC Package: BEI_BASE

Event Extraction Configuration

I_EventXtrctConfig is a Basic CDS View that provides data about "Event Extraction Configuration" in SAP S/4HANA. It reads from 1 data source (bei_evtxtrct_cfg) and exposes 5 fields. Part of development package BEI_BASE.

Data Sources (1)

SourceAliasJoin Type
bei_evtxtrct_cfg bei_evtxtrct_cfg from

Annotations (10)

NameValueLevelField
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEVENTXTRCTCONFG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Event Extraction Configuration view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
BhvrlInsgtsEventNumber event_id ID
BhvrlInsgtsSourceTableName source_table Table Name
BhvrlInsgtsFieldName field_name VAT Declaration Fld
BhvrlInsgtsFieldValue field_value TDC field value
BhvrlInsgtsAccountCategory account_type SI Account type

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_EventXtrctConfig.
-- 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: IEVENTXTRCTCONFG

CREATE VIEW I_EventXtrctConfig AS
SELECT
  event_id AS BhvrlInsgtsEventNumber,
  source_table AS BhvrlInsgtsSourceTableName,
  field_name AS BhvrlInsgtsFieldName,
  field_value AS BhvrlInsgtsFieldValue,
  account_type AS BhvrlInsgtsAccountCategory
FROM bei_evtxtrct_cfg
;