I am trying to create a file having all groups excluding the default groups. Default groups are the groups which are added to user account whenever any user is created like APN All Users, Application Users etc. I have created a constant with default user and trying below.
a!localVariables( local!groups:rule!UAGR_getAllGroups(), local!groups1:cons!UAGR_Default_Roles, expression:union( rule!UAGR_getAllGroups, cons!UAGR_Default_Roles ) )
Discussion posts and replies are publicly visible
Hello nirupamaanuragt399
Union will return a combination of both the arrays. Use symmetricdifference().symmetricdifference() Function
I want to return all rows which are not in constant. In simple language, the roles which are in constant are the roles which should be removed from the roles returned from the expression rule.
try with difference function.