I_SAPObjectTypeEventCode

DDL: I_SAPOBJECTTYPEEVENTCODE SQL: IEVTCODE Type: view BASIC

Evt Code and Tsk Mappg for SAP Obj Type

I_SAPObjectTypeEventCode is a Basic CDS View that provides data about "Evt Code and Tsk Mappg for SAP Obj Type" in SAP S/4HANA. It reads from 1 data source (beh_i_event) and exposes 9 fields with key fields SAPObjectType, SAPObjectTaskType, SAPObjectEventCode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
beh_i_event beh_i_event from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_SAPObjectTypeEvtCodeTxt _EventText $projection.SAPObjectType = _EventText.SAPObjectType and $projection.SAPObjectTaskType = _EventText.SAPObjectTaskType
[0..1] I_SAPObjectTaskType _TaskType $projection.SAPObjectTaskType = _TaskType.SAPObjectTaskType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEVTCODE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Evt Code and Tsk Mappg for SAP Obj Type view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectType bo_type SOT Name
KEY SAPObjectTaskType bo_task SAP Object Task Type
KEY SAPObjectEventCode bo_event SAPObject Event Code
SAPObjectNodeType object_node_type SONT Name
SAPObjectRepresentationType object_representation_type SAP Representation Type
SAPObjectRepresentation object_representation SAP Obj Rep
SAPObjectTaskCode _TaskType SAPObjectTaskCode
_TaskType _TaskType
_EventText _EventText

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_SAPObjectTypeEventCode.
-- 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: IEVTCODE

CREATE VIEW I_SAPObjectTypeEventCode AS
SELECT
  bo_type AS SAPObjectType,
  bo_task AS SAPObjectTaskType,
  bo_event AS SAPObjectEventCode,
  object_node_type AS SAPObjectNodeType,
  object_representation_type AS SAPObjectRepresentationType,
  object_representation AS SAPObjectRepresentation,
  _TaskType.SAPObjectTaskCode AS SAPObjectTaskCode
FROM beh_i_event
LEFT OUTER JOIN I_SAPObjectTypeEvtCodeTxt AS _EventText ON SAPObjectType = _EventText.SAPObjectType AND SAPObjectTaskType = _EventText.SAPObjectTaskType  -- association [0..*]
LEFT OUTER JOIN I_SAPObjectTaskType AS _TaskType ON SAPObjectTaskType = _TaskType.SAPObjectTaskType  -- association [0..1]
;