C_SubscrpnProdSpecLangVH

DDL: C_SUBSCRPNPRODSPECLANGVH SQL: CSPRODLANGVH Type: view CONSUMPTION

Consumption value help for language

C_SubscrpnProdSpecLangVH is a Consumption CDS View that provides data about "Consumption value help for language" 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 I_Language from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSPRODLANGVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Consumption value help for language view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Consumption.ranked true view
ObjectModel.representativeKey Language view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
LanguageName
LanguageISOCode Language ISO Code

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_SubscrpnProdSpecLangVH.
-- 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: CSPRODLANGVH

CREATE VIEW C_SubscrpnProdSpecLangVH AS
SELECT
  Language,
  _Text[1: Language=$session.system_language].LanguageName AS LanguageName,
  cast(LanguageISOCode as languageisocode preserving type ) AS LanguageISOCode
FROM I_Language
;