Full Name Of Current User

0
Hi, I have a table with a field UserResponsible this is a string. I want to be able to count the number of records in this table where the UserResponsible = The current users Full Name however I cannot find a way to access the full name of the user. I can access $currentUser/Name but this is their username not the full name. How could I access their full name?   Thanks
asked
1 answers
1

FullName is an attribute of Account, not of User.

You can retrieve the Account of the current user using a retrieve from database with xpath

[id = $currentUser]

answered