Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I'm trying to achieve (if it is possible) a section access in which i identify user only by their Domaine name .
For exemple juste users belonging to Domaine1 are allowed to open\acces my application .Is it possible ?
The aim behind all this , is to allow two users from another domain to access the application (NTFS access on server ) and while openning the application ,the data will be restricted for them .
Any suggestions?
Thx
You can enter a NT domain group name in section access field NTNAME, but then you need to put all your users into the appropriate group.
HI,
you can use NTNAME for that
section access;
LOAD * INLINE [
ACCESS, NTNAME
ADMIN,DOMAIN\ADMIN
USER,DOMAIN\USER
];
section application;
Have you an exemple plz ?
thx
that's what i'm using actually .what i want is instead of using DOMAIN\ADMIN i want juste to specify the DOMAIN .
Thx
hi,
i didn`t understand one thing here ,
you are just allowing only Domain then what about the users
Do you want to allow all the users of that domain or what ?
No
Ill use NTFS authoriszation for that .
the section access is juste for data restriction . Every domaine is allowed to see data related to his area .
HI,
You can check by just specifying Domain name
Section Access;
LOAD * INLINE [
ACCESS , NTNAME
ADMIN, DOMAIN1
ADMIN.DOMAIN2
];
Section Application;
i am not sure try once
Every domain in AD has a group called Domain Users. You can use DOMAIN\GROUPNAME in Section Access just like DOMAIN\USERNAME (replace DOMAIN & Co with the values that are applicable in your environment). So I suggest you use that one to let SA grant access to anyone belonging to a particular domain.
Although IMHO I think you're making QlikView security quite difficult to manage.
Best,
Peter
Hi
Doesn't work .