We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

UI Action - Form Link - SOW Workspace

swathi55
Tera Contributor

Hello,

 

I created a UI Action (Form Link) on a custom table/form and need it to be available in the Service Operations Workspace (SOW). I created a corresponding Workspace Client Script, and the link is displayed correctly in the workspace.

However, the URL is not a standard HTTP/HTTPS URL. It is a custom protocol/application link intended to launch a locally installed application on the user's machine.

While the link is visible in the workspace, clicking it does not trigger any action. Has anyone implemented a similar use case in Workspace? Is there a supported way to launch a locally installed application or invoke a custom protocol from a UI Action/Form Link in SOW Workspace?

 

Thanks

 

7 REPLIES 7

Below is the script i am using 

 

function onClick(g_form) {
var url = "pw://dpewrt-pw.babcdey.com:dpewrt-pw/Docs";
window.location.href = url;
}
As its not a http link. nothing is happening when i click on the link.

Tanushree Maiti
Tera Patron

Hi @swathi55 

 

Please share the script so others can review it and help you troubleshoot the issue.

 

 

Please Accept the solution if it assisted you with your question & Mark this response as Helpful.
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti

Below is the script i am using 

function onClick(g_form) {
var url = "pw://dpewrt-pw.babcdey.com:dpewrt-pw/Docs";
window.location.href = url;
}
As its not a http link. nothing is happening when i click on the link.