C_EventBasedPostingMethodVH

DDL: C_EVENTBASEDPOSTINGMETHODVH Type: view_entity CONSUMPTION

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)

SourceAliasJoin Type
I_DomainFixedValueText I_DomainFixedValueText from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY EventBasedPostingMethod Lower Value
KEY Language Language Report Text Language
EventBasedPostingMethodName DomainText Short Description

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_EventBasedPostingMethodVH.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_EventBasedPostingMethodVH AS
SELECT
  cast(DomainValue as fco_eb_post) AS EventBasedPostingMethod,
  Language,
  DomainText AS EventBasedPostingMethodName
FROM I_DomainFixedValueText
;