Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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.
Hi,
Try to converting data in upper case in both section access and in section application, then it will work.
Regards,
Kaushik Solanki
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
peter thanks i changed the values to upper case , thanks for the help