You get this error because you are using a microflow as source on listview B with input parameter X and you don’t have this parameter information.
There are a lot of possibilities how you can solve this, but here is a simple one .
- Create a boolean attribute ‘Selected’ (default on false) on your entity X.
- Create a microflow on click on listview A that has parameter X and change object activity on parameter X to set the boolean on True. (commit & refresh)
- On your page you have listview A with a list of all object of entity X and a listview B with all objects of entity X with a constraint on Selected=True. If you now click on an item in listView A it will also appear in listView B.
- Extra: if you want to remove the selected items from listview B you can create another on click microflow that changes the attibute of parameter X entity back to Selected=false