I had the same problem and solved it with an HTML control which was the contents of the Shell Worksetitem and used as an iframe:
var iframe = new sap.ui.core.HTML({
content : "<iframe src='yourAddress'>"
});
If you intend to create a new tab in your shell that displays the contents, you can add a new WorkSetItem to the press listener of your link, for example:
var link = new sap.ui.commons.Link({
press : function() {
shell.addWorksetItem(...);
}
});
Perhaps this also works for you.
source
share