I_BPBillingEventType
Billing Event Type
I_BPBillingEventType is a Basic CDS View (Dimension) that provides data about "Billing Event Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field EventType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBPBILLEVENT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Billing Event Type | view | |
| ObjectModel.representativeKey | EventType | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EventType | domvalue_l | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IBPBILLEVENT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@VDM.viewType: #BASIC
@EndUserText.label: 'Billing Event Type'
@ObjectModel.representativeKey: 'EventType'
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.dataClass: #MIXED
define view I_BPBillingEventType
as select from dd07l
association[0..*] to I_BPBillingEventTypeName as _Text on $projection.EventType = _Text.EventType
{
@ObjectModel.text.association: '_Text'
key domvalue_l as EventType,
_Text
}
where dd07l.domname = '/CPD/BILL_SOURCE_ID' and dd07l.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BPBILLINGEVENTTYPENAME"
],
"BASE":
[],
"VERSION":0
}
}*/
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