Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Security not working

Hi,

attached shows two tabs.  the first is the security and the second it the load.  The Security for Luis.Black is not working.

Any help appreciated please.

Regards,

Laura 

31 Replies
tresesco
MVP
MVP

Put a space between 'INLINE' and '[' and retry.

Anonymous
Not applicable
Author

syntax issue. fixed but security still not working.

pradeep_s
Creator
Creator

Please UnQualify NewState Column.

QUALIFY*;


UnQualify NewState;

WAU:

Load

      AccountNumber

      ,AccountName

      ,NewState;

SQL

SELECT

      a.AccountNumber

      ,a.AccountName

      ,CASE WHEN a.State='NSW' THEN 'NSW-Black'

            WHEN a.State='VIC_South' THEN 'VIC-Red'

       ELSE a.State End as NewState

  FROM Case a;

UNQUALIFY *;

pradeep_s
Creator
Creator

Laura,

Please UnQualify NewState Column.

QUALIFY*;


UnQualify NewState;

WAU:

Load

      AccountNumber

      ,AccountName

      ,NewState;

SQL

SELECT

      a.AccountNumber

      ,a.AccountName

      ,CASE WHEN a.State='NSW' THEN 'NSW-Black'

            WHEN a.State='VIC_South' THEN 'VIC-Red'

       ELSE a.State End as NewState

  FROM Case a;

UNQUALIFY *;

tresesco
MVP
MVP

How is the behavior? Is it working for some and not for some, or working for none?

Anonymous
Not applicable
Author

all the others have access to everything and they do see everything.  its just luis.black that should see only VIC and see's everything

tresesco
MVP
MVP

Have you checked the 'Initial data reduction ..' in the document properties settings?

Capture.PNG

Anonymous
Not applicable
Author

yes.  I've checked and they are on.  I added another user with the same credentials and their security didn't work either

tamilarasu
Champion
Champion

Hi Laura,

Try below attached file.

Anonymous
Not applicable
Author

no luck.  does it have something to do with the field being created from a Case?