I_FHC_MONTH_T

DDL: I_FHC_MONTH_T Type: view_entity

Month text

I_FHC_MONTH_T is a CDS View that provides data about "Month text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields month_value, language.

Data Sources (1)

SourceAliasJoin Type
dd07t month_text from

Annotations (4)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Month text view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY month_value dd07t domvalue_l Month
KEY language dd07t ddlanguage Lang.
month_text dd07t ddtext Short text

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_T.
-- 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_T AS
SELECT
  month_text.domvalue_l AS month_value,
  month_text.ddlanguage AS language,
  month_text.ddtext AS month_text
FROM dd07t AS month_text
;