Solved

Grant Permission Set to User - Filter Options

  • 11 December 2020
  • 3 replies
  • 353 views

Userlevel 4
Badge +10

Hello

IFS8 -Can anyone assist me with using filter in the page ‘Grant Permission Set to User’, how can get multiple columns (Permissions sets).

I tried semi  colon and comma to separate them but that’s not working. which separator should i use to filter my columns.

Thanks

icon

Best answer by durette 12 December 2020, 00:25

View original

This topic has been closed for comments

3 replies

Userlevel 7
Badge +18

Instead of using “contains”, try “matches regular expression”.

(IFS_ALL|IFS_ADMIN)

Regular expression - Wikipedia

For an exact match that ignores prefixes and suffixes, you can use a more restrictive expression:

(^IFS_ALL$|^IFS_ADMIN$)

 

Userlevel 3
Badge +8

Instead of using “contains”, try “matches regular expression”.

(IFS_ALL|IFS_ADMIN)

Regular expression - Wikipedia

For an exact match that ignores prefixes and suffixes, you can use a more restrictive expression:

(^IFS_ALL$|^IFS_ADMIN$)

 

Very helpful feedback, Thanks @durette 

Userlevel 4
Badge +10

@Tj12  Thanks that’s great tip.

@durette  Thanks for helping.