R_EvtBsdPostgRuleDistrMethod
EB Posting Rule Distribution Method
R_EvtBsdPostgRuleDistrMethod is a Composite CDS View that provides data about "EB Posting Rule Distribution Method" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 3 fields with key fields EvtBsdPostgRuleDistrMethod, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | REBPSTRLDSTMTD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | EvtBsdPostgRuleDistrMethod | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | EB Posting Rule Distribution Method | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EvtBsdPostgRuleDistrMethod | |||
| KEY | Language | Language | ||
| EvtBsdPostgRuleDistrMethodText |
@AbapCatalog.sqlViewName: 'REBPSTRLDSTMTD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@ObjectModel: {
usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
}
}
@ObjectModel.representativeKey: 'EvtBsdPostgRuleDistrMethod'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'EB Posting Rule Distribution Method'
define view R_EvtBsdPostgRuleDistrMethod
as select from I_DomainFixedValueText
{
@ObjectModel.text.element: 'EvtBsdPostgRuleDistrMethodText'
key cast(DomainValue as fco_ebpr_distribution_method) as EvtBsdPostgRuleDistrMethod,
@UI.hidden: true
key Language,
@Semantics.text: true
cast(DomainText as fco_ebpr_distribution_meth_txt) as EvtBsdPostgRuleDistrMethodText
}
where
SAPDataDictionaryDomain = 'FCO_EBPR_DISTRIBUTION_METHOD'
and Language = $session.system_language
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