Hello Experts,
I need help to build a script to pass 2 members of the dimension "Version" in an Analytic App to open a Story URL.
The script is like this:
var param_versao = Text_12.getPlainText(); === this variable comes from a dynamic text generated from "Version" Input Control.
var param_actual = "public.Actual";
NavigationUtils.openStory("E1884C850633E5AC5EF6C39FB76692BC", "6682772f-59cd-46c8-bd15-c215c7249d24",
UrlParameter.create("f01Dim","Version"),
UrlParameter.create("f01Val",[param_versao,param_actual]),
true);
But the script is incorrect when setting f01Val values (cannot convert Array of string to string).
Can anyone help me to convert Array of string to string? Or is there any other option to pass 2 versions for the story filter?
kind regards
Mayumi