VB_CDSVIEWS_LANGUAGE

DDL: VB_CDSVIEWS_LANGUAGE SQL: CDSVBCDSLANG Type: view

CDS for Additional Languages

VB_CDSVIEWS_LANGUAGE is a CDS View that provides data about "CDS for Additional Languages" in SAP S/4HANA. It reads from 1 data source (I_Language) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
I_Language I_Language from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName CDSVBCDSLANG view
AbapCatalog.compiler.compareFilter true view
EndUserText.label CDS for Additional Languages view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
Language Language Report Text Language
LanguageISOCode 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 VB_CDSVIEWS_LANGUAGE.
-- 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: CDSVBCDSLANG

CREATE VIEW VB_CDSVIEWS_LANGUAGE AS
SELECT
  Language,
  LanguageISOCode
FROM I_Language
;