Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
mwallman
Creator III
Creator III

User Access Rule: How to exclude Qlik Service Account from the rule?

Hi all,

We have a User Access Rule (QMC > License Usage Summary > User Access rules).

Our rule says to automatically grant users a license if they belong to a list of AD groups.

Our service account belongs to one of these groups and I am trying to exclude it from being granted a license because my understanding is service accounts should not be granted a Qlik license.

How can I write a rule which grants licenses to users who belong to the AD groups, but exclude a specific account?

Our current access rule is written like this:

 

((user.userDirector="ADGroup1" or user.userDirector="ADGroup2" or user.userDirector="ADGroup3"))

 

The service account belongs to ADGroup1.

1 Reply
durgesh22
Creator
Creator

(((user.userDirector="ADGroup1" or user.userDirector="ADGroup2" or user.userDirector="ADGroup3")) and user.name!="QlikServiceAccoutName")

 

Try this hope it help!