Fdt_Test_Country_Text

DDL: FDT_TEST_COUNTRY_TEXT SQL: FDT_TEST_CNTRY_T Type: view

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)

SourceAliasJoin Type
t005t t005t from

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName FDT_TEST_CNTRY_T view
ObjectModel.dataCategory #TEXT view
EndUserText.label Country/Region Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/