I_GeographicalEntityType

DDL: I_GEOGRAPHICALENTITYTYPE Type: view BASIC

Geographical Entity Type

I_GeographicalEntityType is a Basic CDS View (Dimension) that provides data about "Geographical Entity Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field GeographicalEntityType.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (12)

NameValueLevelField
EndUserText.label Geographical Entity Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey GeographicalEntityType 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 IGEOENTITYTYPE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY GeographicalEntityType
_Text _Text
@EndUserText:   {label:              'Geographical Entity Type'}
@Analytics:     {dataCategory:       #DIMENSION, 
                 dataExtraction:     {enabled: true}}
@ObjectModel:   {representativeKey:  'GeographicalEntityType',
                 usageType:          {serviceQuality: #A,
                                      sizeCategory:   #S,
                                      dataClass:      #CUSTOMIZING}}
@VDM:           {viewType:           #BASIC}
@AbapCatalog:   {compiler:           {compareFilter: true},
                 sqlViewName:        'IGEOENTITYTYPE'}
@AccessControl: {authorizationCheck: #NOT_REQUIRED}
@ClientHandling.algorithm:           #SESSION_VARIABLE

define view I_GeographicalEntityType
as select from dd07l
association[0..*] to I_GeographicalEntityTypeText as _Text on $projection.GeographicalEntityType = _Text.GeographicalEntityType
{
    @ObjectModel.text.association: '_Text'
key cast(substring(domvalue_l, 1, 1) as /scmtms/tdl_geo_type preserving type) as GeographicalEntityType,
    
    /* Associations */
    _Text
}
where domname = '/SCMTMS/TDL_GEO_TYPE'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_GEOGRAPHICALENTITYTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/