Displaying Real Name Instead Of UserName From Tracking Layer

777
2
06-24-2020 03:56 PM
Ctal_GISsquad
New Contributor III

Hi, I am using ArcGIS Dashboard to display 'Last Known Location' info from Tracker App. On the list widget, I wanted to display real name of the user instead of their ArcGIS Username. So, it would look like "Sam was Walking at 9 pm' instead of 'D_Sam was Walking at 9 pm'. I could create a new field in the feature layer and display it in the list widget. The only problem is Tracker layer's schema cannot be changed. 

So I was wondering if there is any way to replace the usernames with real names and display it in the list widget?

0 Kudos
2 Replies
by Anonymous User
Not applicable

If you are using ArcGIS Online or a future version of Enterprise (after 10.8), the location tracking layers will have a full_name field. The next release of the mobile app will auto-populate this field, if it exists in the layer. The Tracker 20.2 release is currently scheduled for June 30th 2020.

AdministrátorJihlava
New Contributor III

Hi,

we use Arcade expression in a configuration of a pop-ups in web map. We're creating new custom field and use something like this: 

var uzivatel = $feature["created_user"]

if (uzivatel == "mp_okrsek_mesto"){
return "Křišťál"
}
else if (uzivatel == "mp_okrsek_mesto2"){
return "Sobotka"
}
else return "Test"

Hope it'll help.

Jane

0 Kudos