Hi,
what is the easiest way to show the current username on a report?
BR,
Oli
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Username on Reports
-
- nuBuilder Team
- Posts: 4562
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 528 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);