Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey,
I applied the section access in my application as:
LOAD * Inline [
ACCESS , USERID , PASSWORD
ADMIN, ADMIN, ADMIN
SASH,SASH,SASH
LORNE,LORNE,LORNE
];
Section Application;
But when i opened it again, and provide the userid and password as SASH, i am getting all data rather than SASH data only.
Where am i wrong?
Thanks
Is it the same with LORNE?
You need to specify Access type As ADMIN or USER
LOAD * Inline [
ACCESS , USERID , PASSWORD
ADMIN, ADMIN, ADMIN
USER,SASH,SASH
USER,LORNE,LORNE
];
Section Application;
Hi,
LOAD * Inline [
ACCESS , USERID , PASSWORD
ADMIN, ADMIN, ADMIN
USER,SASH,SASH
USER,LORNE,LORNE
];
Section Application;
Then go to Document Property->Opening->Select Initial Data Reduction Based on Section Access.
Regards
Hi Nikhil,
is that your entire Section Access Script? All that's doing is making a user enter a user name and password.
Andy
YES, can you suggest something?
Add Section Access; before LOAD * INLINE.
It should look like this:
Section Access;
LOAD * Inline [
ACCESS , USERID , PASSWORD
ADMIN, ADMIN, ADMIN
USER,SASH,SASH
USER,LORNE,LORNE
];
Section Application;
Then go to Settings->Document Properties->Opening and set Initial Data Reduction Based on Section Access.
After that you can omit data for user like SASH or LORNE by adding OMIT to INLINE. You can also set user privilages
Settings->Document Properties->Security. Remeber to set Admin Override Security.
Ohk, so what should i do ?
My first statement is binary load then:
Section Access;
LOAD * Inline [
ACCESS , USERID , PASSWORD
ADMIN, ADMIN, ADMIN
USER,SASH,SASH
USER,LORNE,LORNE
];
Section Application;
In document setting , i have checked :
1: Initial data reduction based on section access
2: Section Exclusion
Do you do INLINE by Insert->Section Acces->Inline?
HI Nikhil,
maybe you should check out the attached document