Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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:
Line chart:
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
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
There is a little bit more convenient syntax:
=wildmatch(OSIser(),'*James*','*Bill*','*Andrew*','*Madhu*')