I_SAPOBJECTTYPEEVENTCODE
Evt Code and Tsk Mappg for SAP Obj Type
I_SAPOBJECTTYPEEVENTCODE is a CDS View in S/4HANA. Evt Code and Tsk Mappg for SAP Obj Type. It contains 3 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_BusEvtSubBusObj | view | cross | COMPOSITE | Business Event Handling Subscribers |
| I_BusinessObjectEventTask | view | inner | COMPOSITE | SAP Obj Type and SAP Obj Tsk Type Mappg |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | SAPObjectEventCode | SAPObjectEventCode | 2 |
| KEY | SAPObjectTaskType | SAPObjectTaskType | 1 |
| KEY | SAPObjectType | SAPObjectType | 2 |
@AbapCatalog.sqlViewName: 'IEVTCODE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Evt Code and Tsk Mappg for SAP Obj Type'
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
define view I_SAPObjectTypeEventCode
as select from beh_i_event
association [0..*] to I_SAPObjectTypeEvtCodeTxt as _EventText on $projection.SAPObjectType = _EventText.SAPObjectType
and $projection.SAPObjectTaskType = _EventText.SAPObjectTaskType
association [0..1] to I_SAPObjectTaskType as _TaskType on $projection.SAPObjectTaskType = _TaskType.SAPObjectTaskType
{
//BEH_I_EVENT
key bo_type as SAPObjectType,
key bo_task as SAPObjectTaskType,
key bo_event as SAPObjectEventCode,
object_node_type as SAPObjectNodeType,
object_representation_type as SAPObjectRepresentationType,
object_representation as SAPObjectRepresentation,
_TaskType.SAPObjectTaskCode as SAPObjectTaskCode,
_TaskType,
_EventText
}
where
migrated_entity <> 'X'