Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
gauthamchilled
Creator
Creator

Section Access doubt

Hi,

I have the following script for section access

 

Load

* Inline


[ACCESS,USERID,PASSWORD,REGION
ADMIN,ADMIN,ADMIN,*
USER,U1,Y1,AFRICA
USER,U2,Y2,AMERICA
USER,U3,Y3,ASIA
USER,U4,Y4,EUROPE
USER,U5,Y5,*]

;

 

Section

Application

;
SALES:
LOAD

* INLINE

[
REGION, PROFIT
AFRICA, 1000
AMERICA, 2000
ASIA, 3000
EUROPE, 4000
OCEANIA, 5000
]

;

If I am the user U1, i should see only Africa and profit of 1000. But when i log in as U1, i see everything. What is wrong here?

can any one help?

1 Solution

Accepted Solutions
Anonymous
Not applicable

Have you checked "initial data reduction..." on the "Opening" tab in the document properties?

View solution in original post

6 Replies
Anonymous
Not applicable

Have you checked "initial data reduction..." on the "Opening" tab in the document properties?

gauthamchilled
Creator
Creator
Author

Great Micheal. That worked. Also if i close and re-open the document, it is not prompting me the user name and password. Is it because of caching. Is there anyway i can avoid this issue?

Anonymous
Not applicable

Hi

Opt Initial Data Reduction it will work in document properties.

Hope it will helpful!!

Anonymous
Not applicable

It is not cache.  See "user preferences", uncheck "remember login credentials..."

Siva_Sankar
Master II
Master II

Looks like you are trying section access first time, try reading a helpful document attached.

gauthamchilled
Creator
Creator
Author

Thanks.