Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
nsm1234567
Creator II
Creator II

NTDOMAINSID in section access not working in November 2020

Hi there,

I've just upgraded to Qliksense November 2020 from June 2020.  In June 2020 there were bugs in the section access and I've picked up additional problems in this release.  We currently run code similar to the below for our section access where we include the NTDOMAINSID (i've just starred out the actual SID).

We binary load from a number of Qlikview apps which use this sort of section access.  After upgrading these binary loads all fail with a "General Script Error."  I've double-checked the NTDOMAINSID we've used and it's correct.  As soon as I remove it from the section access, binary load succeeds.

Is this a known issue?  Is there any workaround?  I'm guessing it hasn't been picked up as not all clients use the NTDOMAINSID?

star is *;
section access;
// Load Customer users and passwords
SECURITY:
Load //NT AUTHENTICATION
IF(LEFT([TYPE],1) = 'A','USER','ADMIN') AS ACCESS,
upper([USERID]) AS NTNAME,
'S-1-5-21-*****-***-***' AS NTDOMAINSID,
'*' AS USERID,
'*' AS PASSWORD
FROM [$(vSecurity_Path)] (biff, embedded labels, table is [$(vUserSheet)$]);


section application;


star is ;

0 Replies