I_SAPObjectTypeEvtCodeTxt

DDL: I_SAPOBJECTTYPEEVTCODETXT SQL: IEVTCODETXT Type: view BASIC Package: BEH_COMMON

Text for Event Code and Task Mapping

I_SAPObjectTypeEvtCodeTxt is a Basic CDS View that provides data about "Text for Event Code and Task Mapping" in SAP S/4HANA. It reads from 1 data source (beh_i_eventt) and exposes 7 fields with key fields Language, SAPObjectType, SAPObjectTaskType. It has 1 association to related views. Part of development package BEH_COMMON.

Data Sources (1)

SourceAliasJoin Type
beh_i_eventt beh_i_eventt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEVTCODETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text for Event Code and Task Mapping 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 (7)

KeyFieldSource TableSource FieldDescription
KEY Language language Report Text Language
KEY SAPObjectType bo_type SOT Name
KEY SAPObjectTaskType bo_task SAP Object Task Type
SAPObjectTaskTypeName bo_tasktext Obj Task Type Name
SAPObjectRepresentationType object_representation_type SAP Representation Type
SAPObjectRepresentation object_representation SAP Obj Rep
_Language _Language

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_SAPObjectTypeEvtCodeTxt.
-- 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: IEVTCODETXT

CREATE VIEW I_SAPObjectTypeEvtCodeTxt AS
SELECT
  Language,
  bo_type AS SAPObjectType,
  bo_task AS SAPObjectTaskType,
  bo_tasktext AS SAPObjectTaskTypeName,
  object_representation_type AS SAPObjectRepresentationType,
  object_representation AS SAPObjectRepresentation
FROM beh_i_eventt
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;