Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
Is this possible to control all security(Document Properties -> Security) through window log in?
I do not want 'Initial Data Reduction based on Section Access'
I tried with below, but it breaks with some actual data issue
I need to assign ACCESS only so end user cant play with security without asking any userid/password
Section
Access;
LOAD If(Upper(OSUser())= 'CB\SATISHK','ADMIN', 'USER') As ACCESS;
Section Application;
I appreciate your help
Thanks
Once you use Section Access, all visitors need to be identified. There is no escape from that requirement.
However, a possible solution for your case could be much simpler. Add this to your Section Access;-Section Application; script area:
Section Access;
LOAD * INLINE [
NTNAME, ACCESS
CB\SATISHK, ADMIN
*, USER
];
Section Application;
:
Best,
Peter
:
Please read as
Section Access;
LOAD If(Upper(OSUser())= 'CB\SATISHK','ADMIN', 'USER') As ACCESS;
Section Application;
Once you use Section Access, all visitors need to be identified. There is no escape from that requirement.
However, a possible solution for your case could be much simpler. Add this to your Section Access;-Section Application; script area:
Section Access;
LOAD * INLINE [
NTNAME, ACCESS
CB\SATISHK, ADMIN
*, USER
];
Section Application;
:
Best,
Peter
:
Hi Peter
It works, great
Thanks for your efforts