Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
krishna20
Specialist II
Specialist II

Restriction Tabs to the particular Users.

Hi Friends,

How can i restrict the tabs and company to particular users.The user has to login into directly without asking password into the browser.I used section access  but not working.But without section access the user login automatically .Can anyone pls help me out.

Regards

Krishna

4 Replies
ali_hijazi
Partner - Master II
Partner - Master II

in the properteis of the sheet there is a show sheet section

select conditional radio button and put your condition which may be any QlikView expression you want

you may choose if(sum(field)=0,0,1) for example

add the NTNAME field of your section access to a table in the section application and put a flag in a column for example when 1 then show sheet else hide it

I can walk on water when it freezes
krishna20
Specialist II
Specialist II
Author

Hi Ali,

By this way how can i restrict the users?

Regards

Krishna

ali_hijazi
Partner - Master II
Partner - Master II

add the NTNAME field of your section access to a table in the section application and put a flag in a column for example when 1 then show sheet else hide it

I can walk on water when it freezes
vardhancse
Specialist III
Specialist III

in the tab sheet properties->Show Sheet: Conditional

use the below code

=match(Lower(osuser()),

'NTNAME_1',

'NTNAME_2

) > 0