C_TelephoneCountryVHTemp

DDL: C_TELEPHONECOUNTRYVHTEMP SQL: CTELCOUNTRYVH Type: view CONSUMPTION

Value Help for Country/Region

C_TelephoneCountryVHTemp is a Consumption CDS View that provides data about "Value Help for Country/Region" in SAP S/4HANA. It reads from 1 data source (t005k) and exposes 3 fields with key field Country. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t005k t005k from

Associations (1)

CardinalityTargetAliasCondition
[1..*] C_TelCountryTextVHTemp _Text $projection.Country = _Text.Country

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CTELCOUNTRYVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey Country view
Search.searchable true view
EndUserText.label Value Help for Country/Region view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Country t005k land1 Trip Ctry/Reg
TelephoneCountryPrefix t005k telefto International Area Code
_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_TelephoneCountryVHTemp.
-- 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: CTELCOUNTRYVH

CREATE VIEW C_TelephoneCountryVHTemp AS
SELECT
  t005k.land1 AS Country,
  t005k.telefto AS TelephoneCountryPrefix
FROM t005k
LEFT OUTER JOIN C_TelCountryTextVHTemp AS _Text ON Country = _Text.Country  -- association [1..*]
;