Hello!
We are using the submenus of the Appian sites (which only accept interfaces). We have a logic where, depending on the role of the user that accesses, when clicking on the submenu of the site you will see one thing or another:
Do you know if there is any option to do this? Thanks!
Discussion posts and replies are publicly visible
Design it from interface not from site pages. Take a attribute that differs the roles use it in If condition
a!localVariables( local!isusermember:a!isUserMemberOfGroup(loggedInUser(),"Group"), /* or some other rule that defines the attributes your role*/, if( local!isusermember, rule!gridxyz, rule!Summarypage /*(pass the id of the single user)*/ ) )
Something like this.
The problem is I need to see the record view, not an interface, and that is what I don't know how to do
AFAIK directly launching record view is not possible as of now .