Categories
- All Categories
- 70 Oracle Analytics News
- 7 Oracle Analytics Videos
- 13.9K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 38 Oracle Analytics Trainings
- 56 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 2 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
Assign multiple values to a static repository variable in OAS repository
Good day
I want to assign the following list values to a static repository variable in a OAS repsitory: Jan_PTD, Feb_PTD, Mar_PTD, Apr_PTD, May_PTD, Jun_PTD, Jul_PTD, Aug_PTD, Sep_PTD, Oct_PTD
I then want to reference the variable in the "Default selection" section in a dashboard prompt so that the values in the prompt dropdown box are ticked/selected in the dashboard prompt.
I tried the following syntax, but it generated a a single string in the prompt dropdown box: 'Jan_PTD; Feb_PTD; Mar_PTD; Apr_PTD; May_PTD; Jun_PTD; Jul_PTD; Aug_PTD; Sep_PTD; Oct_PTD'
Thanks
Johan
Best Answer
-
So the idea is that you don't use Static Repository Variable in admintool, instead create Dynamic Repository variable but use SQL in the init block to populate with Static Values and use row-wise.
1
Answers
-
Hi Johan ( @User_2BNF3 )
See:About Repository Variables
A repository variable has a single value at any point in time.I believe what you are looking for is here:
Create Variable PromptsOther comments, welcomed.
0 -
Hi Johan,
Row-wise variables are definitely a thing, but I generally populate them with the result of a query and therefore it's a while since last time I had to set a default value for those.
I believe the remember that they are represented as a list of values separated by colons.
Instead of ';', try with ':'. It could start behaving as a row-wise initialized variable with some luck…
1 -
Another example using multiple values row-wise session variable in initialization block
https://108obiee.blogspot.com/2009/10/using-multiple-values-row-wise-session.html0 -
Please use the query below for your row-wise initialization block where PTD_Var is the variable name.
select 'PTD_Var', PTD from
(
select 'Jan_PTD' PTD from dual
union
select 'Feb_PTD' PTD from dual
union
select 'Mar_PTD' PTD from dual
union
select 'Apr_PTD' PTD from dual
union
select 'May_PTD' PTD from dual
union
select 'Jun_PTD' PTD from dual
union
select 'Jul_PTD' PTD from dual
union
select 'Aug_PTD' PTD from dual
union
select 'Sep_PTD' PTD from dual
union
select 'Oct_PTD' PTD from dual
)0