I_BusinessObjectEventTask

DDL: I_BUSINESSOBJECTEVENTTASK SQL: IBUSOBJEVTTSK Type: view COMPOSITE Package: BEH_COMMON

SAP Obj Type and SAP Obj Tsk Type Mappg

I_BusinessObjectEventTask is a Composite CDS View that provides data about "SAP Obj Type and SAP Obj Tsk Type Mappg" in SAP S/4HANA. It reads from 8 data sources and exposes 17 fields with key fields SAPObjectType, SAPObjectTaskCode, SAPObjectRepresentation, SAPObjectTaskType, SAPObjectEventCode. It has 2 associations to related views. Part of development package BEH_COMMON.

Data Sources (8)

SourceAliasJoin Type
I_BusinessEventBindingHeader I_BusinessEventBindingHeader inner
I_SAPObjectRepresentation I_SAPObjectRepresentation inner
I_SAPObjectRepresentation I_SAPObjectRepresentation inner
I_SAPObjectTaskType I_SAPObjectTaskType inner
I_SAPObjectTaskType I_SAPObjectTaskType inner
I_SAPObjectType I_SAPObjectType from
I_SAPObjectType I_SAPObjectType union
I_SAPObjectTypeEventCode I_SAPObjectTypeEventCode inner

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_SAPObjectTypeEvtCodeTxt _TaskText $projection.SAPObjectType = _TaskText.SAPObjectType and $projection.SAPObjectTaskType = _TaskText.SAPObjectTaskType and _TaskText.Language = $session.system_language
[1..1] I_SAPObjectTypeText _TypeText $projection.SAPObjectType = _TypeText.SAPObjectType and _TypeText.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBUSOBJEVTTSK view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SAP Obj Type and SAP Obj Tsk Type Mappg view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectType I_SAPObjectTypeEventCode SAPObjectType SOT Name
KEY SAPObjectTaskCode I_SAPObjectTaskType SAPObjectTaskCode Event Operation
KEY SAPObjectRepresentation I_SAPObjectRepresentation SAPObjectRepresentation Technical Name
KEY SAPObjectTaskType I_SAPObjectTypeEventCode SAPObjectTaskType SAP Object Task Type
KEY SAPObjectEventCode I_SAPObjectTypeEventCode SAPObjectEventCode SAPObject Event Code
KEY SAPObjectRepresentationType I_SAPObjectRepresentation SAPObjectRepresentationType SAP Representation Type
KEY SAPObjectTypeName
KEY SAPObjectTaskTypeName
SAPObjectType SOT Name
KEY SAPObjectTaskCode I_SAPObjectTaskType SAPObjectTaskCode Event Operation
KEY SAPObjectRepresentation I_SAPObjectRepresentation SAPObjectRepresentation Technical Name
KEY SAPObjectTaskType I_SAPObjectTaskType SAPObjectTaskType SAP Object Task Type
KEY SAPObjectEventCode SAPObject Event Code
KEY SAPObjectRepresentationType I_SAPObjectRepresentation SAPObjectRepresentationType SAP Representation Type
KEY SAPObjectTypeName
KEY SAPObjectTaskTypeName
_TypeText _TypeText

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_BusinessObjectEventTask.
-- 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: IBUSOBJEVTTSK

CREATE VIEW I_BusinessObjectEventTask AS
SELECT
  I_SAPObjectTypeEventCode.SAPObjectType AS SAPObjectType,
  I_SAPObjectTaskType.SAPObjectTaskCode AS SAPObjectTaskCode,
  I_SAPObjectRepresentation.SAPObjectRepresentation AS SAPObjectRepresentation,
  I_SAPObjectTypeEventCode.SAPObjectTaskType AS SAPObjectTaskType,
  I_SAPObjectTypeEventCode.SAPObjectEventCode AS SAPObjectEventCode,
  I_SAPObjectRepresentation.SAPObjectRepresentationType AS SAPObjectRepresentationType,
  _TypeText[1:inner].SAPObjectTypeName AS SAPObjectTypeName,
  _TaskText[1:inner].SAPObjectTaskTypeName AS SAPObjectTaskTypeName
FROM I_SAPObjectType
INNER JOIN I_SAPObjectRepresentation ON /* join condition not captured in parsed metadata */
INNER JOIN I_SAPObjectTypeEventCode ON /* join condition not captured in parsed metadata */
INNER JOIN I_SAPObjectTaskType ON /* join condition not captured in parsed metadata */
INNER JOIN I_BusinessEventBindingHeader ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_SAPObjectTypeEvtCodeTxt AS _TaskText ON SAPObjectType = _TaskText.SAPObjectType AND SAPObjectTaskType = _TaskText.SAPObjectTaskType AND _TaskText.Language = $session.system_language  -- association [1..1]
LEFT OUTER JOIN I_SAPObjectTypeText AS _TypeText ON SAPObjectType = _TypeText.SAPObjectType AND _TypeText.Language = $session.system_language  -- association [1..1]
-- UNION with additional select branch(es): I_SAPObjectType
;