Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

Section access issue for the user to login

Hi all,

In the hidden script below i have coded

Section Access;

LOAD * INLINE [

    ACCESS, USERID, REVIEW_FLAG

    ADMIN, X113861, Yes

    ADMIN, X113861, No

    ADMIN, A015681, Yes

    ADMIN, A015681, No

    USER, X113547, Yes

  ];

Section Application;

in the main tab

T1:

LOAD Month, REVIEW_FLAG

FROM (biff, embedded labels, table is Sheet1$);

As a admin i can able to log on and view both flag Yes and No

But as user i can't login , its showing as access denied, can you help me on this

I checked all the ways by selecting the initial data reduction int he settings but the user(X113547) can't able to open.

i have attached the file and sample data,to open  hidden script password is test.

12 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

Try to converting data in upper case in both section access and in section application, then it will work.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Bala_s
Contributor III
Contributor III

Hi Manoranjan,

In the Hidden Script use as below and also make in upper case in Excel as well, for me it worked

Section Access;

LOAD * INLINE [

    ACCESS, USERID, REVIEW_FLAG

    ADMIN, X113861, YES

    ADMIN, X113861, NO

    ADMIN, A015681, YES

    ADMIN, A015681, NO

    USER, X113547, YES

  ];

Section Application;

check and let me know.

Regards,

Bala

manoranjan_d
Specialist
Specialist
Author

peter thanks i changed the values to upper case , thanks for the help