I_BusinessEventBindingHeader
Business Event Binding Header
I_BusinessEventBindingHeader is a Basic CDS View that provides data about "Business Event Binding Header" in SAP S/4HANA. It reads from 3 data sources (beh_i_tasktype, evtb_producer, I_SAPObjectType_2) and exposes 3 fields with key field EventBinding. Part of development package BEH_REPOSITORY.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| beh_i_tasktype | beh_i_tasktype | inner |
| evtb_producer | evtb_producer | from |
| I_SAPObjectType_2 | I_SAPObjectType_2 | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Business Event Binding Header | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EventBinding | evtb_producer | evtb_name | |
| SAPObjectType | evtb_producer | bo_name | ||
| EventOperation | evtb_producer | bo_operation |
@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
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA