Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
stvegerton
Creator III
Creator III

Publishing to Streams that you don't own?

Trying to create a rule that will allow our developers the ability to publish to streams that they don't own and it's not working. Do you see something wrong with my rule?

UAT Security Rule.JPG

1 Solution

Accepted Solutions
Anonymous
Not applicable

Hi stvegerton,

The problem is the condition [resource.name like ''UAT"]. The LIKE operator matches the same text between quotes in non-sensitive case. If you want that it matches UAT and something else, you must use asterik '*' after UAT text.

It would be: [resource.name like "UAT*"]

Here, you have the link to documentation

Operators and functions for conditions ‒ Qlik Sense

I hope this help you

Regards,

JuanJo

View solution in original post

2 Replies
Anonymous
Not applicable

Hi stvegerton,

The problem is the condition [resource.name like ''UAT"]. The LIKE operator matches the same text between quotes in non-sensitive case. If you want that it matches UAT and something else, you must use asterik '*' after UAT text.

It would be: [resource.name like "UAT*"]

Here, you have the link to documentation

Operators and functions for conditions ‒ Qlik Sense

I hope this help you

Regards,

JuanJo

stvegerton
Creator III
Creator III
Author

Thanks JuanJo, that worked great.