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: 
Chanty4u
MVP
MVP

RE:Perticular sheet

Hi all,

I have an Requirement on Section access

REQ:i have 5tabs like

Introduction  sales budjet  Quality  report

my req is...

when user open the QVW  the introduction page will open and on the top of that page need to ask user id and pass word?

is this posible in Qlikview?  Help me out on this/

thanks in adnve.

Suresh

25 Replies
Chanty4u
MVP
MVP
Author

HI PRADEEP,

i got somewat solution.... i.e.

once we open our application wit section access and move dat dailogue box to  right top .....and save close.

and if reopen it shwng  right side top only...

PradeepReddy
Specialist II
Specialist II

in this case also, your are not able to see the introduction page at first glance.

Once you provide the section access credentials then only you can enter into introduction page...

Chanty4u
MVP
MVP
Author

yeah...dat is wat am lukng.......

erivera10
Creator
Creator

Hi,

Let's see if I understand what you need is that for the same qvw model, depending on which log the user may see some content or other, according to the permissions that are given to each user. True?

Maybe this can help.

When you login as user A you can access both charts (CH01 and CH02).

When you login as user B you can access only one chart (CH01).

When you login as user C you can access only one chart (CH02).

When you login as user D you can access both charts (CH01 and CH02).

This is implemented by using Chart Properties -> Layout -> Show -> Conditional.

The charts and users are configured using ChartAccessMatrix table.  Refer below script for implementation.

Section Access;

LOAD * INLINE [

    ACCESS, USERID

    Admin, A

    User, B

    User, C

    USer, D

];

Section Application;

ChartAccessMatrix:

LOAD * INLINE [

USERID, CH01, CH02

A,1,1

B,1,0

C,0,1

D,1,1];

By @jagan

Regards,

Erivera10

jagan
Luminary Alumni
Luminary Alumni

Hi Suresh,

It is difficult to implement this functionality, you have to create manually, create input boxes, Buttons and ask user to enter the credentials and you validate those, if it is valid then display all the sheets and charts to the users.

Hope this helps you.

Regards,

Jagan.

jagan
Luminary Alumni
Luminary Alumni

Hi,

I am not sure why you are authenticating users again although  Qlikview authenticates, check this link hope it helps you.

Password Protection without Section Access

Regards,

Jagan.