Hello,
On link, I am directing to Extern URL. I have provided URL of database value. However when I click on link, it's taking Server name + application Name + URL.
It should only redirect to URL. Please advice why this is taking server name + application name.
Thanks and Regards,
Suraj Borade
Hi Suraj,
You have to make sure your URL starts with "https://". Otherwise, the platform automatically adds the server and application name to the URL. You could use an expression similar to this in your link's URL:
If(Index(Url, "https://") = -1, "https://" + Url, Url)
Thanks for the information. i also had same issue. now its fixed