How can i see my own name on my home page?

0
hello I tried to retrieve current user name and display on the home page but finished with no result. could any one help me to explain how to show the current user name on the home page with steps?, thank you
asked
3 answers
3

You need to add a dataview with source as microflow. Retrieve current user in that microflow and then pass that object as return value.

Something like this

 

 

answered
5

Hi,

 

Use the dataview on the home page with the source of microflow.

--Retrieve current user in that microflow and then pass that object as return value.

-- In the snippet page you can use the button and add the caption as below.

 

I hope its helps.

 

answered
2

Hi Ablikim,

I think this can be done in the following steps:

- Create a dataview on the homepage with as data source a microflow

- Create a new microflow. In this microflow you do a database retrieve on account and set the range to first.

- In the xpath constraint of the retrieve set: [id = '[%CurrentUser%]'].

- In the end object return an object and select the newly retrieved account.

- In the dataview on the homepage you can now set a textfield. Open the properties and click on edit next to the caption.

- Add the name to the parameters and use it in your caption by typing {1}

 

Hope this helps

answered