C_DFS_PositionLanguageVH

DDL: C_DFS_POSITIONLANGUAGEVH SQL: CDFSPOSLANGVH Type: view CONSUMPTION

Consumption View of Language ValueHelp

C_DFS_PositionLanguageVH is a Consumption CDS View that provides data about "Consumption View of Language ValueHelp" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 3 fields with key field Language.

Data Sources (1)

SourceAliasJoin Type
I_Language PositionLanguageVH from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CDFSPOSLANGVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
EndUserText.label Consumption View of Language ValueHelp view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language I_Language Language Language Code
LanguageISOCode I_Language LanguageISOCode Language Iso Code
LanguageName Language Desc

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_DFS_PositionLanguageVH.
-- 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: CDFSPOSLANGVH

CREATE VIEW C_DFS_PositionLanguageVH AS
SELECT
  PositionLanguageVH.Language AS Language,
  PositionLanguageVH.LanguageISOCode AS LanguageISOCode,
  PositionLanguageVH._Text[1:Language=$session.system_language].LanguageName AS LanguageName
FROM I_Language AS PositionLanguageVH
;