C_BankChainCountryVH

DDL: C_BANKCHAINCOUNTRYVH Type: view_entity CONSUMPTION

Country/Region for Bank Chains

C_BankChainCountryVH is a Consumption CDS View that provides data about "Country/Region for Bank Chains" in SAP S/4HANA. It reads from 1 data source (I_Country) and exposes 5 fields with key field Country.

Data Sources (1)

SourceAliasJoin Type
I_Country I_Country from

Annotations (11)

NameValueLevelField
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Country view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #A view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Country/Region for Bank Chains view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country Venue: Ctry/Reg
CountryName
CountryThreeLetterISOCode ISO Code 3 Char
CountryThreeDigitISOCode ISO Code Num. 3
_Text _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 C_BankChainCountryVH.
-- 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.

CREATE VIEW C_BankChainCountryVH AS
SELECT
  Country,
  _Text[1: Language = $session.system_language].CountryName AS CountryName,
  cast(CountryThreeLetterISOCode as fap_intca3 ) AS CountryThreeLetterISOCode,
  cast(CountryThreeDigitISOCode as fap_intcn3 ) AS CountryThreeDigitISOCode
FROM I_Country
;