Find the custom top path in Oracle EBS

Find the custom top name and path in Oracle EBS


  SELECT variable_name top_name, value top_path
    FROM fnd_env_context
   WHERE variable_name LIKE '%XX%TOP%'       -- some time custom, 
GROUP BY variable_name, value
ORDER BY variable_name;