Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Convert this filter to sql in obiee

Hi everyone,
How to convert this filter to sql in obiee, when we use between filtre? I want convert this sql field number. I couldn't find the proper snytax. Screen shot is below.
Can you help me?
Regards,
Merve
Answers
-
Sure, not sure what language that is, but in English; -
"Folder"."Whatever" between @{ValueFromHere}{-99999999} and @{ValueToHere}{9999999999}
or
("Folder"."Whatever" >= @{ValueFromHere}{-99999999}
and "Folder"."Whatever" <= @{ValueToHere}{9999999999})
0 -
I couldn't say, Actually I want to feed the sql to be converted from the presentation variable. PV name is pv_değer. How do I show the filter between pv_değer?
0 -
I assumed you wanted a presentation variable, the; - @{ValueFromHere}{-99999999} syntax is a presentation variable called ValueFromHere with a default value of -99999999
0 -
Ok, i understand you. I got the following error when I tried it.
0 -
After the "and" you don't need the column name anymore, just the value ...
Do a proper copy/paste of what Robert posted above.
0 -
Thank you Gianni. I wrote wrong syntax. I tried Robert's post.. Result successful.
0