cancel
Showing results for 
Search instead for 
Did you mean: 

retrieve user information

Former Member
0 Kudos

Hello,

Is there any way to retrieve user information (Profile) of currently EP logged user?

Thanks,

Prashant

Accepted Solutions (1)

Accepted Solutions (1)

ThatSAPGuy
Advisor
Advisor
0 Kudos

Prashant-

Use the User Data element. Drag and drop it into your layout, and its ready to use. This element contains all the fields that are present in the Identity Management screen of the UME like first name, last name, email, telephone, etc. To get the first name of the logged in user use:


USER@FIRSTNAME

Cheers-

Atul

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Prashant,

Just follow the below steps:

1.Drag Userdata Connecter to your VC

2.Click on it and got to configure of that Control ,Press +

3.Select Personalize Property.

Give as folows:Name – userdata

Type – Boolean

Default Value – true

4.Drag a form view and add a Plain text control then go the Properties of that control .

5.In dispaly tab go to Label and Give the formula:IF(USER@userdata,"Welcome "&USER@FIRSTNAME&" "&USER@LASTNAME, "Welcome")

6.Now deploy and Run it then see the magic:-)

Regards,

Govindu

Former Member
0 Kudos

Hi Prasanth,

Atul is also currect this method is alternative.This method uses the existting properties of Userdata.

In my method we can define our own propeties which can be dynamically change in the portal if you dont want to display the Userdata.

Both are ok .

Regards,

Govindu

Former Member
0 Kudos

Thanks Govindu and Atul,

Points are awarded...