A_CountryText
API Country/Region Text
A_CountryText is a Basic CDS View that provides data about "API Country/Region Text" in SAP S/4HANA. It reads from 1 data source (I_CountryText) and exposes 6 fields with key fields Country, Language. It has 1 association to related views. Part of development package FINS_FIS_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CountryText | I_CountryText | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | A_Country | _Country | $projection.Country = _Country.Country |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | API Country/Region Text | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | AFICOUNTRYTEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | Country | ||
| KEY | Language | Language | ||
| CountryName | CountryName | |||
| NationalityName | NationalityName | |||
| NationalityLongName | NationalityLongName | |||
| _Country | _Country |
@EndUserText.label: 'API Country/Region Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@AbapCatalog.sqlViewName: 'AFICOUNTRYTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
//A-view Annotation
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
define view A_CountryText
as select from I_CountryText
//association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to A_Country as _Country on $projection.Country = _Country.Country
{
key Country,
key Language,
// cast(landx as FIS_LANDX) as CountryName,
CountryName,
// cast(landx50 as FIS_ALTKT_TXT50) as CountryName,
NationalityName,
NationalityLongName,
// _Language,
_Country
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA