Fdt_Test_Country_Text
Country/Region Text
Fdt_Test_Country_Text is a CDS View that provides data about "Country/Region Text" in SAP S/4HANA. It reads from 1 data source (t005t) and exposes 5 fields with key fields Country, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t005t | t005t | from |
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FDT_TEST_CNTRY_T | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Country/Region Text | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Country | land1 | ||
| KEY | Language | spras | ||
| CountryName | landx | Country/Region Text | ||
| Nationality | natio | |||
| CountryNameLong | landx50 |
@AbapCatalog.sqlViewName: 'FDT_TEST_CNTRY_T'
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Country/Region Text'
define view Fdt_Test_Country_Text
as select from t005t
{
key land1 as Country,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
@EndUserText.label: 'Country/Region Text'
@UI.hidden: true
landx as CountryName,
natio as Nationality,
landx50 as CountryNameLong
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T005T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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