UI action not working with workspace

pramn
Tera Guru

Morning Team, 

UI action which we have recently created that's working with Native view however it's not working with CSM workspace.

We have created a UI action that's Print the PDF 

pramn_0-1696650079673.png

That is working with native view

pramn_1-1696650143750.png

its not working with CSM workspace

Please help me to fix this 

Many thanks 

 

6 REPLIES 6

@pramn 

You defined variable - uri, however you are using 

var win = top.window.open(url);

 

Dibyaratnam
Tera Sage

Hi @pramn , if it's not yet solved.

Just use,

open("YOUR URL");
//For your case,
open(uri); if uri is correct, it'll open.

Mark as helpful if it helps.