Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 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
Refresh other parameters on change problems

Summary
Refresh other parameters on change problems
Content
Hi all,
I have 2 parameters:
1. Buyer:
select buyer_name,buyer buyer
from buyer
order by buyer
2. Order_no
select order_no
from ordhead
WHERE
(buyer = nvl(:PM_BUYER,buyer))
I'm facing the problem that Order_no doesn't refresh default value
step 1:
When buyer selects all values, I select Order_no = 36314.
step 2: I select buyer = 92..., but Order_no doesn't refresh default value, it's still 36314.
Expect Order No have to return 'All'.
Please help me on this!
Thanks,
Answers
-
What is the type of parameters ? Can you try Parameter type Menu
0 -
the type of parameters are Menu Type.
Since list of values is fixed data TYPE , they didn't refresh.
My solution: changing from fixed data to SQL.
0 -
From where you are getting value for :PM_BUYER bind variable. I believe this should be one of the column name from parent sql.
so where clause should be (buyer = nvl(:buyer,buyer))
0