Oracle Fusion Data Intelligence

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch

Received Response
72
Views
1
Comments
Rank 1 - Community Starter

In Bursting query parameter3 will be auto generated automatically based on instance how can we fetch, could you please help me.

Answers

  • Rank 6 - Analytics Lead

    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

Welcome!

It looks like you're new here. Sign in or register to get started.