I have 5 parameters on my report.
They are @time_from
, @time_to
, @order_id
, @material
, @batch
, and @sscc
I need to do following:
- Select time range
- Fill filters
- All orders
- All batches
- All SSCC
Then I must show all data. (I did until 4th condition)
If all data loaded Operator has option to select 1 order from dropdown, this should reload the filters and only show sscc, batch, and material related to that order.
First, after users choose @time_from
and @time_to
, the other parameters will be enabled. But rhe fourth case breaks down the first three conditions.
In the fourth condition; @material
, @batch
and @sscc
depends on order_id.
That's why I use cascading parameter. But if I don't select order_id, I cannot select @material
, @batch
, and @sscc
because they will be disabled.
After selecting @time_from
and @time_to
parameter, I want to see all parameters and I want @material
, @batch
, and @sscc
to depend on order_id.
For example; when I select @time_from
and @time_to
I must choose @material
but when I select @time_from
and @time_to
and then I choose @order_id
, @material
, @batch
and @sscc
must depend on @order_id
.
I want to use cascading parameters, but the parameters must not be disabled.
I attached some screenshots. How can I do this?
1-all parameter depends on time_from and time_to parameter
2-after I choose @time_from and @time_to I want to show all parameter