How to show Welcome User on top of page

0
i would like to show a welcome user ( whoever logs in with their name showing up ) on top of the page or right top corner of the page. how is this done ?
asked
2 answers
2

You can add a data view to your page with microflow as a source and return Account object of the current user from that microflow.

Microflow:

 

Dataview:

answered
1

actually, when you login the current user is already on mendix, you dont need to retrieve to compare with db, it will make a lot of overhead, if your application have a lot of users, then connection will be a problem.

create a microflow like this

 

Then on the home page you can pass the account information into text.

 

answered