C_TranspOrdCtryRegVH

DDL: C_TRANSPORDCTRYREGVH SQL: CCOLLABNCTRYREG Type: view CONSUMPTION

Country Region

C_TranspOrdCtryRegVH is a Consumption CDS View that provides data about "Country Region" 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 (15)

NameValueLevelField
Consumption.ranked true view
AbapCatalog.sqlViewName CCOLLABNCTRYREG view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey Country view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
Search.searchable true view
EndUserText.label Country Region view

Fields (5)

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

CREATE VIEW C_TranspOrdCtryRegVH AS
SELECT
  Country,
  _Text[1: Language = $session.system_language].CountryName AS CountryName,
  CountryThreeLetterISOCode,
  CountryThreeDigitISOCode
FROM I_Country
;