Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section Access NTNAME Can't get it right

I can't get it right on the server, the SDWIMPORT user still hass al Complexes ....

4 Replies
Not applicable
Author

Server is on NTFS Security

Not applicable
Author

Since it is NTNAME security, none of us will be able to open your file (unless we happen to login as SDWIMPORT)

Not applicable
Author

That's great news, but it would be creater if it blocks the users at my server !! Wink

This is the only code in the qvw





Section Access;
LOAD * INLINE [
ACCESS, NTNAME, zzSYS_Comp_Id
ADMIN, KINEPOLIS\HLEBOEUF, *
USER, KINEPOLIS\SDWIMPORT, KLOM
USER, KINEPOLIS\SDWIMPORT, METRO
];

Section Application;

[Complex]:
LOAD * INLINE [
'Complex Name', zzSYS_Comp_Id, zzSYS_Cou_Id
'Lomme', KLOM, F
'Metro', METRO, B
'Madrid', KMAD, E
];

[Country]:
LOAD * INLINE [
'Country', zzSYS_Cou_Id
'France', F
'Belgie', B
'Espana', E
];

And even if the user KINEPOLIS\SDWIMPORT logs in he sees all complxes.

And i'm sure that NTFS is on as in the first test i've forgotten to ann this user to the access-list and a login screen poped-up.



rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Check the documentation for SECTION ACCESS. You'll find that all fieldnames (even non-system fields) must be upper case.

zzSYS_Comp_Id will not work.

-Rob