Literal parameters and multiple users
Hi all,
I'm currently developing a dashboard that will likely be used by multiple users at the same time.
Users will be able to set some initial parameters within the dashboard, and click on a button that will trigger a BR that will return some output rows within a table in the database.
After the process is complete, the user will be able to see the output rows through the following SQL Table Editor:

the parameters that you can see in the "Where Clause" are literal parameters that are set from within the BR when it is triggered by the user (using BRApi.Dashboards.Parameters.SetLiteralParameterValue()), and their value depend on the initial parameters that the user selected in the dashboard.
The problem is, I saw in some posts within the forum that literal parameters are "common" to all users, so every time one user will click the button and launch the process, the literal parameters will be changed. This is a problem, because we expect users to use the dashboard simultaneously.
Is there a workaround that does not use literal parameters? Or is there a way to make literal parameters "unique" to every user?
Thanks in advance!


