How to get Full Name of the current user?

-1
How can I display a FULL name of the current user? I use a microflow to store the name of the current user in the Entity attribute: $currentUser/Name This way I can get the username, but I need to get Full Name of the user (this is a registered local user)
asked
2 answers
0

Hi Maxim,

What you are looking for is the Account object that goes with the current user. Retrieve the account with xpath [id = $currentUser] and this entity has the FullName attribute. Just make sure this is filled/set earlier.

Good luck! 

answered
0

Two options; directly retrieve the Account entity with the same id from the database, or do an inheritance split and if the outcome is an Account entity, a Cast activity to get the Account of the user.

answered