Search found 5 matches

by abcthing
Fri Aug 21, 2020 2:35 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Tm1 Datasource for Power BI
Replies: 9
Views: 8311

Re: Tm1 Datasource for Power BI

I used Python to connect TM1 in power BI, and I think Micatio connector is a better solution now. In my test environment, I made some changes. 1. Authorization is changed from LDAP to BASIC. 2. api/tm1/api/v1 was changed to api/v1. It is suggested that the author add two parameters. 1. Authorization...
by abcthing
Wed Jun 24, 2020 11:49 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: The code hide row through conditional formatting in the Websheet.
Replies: 2
Views: 1705

The code hide row through conditional formatting in the Websheet.

1. demo This test rule is hide the third row when A1=1. hiderow2.gif 2.method (1) Modify the SheetRow class in the tm1webcore.jar. public boolean isVisible() { //------add----------- for(SheetCell cell: m_Cells) { ConditionalStyle style = cell.getConditionalStyle(); if(style!=null) { if(style.getSty...
by abcthing
Wed May 13, 2020 2:53 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Web login: How to set a default TM1 server
Replies: 8
Views: 8806

Re: TM1 Web login: How to set a default TM1 server

Open the ibm\cognos\tm1_64\webapps\tm1web\scripts\tm1web\standalone\TM1WebApp.js, and search this._serverNameSelect.set("value",a[0].value), and change 0 to 1

https://www.tm1forum.com/viewtopic.php?t=15284
by abcthing
Thu May 07, 2020 6:43 am
Forum: Useful code, tips and tricks
Topic: Set the default server in the login dialog of TM1web .
Replies: 3
Views: 34832

Set the default server in the login dialog of TM1web .

When logging into tm1web, TM1 server displays the first server in the server list, which may not be the server name we expected. Use Notepad to open ibm\cognos\tm1_64\webapps\tm1web\scripts\tm1web\standalone\TM1WebApp.js, and find this._serverNameSelect.set("value",a[0].value), and change ...