Get Connector URL Data

Published February 22, 2026 By Sai Sree Ram Gundepudi
SELECT
	/* SR Number */
	orchestration_application_id
  , service_name
  , protocol || '://' || host || ':' || port || '/' || context_root
FROM
	fusion.doo_web_service_details   web
  , fusion.ask_deployed_applications app
  , fusion.ask_modules               module
WHERE
	module.module_short_name          like '%' || web.service_name
	AND app.name                      like '%' || web.service_name
	AND module.enterprise_application_id = app.enterprise_application_id
ORDER BY
	service_name
;

Was this solution helpful?

Your feedback helps improve our technical knowledge repository.

Share this article