Thursday, 20 May 2021

How to find the Oracle Fusion Instance name from Backend using sql

 Table to find out the fusion Instance name: Fusion.ASK_DEPLOYED_DOMAINS


Query:-

SELECT
        external_virtual_host,
        SUBSTR (external_virtual_host, 1,instr(external_virtual_host,'.') -1)
FROM
        fusion.ask_deployed_domains ad
WHERE
        ad.deployed_domain_name='FADomain';


No comments:

Post a Comment

In how many ways we can link the requisition to purchase order in oracle ebs

 In Oracle E-Business Suite (EBS) R12 / R12.2, a Purchase Requisition can be joined to a Purchase Order across 4 primary levels , depending ...