Siebel Open UI - Showing a URL as clickable
In our application there are 3 fields. URL, URL label and a calculated field URL Link. In the URL field a user can enter a URL like www.oracle.com. In the URL Label field the user can enter a label such as Oracle Test. The URL Link is a calculated field that will either display the URL or the label as a link that can be clicked to open the URL in a new browser session. The calculated field is iif([URL] IS NOT NULL, iif([URL Label] IS NOT NULL, '<a href="'+[URL]+'" target="_blank">'+[URL Label]+'</a>', '<a href="'+[URL]+'" target="_blank">'+'</a>'), '')
0