Hi Bert,
I would create a page where the current user account is being passed into the data view. Then you can create a data grid in that data view listing the departments that user has been assigned to (over association so they see the applicable list of departments) and you can add a manual select button on the data grid that passes that department as a parameter into the microflow that shows the page you need.
Bob
PS: with [Administration.Department_Account/Administration.Account you are checking whether there is an association (so that is why it says it needs a boolean).
If you make it: [Administration.Department_Account = '[%CurrentUser%]’ ] or [Administration.Department_Account/Administration.Account/id = '[%CurrentUser%]’ ] that could probably also work.
Hello Bert,
I would try [Administration.Department_Account= '[%CurrentUser%]’ as your Xpath for displaying, then I would create a *-1 association from user to department for you to store the currently selected department. You can then use the *-1 in your xpath to show only the relevant records for the currently selected department.
Hope this helps
Both are very helpful responses, unfortunately I can only flag one as ‘answer’.