Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
sunilkumarqv
Specialist II
Specialist II

On textbox obj show user logged on date

hi all,

     On  text box  write a script to show looged on user date or user details ,while opening a qlikview want to diplay date on  textbox obj .Please help me out .

1 Solution

Accepted Solutions
Sokkorn
Master
Master

Hi Sunil,

You may look into this function:

=OSuser() - Returns a string containing the name of the current user as returned by the operating system.

=QVuser() - Returns a string containing the name of the current QlikView user as entered in a section access.

=ComputerName() - Returns a string containing the name of the computer as returned by the operating system.

=ReloadTime() - Returns a timestamp for when the script last finished reexecuting.

Regards,

Sokkorn

View solution in original post

3 Replies
Sokkorn
Master
Master

Hi Sunil,

You may look into this function:

=OSuser() - Returns a string containing the name of the current user as returned by the operating system.

=QVuser() - Returns a string containing the name of the current QlikView user as entered in a section access.

=ComputerName() - Returns a string containing the name of the computer as returned by the operating system.

=ReloadTime() - Returns a timestamp for when the script last finished reexecuting.

Regards,

Sokkorn

sreenivas
Creator III
Creator III

  Take a text object & paste the below lines

Data accessed ' &

now(2) & '  User ' & OSUser()

MK_QSL
MVP
MVP

Also check below to add Time and Date...

now([ timer_mode])

Returns a timestamp of the current time from the system clock. The timer_mode may have the following values:

0 Time at previously finished reload (not currently ongoing reload)
1 Time at function call
2 Time when the document was opened  

Default timer_mode is 1. The timer_mode = 1 should be used with caution, since it polls the operating system every second and hence could slow down the system.