Categories
- All Categories
- 168 Oracle Analytics News
- 34 Oracle Analytics Videos
- 14.8K Oracle Analytics Forums
- 5.8K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 56 Oracle Analytics Trainings
- 13 Oracle Analytics Data Visualizations Challenge
- 4 Oracle Analytics Career
- 2 Oracle Analytics Industry
- Find Partners
- For Partners
In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch

In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch, could you please help me.
Answers
-
hi Swetha,
Good to meet you here :)
You will have to get the instance from this query :
(
select external_virtual_host instance_url
from fusion.ask_deployed_domains
where deployed_domain_name='FADomain'
)
and then based on instance_url, construct your fusion instance.
,case
when instance.instance_url = 'aa-bbb-test-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-test.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-dev1-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-dev1.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-dev2-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-dev2.bi.sender@workflow.mail.em2.cloud.oracle.com'
when instance.instance_url = 'aa-bbb-saasfaprod1.fa.ocs.oraclecloud.com' then 'aa-bbb-bi.sender@workflow.mail.em2.cloud.oracle.com'
else 'no.sender@workflow.mail.em2.cloud.oracle.com'
end PARAMETER3
2