Hello, I have a constant of type application and I need to retrieve all of the application groups from it. Is there any way to achieve this?
Thank you!
Discussion posts and replies are publicly visible
If all the groups in app are using same prefix then only working solution I can think of, lil complex though, is to use getallgroupsnames() function available in People Functions plugin and create a utility rule like below:
a!forEach( getallgroupsnames( - 1, 1), if( like(fv!item, ri!appPrefix & "*"), fv!item, {} ) )