Create a text label dashboard graphics object and add a script similar to examples below into the objects title in the Properties dialog:
To launch a Financial Reporting report:
@HTML(<script> function newtabFR() {top.gModuleManager.launchRelatedContentUri(top.location.href + "?module=wksp.relatedcontent&repository_path=/<encoded path to repository object>&showViewPane=false");}</script><span id="idnameFR" onClick="newtabFR()" style="cursor:pointer"><title text></span>)
To launch a Financial Management application:
@HTML(<script> function newtabHFM() {top.gModuleManager.launchRelatedContentUri(top.location.href + "?module=hfm.appcontainer&sourceApp=<hfm app>&cluster=<clustername>");} </script> <span id="idnamehfm" onClick="newtabHFM()" style="cursor:pointer"><title text></span>)
To launch a Planning application:
@HTML(<script> function newtabPlan() {top.gModuleManager.launchRelatedContentUri(top.location.href + "?module=HyperionPlanning.planning&sourceApp=<Planning application name>");} </script><span id="idnameplan" onClick="newtabPlan()" style="cursor:pointer"><title text></span>)
To launch any URI:
@HTML(<script> function newtabURI() {top.gModuleManager.launchUri(<"valid URL”>);} </script><span id ="idnameuri" onClick="newtabURI()" style="cursor:pointer"><title text></span>)
Note: | top.location.href is http://server:port/context |
These URLs are for Interactive Reporting dashboards. For more examples of supported URLs, see URLs Supported by EPM Workspace.