How to display current logged in user in the page?

1
Hello, How to display current logged in user in the page?   Thanks
asked
3 answers
2

several ways of achieving this.

$currentuser is available and can be shown on a page by using a data source microflow for example.

use the online mendix training for all possibilities

answered
2

As Stephan says there are several ways, for a possibility would be: 

Added the screenshot so you can see in which entity it is located

answered
2

If you want to display the FullName, you can add a Inheritance split and Cast activity on the $currentUser variable, to cast it to an Account object, which has the FullName attribute.

https://modelshare.mendix.com/models/dd553c5c-9019-4712-8c8f-099fb7e3df40/get-current-account

answered