I_GeographicalEntityTypeText

DDL: I_GEOGRAPHICALENTITYTYPETEXT Type: view BASIC

Geographical Entity Type Text

I_GeographicalEntityTypeText is a Basic CDS View that provides data about "Geographical Entity Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields GeographicalEntityType, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (11)

NameValueLevelField
EndUserText.label Geographical Entity Type Text view
ObjectModel.representativeKey GeographicalEntityType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IGEOENTITYTYPET view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GeographicalEntityType
KEY Language ddlanguage
GeographicalEntityTypeDesc ddtext
_GeographicalEntityType _GeographicalEntityType
_Language _Language
@EndUserText:   {label:              'Geographical Entity Type Text'}
@ObjectModel:   {representativeKey:  'GeographicalEntityType',
                 dataCategory:       #TEXT,
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'IGEOENTITYTYPET'}                             
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_GeographicalEntityTypeText
as select from dd07t
association[0..1] to I_GeographicalEntityType as _GeographicalEntityType on $projection.GeographicalEntityType = _GeographicalEntityType.GeographicalEntityType
association[0..1] to I_Language               as _Language               on $projection.Language               = _Language.Language
{
    @ObjectModel.foreignKey.association: '_GeographicalEntityType'
key cast(substring(domvalue_l, 1, 1) as /scmtms/tdl_geo_type preserving type) as GeographicalEntityType,
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
key ddlanguage                                                                 as Language,
    @Semantics.text
    ddtext as GeographicalEntityTypeDesc,
    
    /* Associations */
    _GeographicalEntityType,
    _Language
}
where domname = '/SCMTMS/TDL_GEO_TYPE'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_GEOGRAPHICALENTITYTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/