Skip to main content

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

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$)

 


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 


@Tj12  Thanks that’s great tip.

@durette  Thanks for helping.