I_FHC_CLASS_T

DDL: I_FHC_CLASS_T SQL: IFHCCLASST Type: view

Text for owner

I_FHC_CLASS_T is a CDS View that provides data about "Text for owner" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields class, language.

Data Sources (1)

SourceAliasJoin Type
dd07t class_text from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName IFHCCLASST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text for owner view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY class dd07t domvalue_l Owner
KEY language dd07t ddlanguage Lang.
class_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_CLASS_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.
-- SQL view name: IFHCCLASST

CREATE VIEW I_FHC_CLASS_T AS
SELECT
  class_text.domvalue_l AS class,
  class_text.ddlanguage AS language,
  class_text.ddtext AS class_text
FROM dd07t AS class_text
;