I'm interested in building TM1 Web applications. Currently all our 'users' use Perspectives, but we might be able to provide them with a better user experience if we would build some apps of our own.
Based on the help-files I only came so far as to check if the web server is actually running:
Code: Select all
http://localhost:9510/tm1web

However, the next step should be to access a view this way: (yes I do have 'Planning Sample' running)
Code: Select all
http://localhost:9510/tm1web/UrlApi.jsp#Action=Open&Type=CubeViewer&Cube=plan_BudgetPlan&View=Budget%20Input%20Detailed&AccessType=Public&AdminHost=localhost&TM1Server=Planning%20Sample&Username=admin&Password=apple
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=8,9">
<meta http-equiv="Content-Type" content="text/html; UTF-8">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="scripts/tm1web/common/DjConfig.js"></script>
<script type="text/javascript">
djConfig.locale ="nl-be";
</script>
<script language="javascript" src="scripts/dojo/dojo.js"
type="text/javascript"></script>
<script language="javascript" type="text/javascript">
require([
"tm1web/urlApi/main"
], function(urlApi) {
urlApi.startup(null);
});
</script>
<link href="scripts/dojo/resources/dojo.css" rel="stylesheet"
type="text/css" />
<link href="scripts/dijit/themes/claro/claro.css" rel="stylesheet"
type="text/css" />
<link href="css/standaloner.css" rel="stylesheet" type="text/css" />
<link href="scripts/tm1web/themes/tm1web/tm1web.css" rel="stylesheet"
type="text/css" />
<title>IBM Cognos TM1 Web</title>
</head>
<body class="claro tm1web"></body>
</html>
Also, if anybody knows a good tutorial to TM1 Web, that would be very welcome. I'm currently stuck with the IBM help, which isn't always the best way to learn something new.
Thanks everyone!