Skip to main content
jeanalainb0001
May 25, 2023
Solved

CustomField(n) in record type user

  • May 25, 2023
  • 11 replies
  • 0 views

Hi all,

Is it possible to add cusomField1 to 10 into record type user ?

My first approach was adding a custom record field but user function cannot be used inside.

Any idea ?

Regards 

Jean-Alain

Best answer by stefanhelzle0001

I just did a small test. What is possible, not sure whether it is a good idea, create a separate expression backed synced record using the list of all users as the data source. This can include all the user fields, including custom fields. Then you can add a relationship between the normal user record and the new one.

11 replies

stefanhelzle0001
Brainy
May 25, 2023

I just did a small test. What is possible, not sure whether it is a good idea, create a separate expression backed synced record using the list of all users as the data source. This can include all the user fields, including custom fields. Then you can add a relationship between the normal user record and the new one.

May 25, 2023

No, it is not possible to add user customFields1..10 in User record type, AFAIK they can only be retrieved using user() function and can be updated in user settings.

Why you want to use user function in a custom record field when you can directly access any user property using rv!record[fieldName] ?

jeanalainb0001
May 26, 2023

Unfortunately these fields are not present into the record provided and are not accessible using rv!record[fieldName]. It is exactly why I try to add them using calculated fields

stefanhelzle0001
Brainy
May 26, 2023

Did you try my approach outlined above?