Hi,
what is the easiest way to show the current username on a report?
BR,
Oli
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Username on Reports
-
- nuBuilder Team
- Posts: 4292
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: Username on Reports
One possibility: Set a Hash Cookie before running the Report.
Depending on how you open the report, add true to set a global Hash Cookie
In a report label, add #USER_NAME#
Code: Select all
nuSetProperty('USER_NAME',nuUserName());
Code: Select all
nuSetProperty('USER_NAME',nuUserName(), true);