Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi QV Team,
I've to appy Section Access on my Application based on NT Login.
I've created a hidden script and used following script.
************************************
Section Access;
LOAD * INLINE [
ACCESS, NTNAME
USER, TXT/AAndrade
USER, TIC/AParonica
USER, TXT/gbagby
ADMIN, TXT/sbaggiano
ADMIN, TXT/jbarrett
];
Section Application;
LOAD ACCESS,
NTNAME,
EmailID,
Sales_Representative
FROM
[..\..\Data\FlatFiles\ABC_SectionAccess_userextract.xls]
(biff, embedded labels, table is ABC_SectionAccess_userextra$);
***************************************
After doing this, i can't able to open the document anymore.
It says "Access denied".
My requirement is to reduce the fields based on the user login(NT Login)
Please some one suggest me some thing.
Hi,
try NTNAME list in capital latter.
Regards
Hi murali69
Section works on case sensitive and should use capital letters.
Section Access;
LOAD ACCESS,
Upper(NTNAME) As NTNAME
INLINE [
ACCESS, NTNAME
USER, TXT/AAndrade
USER, TIC/AParonica
USER, TXT/gbagby
ADMIN, TXT/sbaggiano
ADMIN, TXT/jbarrett
];
Follow the thread
Hi,
I followed this method but still I'm facing the same issue. After following this I'm unable to open the document.
" Access Denied to this document".
Check this :
Hi,
You are login with which userName???
Regards
Did your NT USERNAME details added into the script?
We should add.
Are you opening this in personal edition?
If yes,
Did you lease the license from the server?
One trick that might help you to find a solution could be to create a text-box and add =osuser() to make sure the username that QV fetches looks the same as the ones in your list.