Hi,
I have created right working Section Acess to define the sub-set of data for any possible users:
Section Access;
LOAD * INLINE [
ACCESS, NTNAME, GRUPPO,
ADMIN, A, *
USER, B, BB
USER, C, CC
...
];
Section Application;
Now I would add another Admin who the only one with password (like in the following lines), but it doesn't work...
Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD, GRUPPO
ADMIN, ADMIN, ADMIN, *
];
Section Application;
Any aid?
Thanks