Hi,
I have issue with opening table on web client on test server. I have to mention that everything works fine on my local computer.
URL starts with https://xxxx/navserverinstance ... but when I try to open table it converts to http://yyy/navserverinstance (in new tab).
Code for this opening was
with ActiveSesstion do
if get(ServiceInstanceId(), SessionId()) then
Hyperlink('http://' + "Server Computer Name" + '/' + "Server Instance Name" + '/?table=' + Format("Object ID"));
I have tried to avoid explicit naming of server name and used this code:
Hyperlink(GetUrl(ClientType::Web, CompanyName(), ObjectType::Table, "Object ID"));
but I got the same (wrong) url.
Any ideas?