Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
mikecrengland
Creator III
Creator III

QVUser() Doesn't return value

Hello All -

We are trying to return the QVUser and are not having any luck. I've built a text object with =qvuser() to test it and the developers have built a section access table (a sample):

section access;

LOAD * INLINE [

      ACCESS, NTNAME, GROUP

       ADMIN, 'TAC_NT\!Qlikview',                 ' '

       ADMIN, 'TAC_NT\Data Specialists',           'MA'

       ADMIN, 'TAC_NT\MSight Administration',     'MA'

}:

We're hoping to be able to retrieve the AD group to set values in a list box.

Any thoughts on what we're missing?

Thanks,

1 Solution

Accepted Solutions
Anonymous
Not applicable

Mike,

QVUser() returns result only if you use USERID in Section Access.  You don't use it here.  But you can use OSUser() instead.

Regards,

Michael

View solution in original post

2 Replies
Anonymous
Not applicable

Mike,

QVUser() returns result only if you use USERID in Section Access.  You don't use it here.  But you can use OSUser() instead.

Regards,

Michael

mikecrengland
Creator III
Creator III
Author

Thanks, Michael.