C_EventBasedPostingMethodVH
Event based posting method
C_EventBasedPostingMethodVH is a Consumption CDS View that provides data about "Event based posting method" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 3 fields with key fields EventBasedPostingMethod, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_DomainFixedValueText | I_DomainFixedValueText | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Event based posting method | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #CONSUMPTION | view | |
| UI.textArrangement | #TEXT_ONLY | view | |
| ObjectModel.representativeKey | EventBasedPostingMethod | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EventBasedPostingMethod | |||
| KEY | Language | Language | ||
| EventBasedPostingMethodName | DomainText |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Event based posting method'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
dataCategory: #VALUE_HELP,
usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #S
}
}
@VDM.viewType: #CONSUMPTION
@UI.textArrangement: #TEXT_ONLY
@ObjectModel.representativeKey: 'EventBasedPostingMethod'
define view entity C_EventBasedPostingMethodVH as select from I_DomainFixedValueText
{
@ObjectModel.text.element: ['EventBasedPostingMethodName']
key cast(DomainValue as fco_eb_post) as EventBasedPostingMethod,
@UI.hidden: true
key Language,
@Semantics.text: true
DomainText as EventBasedPostingMethodName
}
where
SAPDataDictionaryDomain = 'FCO_EVENTBASED_POSTING_METHOD'
and Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_DOMAINFIXEDVALUETEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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