Hi there,
I am wondering:
"https://vimamsa.outsystemscloud.com/TesdAdvanceXls/BlankPDF?id="
How to get the domain+the module name? What function to use?
"https://vimamsa.outsystemscloud.com/TesdAdvanceXls"
regards
Hi, thanks all,
This works for me:
Hi @ibox ,
You can use GetBookmarkableURL() and GetOwnerURLPath() function for this case.
Hope it help.
Use GetBookmarkableURL()
HelloYou may use JS to return exact domain name
let url=$public.BuiltinFunctions.getBookmarkableURL();
let domain = (new URL(url));
domain = domain.hostname;after js your may concatenate like
domain+'/your module name/'