Constraining System Roles to Show only a specified list

3
I am working an overview form which shows all system roles . I need to Constrain form to not show Mxadmin Or Developer roles.I use constraint [Name != 'MxAdministrator' or Name != 'Developer'] it doesnt seem to work , is there another way around this ?
asked
2 answers
5

I totally agree with Dennis about using Instance Access. However, if you still want to put the constraint, you have to select the reference set selector put the constraint (see below) on the reference set selector instead of the selection form:

[Name != 'MxAdministrator'][Name != 'Developer']

Note: you should use 'And' instead of 'or' in your constraint.

answered
2

It is safer to set your Instance Access, in the Security section. You can find your answer here

answered