I_FHC_MONTH_VH

DDL: I_FHC_MONTH_VH Type: view_entity

Value help for month

I_FHC_MONTH_VH is a CDS View that provides data about "Value help for month" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field month_value. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l month_values from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_FHC_MONTH_T _month_t $projection.month_value = _month_t.month_value

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value help for month view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY month_value dd07l domvalue_l Lower Value
_month_t _month_t

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 I_FHC_MONTH_VH.
-- 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 I_FHC_MONTH_VH AS
SELECT
  month_values.domvalue_l AS month_value
FROM dd07l AS month_values
LEFT OUTER JOIN I_FHC_MONTH_T AS _month_t ON month_value = _month_t.month_value  -- association [0..*]
;