While creating a resource we enter attribute like locale and Time zone but when we try to check the same properties via Home > Resources or via Object > Resource we don't find these attributes.
How can we get details about resource locale and Time zone.
Component: Clarity
Release: 16.x
The Resource created in system, is stored in distributed manner where some of the administrative settings are only shown under Administration > Resources, whereas the non-administrative are shown on Home > Resources.
The attributes of Time Zone and Locale are not listed under object Resource, as those are stored as part of system object User.
The below are some listed possible ways to query the Locale and Time Zone details of a user.
select csu.user_name, srm.first_name, srm.last_name,csu.locale, csu.timezone, srm.email from cmn_sec_users csu
join srm_resources srm on srm.user_id =csu.id
and srm.unique_name like '%username%';