I_BusPartTelCountryPrefix

DDL: I_BUSPARTTELCOUNTRYPREFIX SQL: IBPTELCOUNTRY Type: view BASIC

Country Prefix for phone numbers

I_BusPartTelCountryPrefix is a Basic CDS View that provides data about "Country Prefix for phone numbers" 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..*] I_CountryText _CountryText $projection.Country = _CountryText.Country

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPTELCOUNTRY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.representativeKey Country view
Search.searchable true view
EndUserText.label Country Prefix for phone numbers view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Country t005k land1 Trip Ctry/Reg
TelephoneCountryPrefix t005k telefto International Area Code
_CountryText _CountryText

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_BusPartTelCountryPrefix.
-- 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: IBPTELCOUNTRY

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