I_VisualLocationTimeZone

DDL: I_VISUALLOCATIONTIMEZONE SQL: IVISLOCTIMZONE Type: view BASIC

Location Time Zone for Visualizations

I_VisualLocationTimeZone is a Basic CDS View that provides data about "Location Time Zone for Visualizations" in SAP S/4HANA. It reads from 2 data sources (adrc, oifspbl) and exposes 2 fields with key field TSWLocationID.

Data Sources (2)

SourceAliasJoin Type
adrc _AddressDetails inner
oifspbl _BusinessData from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IVISLOCTIMZONE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Location Time Zone for Visualizations view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY TSWLocationID oifspbl pblnr
LocationTimeZone adrc time_zone
@AbapCatalog.sqlViewName: 'IVISLOCTIMZONE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Location Time Zone for Visualizations'
@ObjectModel:{
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #L,
    usageType.dataClass: #MASTER
}
define view I_VisualLocationTimeZone as select from oifspbl as _BusinessData
inner join adrc as _AddressDetails
  on _BusinessData.addrnum = _AddressDetails.addrnumber
{
   key _BusinessData.pblnr                              as TSWLocationID,
  _AddressDetails.time_zone                             as LocationTimeZone
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"ADRC",
"OIFSPBL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/