I_BankAccountTextLanguageVH

DDL: I_BANKACCOUNTTEXTLANGUAGEVH SQL: IBKACCTXTLANGUVH Type: view COMPOSITE

Bank Account Description Language

I_BankAccountTextLanguageVH is a Composite CDS View that provides data about "Bank Account Description 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 (14)

NameValueLevelField
AbapCatalog.sqlViewName IBKACCTXTLANGUVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Bank Account Description Language view
Search.searchable true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
AbapCatalog.preserveKey true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language Language Report Text Language
LanguageName
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 I_BankAccountTextLanguageVH.
-- 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: IBKACCTXTLANGUVH

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