Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have below load script , it work fine when the script is reload on my note book OSUser = DESKTOP-9837GT0\pauly. When i implement this script on my Qlik View note book OSUser = QV-PC\QV , it will not work. because when i open the document , i only can view SOURCE = TS and not all SOURCE.
SECTION ACCESS;
LOAD * INLINE [
ACCESS, NTNAME, SOURCE
USER, DESKTOP-9837GT0\pauly,*
ADMIN, QV-PC\QV,TS
];
SECTION APPLICATION;
LOAD * INLINE [
SOURCE, description
TS, BECKHOFF
TA, SCADA
SD, MOTION
LE, ROBOTICS
];
Below image shown that when reload on my note book , i can view SOURCE = TS TA SD LE , When reload by another note book QV-PC\QV, when i open the QVW file , i only can view SOURCE = TS ( Which is not correct )
Can some one advise me where go wrong ?
Paul
Hi, in section access you have
ADMIN, QV-PC\QV,TS
Which is telling to only access the source TS, change TS by * if you want to see them all.
Hi Sir
The below script , i only need this note book view SOURCE = TS , Which is correct.
ADMIN, QV-PC\QV,TS
My issue is when using this note book QV-PC\QV reload the script. and when i open i only can view SOURCE = TS
Below is the condition for my note book access right , i should be able to view all SOURCE.
DESKTOP-9837GT0\pauly,*
When the same script , using my note book to reload , i can view SOURCE = ALL
My issue is script must reload on my note book and send to user , it will work fine ,problem happen when script reload at QV-PC\QV notebook and when i open i can only view SOURCE = TS , Which is not correct.
Paul Yeo
You should be able to reload without problems, providing the account has access to the data sources.
Section access / reduction is only applied when the document is opened. I plays no part during the reload of the document. So reloading using the QV-PC\QV account should not be a problem.
Try to create a new admin which has the authority to view all:
SECTION ACCESS;
LOAD * INLINE [
ACCESS, NTNAME, SOURCE
USER, DESKTOP-9837GT0\pauly,*
ADMIN, QV-PC\QV,TS
ADMIN,QV-PC\QVAdmin,*
];
Reload your document with this new admin.
No, this is a new admin that you need to create for section access purpose.
Hi Sir
I just remotely log in to my Qlik view note book , and i capture the OSUSER as below . I don;t understand why you add a new new admin OSUSER = QV-PC\QVAdmin ?
Hi Sir
After i have add :-
ADMIN,QV-PC\QVAdmin,*
When i reload on QV-PC\QV Notebook , i open the QVW file , i see SOURCE = TS
and when i open on my note book DESKTOP-9837GT0\pauly , i see SOURCE = TS ( Which is wrong )
Any advise ?
Paul