Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ganeshreddy
Creator III
Creator III

Passing parameter to access point URL

HI All

I have a scenario that if one of the specified value from the URL is missing the access point should not show the dashboard, at the moment access point is showing the the dashboard for possible value.PFB example

&select=LB01,Germany,USA


I have USA in the data for the given list box but not Germany, business user asking us to display nothing if any of the value is missing from the list box. Could you suggest how to handle this scenario.

Thanks in advance,

Ganesh

1 Reply
marcus_sommer

If you already know that some values wouldn't available within the target-app then you should remove them from the url. If not you will need to check it within the target-app - maybe within a variable which then controls the visibility of your objects/dimensions or is used as a calculation-condition, for example:

vCheck:

= getfieldselections(FIELD) = concat(distinct FIELD, ', ')

- Marcus