I_BUSINESSEVENTBINDINGHEADER
Business Event Binding Header
I_BUSINESSEVENTBINDINGHEADER is a CDS View in S/4HANA. Business Event Binding Header. 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 |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Business Event Binding Header'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity I_BusinessEventBindingHeader
as select from evtb_producer
inner join beh_i_tasktype on evtb_producer.bo_operation = beh_i_tasktype.bo_taskcode
inner join I_SAPObjectType_2 on evtb_producer.bo_name = I_SAPObjectType_2.SAPObjectType
left outer to one join beh_e_blkd_evts on evtb_producer.bo_name = beh_e_blkd_evts.bo_name
and evtb_producer.bo_operation = beh_e_blkd_evts.bo_operation
{
key evtb_producer.evtb_name as EventBinding,
evtb_producer.bo_name as SAPObjectType,
evtb_producer.bo_operation as EventOperation
}
where
(
evtb_producer.producer_namespace = 'sap.s4.beh'
and evtb_producer.version = 'A'
)
and beh_e_blkd_evts.status is null
and I_SAPObjectType_2.ObjectTypeCode is not null
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SAPOBJECTTYPE_2",
"BEH_E_BLKD_EVTS",
"BEH_I_TASKTYPE",
"EVTB_PRODUCER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/