Hi,
Can you please provide me tutorial or links how I can create own link with parameters using Navigate to web page option for Action links?
I would like to pass multiple values for presentation variable from dashboard prompt to target report.
"CC - Business Unit"."Business Unit - OpCo" IN case when @{PV_SELECTEDOPCO} = 'WhateverTheCombinationIsForAllValues' then "CC - Business Unit"."Business Unit - OpCo"
else @{PV_SELECTEDOPCO}['@']{A} end
Syntax was not fully correct.
Below is corrected:
"CC - Business Unit"."Business Unit - OpCo" IN (CASE '@{PV_SELECTEDOPCO}'
WHEN '(All Column Values)' THEN '(A,B,C,D)'
ELSE (@{PV_SELECTEDOPCO}['@']{A})
END)
Anyway, if we select All Column Values in the prompt, then it is not filtered at all (not added to the SQL). Not sure if it can be used in CASE statement.
1. You need to ascertain the explicit value that is being passed for 'All Values', as I said it generates a strange but consistent string combination which you need to use in place of 'All Column Values', as previously advised this can be found by running the analysis and then viewing the physical sql generated via the log file
2. You have converted the filter to SQL, yes?
2. Yes, it is SQL filter.
1. I have checked in other reports SQL from Monitor. If in prompt you will select All Column Values for "CC - Business Unit"."Business Unit - OpCo", dimension is not included in SQL send to database, which means that it is not filtered and is asking for all entries.
Based on That I do not see an option to use it in CASE.
You can use your default value in the afore mentioned case logic then.
This has changed from other versions.
What do you mean?
Sorry, I may be misunderstanding you.
Are you saying that if the dashboard filter selection is 'All Values' then the entire filter is removed from the analysis when it runs?
I have not seen this before, are you certain that that is the case?
What I was suggesting was that your default (value in the second {} ) would be applied if the prompt was unpopulated, so you should use the value that you are defaulting in the case statement to give the column = column result.
Not removed but not filtering the results, asking for all entries.
Still not sure if I understand your suggestion. How would you like to modify CASE? I do not see option to check Null/Not Null in case.
if your result is null, and this does not cause your default member to be selected then you can use the IfNull function in your case statement to handle it.
Either; -
"CC - Business Unit"."Business Unit - OpCo" IN case when @{PV_SELECTEDOPCO} is null then "CC - Business Unit"."Business Unit - OpCo"
when @{PV_SELECTEDOPCO} = 'WhateverTheCombinationIsForAllValues' then "CC - Business Unit"."Business Unit - OpCo"
Or
"CC - Business Unit"."Business Unit - OpCo" IN case when IfNull(@{PV_SELECTEDOPCO}, "CC - Business Unit"."Business Unit - OpCo") = "CC - Business Unit"."Business Unit - OpCo"
Hi Team, We would like to raise an enhancement request for the SSO/SAML configuration guidance for OAS 2026. We have already raised multiple SRs regarding OAS 2026 SSO configuration. However, we are facing difficulties getting the required guidance, as the available documentation does not clearly cover the OAS 2026 SSO…
We are planning to archive the Contract and Lease data currently sourced from the External Source as Contract and Lease accounting functions are being migrated to Oracle's CLM and Lease Accounting modules. At this stage, only active and partially closed records are being converted into Oracle and the remaining historical…
The difference column is a calculation, and I would like to average that row.
We are trying to convert our OAS reports to OAC and one of the parameters in the where clause of the report is what I am trying to make in OAC. I created a calculation as follows and I am trying to put it into a filter . The code validates EVALUATE('GREATEST ( TRUNC ( NVL (%1, TO_DATE (''1/1/2013'', ''mm/dd/yyyy'') ) ),…
Hi , I am calling one parameter in another parameter and it is not working. 1st parameter is showing values, while calling the 1st parameter in second it is not showing any values. Regards, Sree Hari M