I_COUNTRYTEXT

CDS View

Country/Region - Text

I_COUNTRYTEXT is a CDS View in S/4HANA. Country/Region - Text. It contains 4 fields. 13 CDS views read from this table.

CDS Views using this table (13)

ViewTypeJoinVDMDescription
A_CountryText view from BASIC API Country/Region Text
C_BankAcctTextVhTemp view from CONSUMPTION Bank Text Value Help
C_Countrytextvhtemp view from CONSUMPTION Value help for country text
C_EDCDocumentList view_entity inner CONSUMPTION EDC Consistency List
C_House_Bank_App view left_outer CONSUMPTION House Bank Consumption view
C_MX_DueTaxAndWhldgTxItemCube view left_outer CONSUMPTION Mexico specific Due Tax and Withholding Tax Item
C_TelCountryTextVHTemp view from CONSUMPTION telephone country text value help
I_EHSCountriesTextExclGroups view from BASIC Country/Region names excluding groups
I_EHSQnaireValidityAreaVH view_entity from BASIC EHS Questionnaire Validity area
P_CnsldtnCountryT view from COMPOSITE Consolidation Combined Country/Region - Txt
P_EG_CompanyCode_Address view inner COMPOSITE Returns concateneted fields from company code address
P_SA_CompanyCode_Address view inner COMPOSITE KSA VAT Company Code Address
P_Supplier_Fs view left_outer BASIC Private Factsheet - Supplier

Fields (4)

KeyField CDS FieldsUsed in Views
KEY Country BankCountryKey,Country 2
KEY Language Language 2
CountryName CountryName 3
CountryShortName CountryShortName 1
@Analytics: { dataExtraction.enabled: true }
@AbapCatalog.sqlViewName: 'IFICOUNTRYTEXT'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #GENERIC
@AbapCatalog.buffering.numberOfKeyFields: 2
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Country/Region - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'Country'
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass:  #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #LANGUAGE_DEPENDENT_TEXT]
@Search.searchable: true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API


define view I_CountryText
  as select from t005t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [0..1] to I_Country  as _Country  on $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
  key land1   as Country,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key spras   as Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      landx50 as CountryName,
      natio   as NationalityName,
      natio50 as NationalityLongName,
      @Semantics.text: true
      landx   as CountryShortName,

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _Country,
      _Language

}