Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to set userid and password to qlikview objects?

Hi ,

I  created bar chart and straighttable linechart.when users connect to qlikview application they show all objects but the problem is user only see their specific object.for example username james open qlikview appliction he see only his barchart.user2 open QV APP he see only Line chart.I do not know how to set username and password on object level.pls tell me out how to set username and password to objects in qlikview.

barchart:

Bar chart snippingfile.PNG


Line chart:

Button Macro 2.JPG

3 Replies
maxgro
MVP
MVP

if you want to show/hide objects (chart) depending on the user of the application

you can use the osuser() function to get the user and hide/show in show conditional of the layout tab of the object

awhitfield
Partner - Champion
Partner - Champion

Hi Madhu,

as per maxgro‌ , you would set tis on the 'Layout' tab of you chart object in the 'Show' conditional field,

e.g

If(OSUser() = 'James',1,0)

HTH Andy

Anonymous
Not applicable
Author

There is a little bit more convenient syntax:

=wildmatch(OSIser(),'*James*','*Bill*','*Andrew*','*Madhu*')