Page 1 of 1
Weird happenings w/ Server Explorer
Posted: Wed Oct 02, 2013 6:52 pm
by nmiller
When clicking on a view (within a cube, doesnt matter which cube) and then "Exporting as ASCII" i click on an element and TM1 totally freezes, not allowing me to click anything. I have to manually close TM1 through Task Manager. THis just started happening today and i have no clue what is going on. Anyone? Suggestions or Thoughts?
Re: Weird happenings w/ Server Explorer
Posted: Wed Oct 02, 2013 8:01 pm
by Alan Kirk
nmiller wrote:When clicking on a view (within a cube, doesnt matter which cube) and then "Exporting as ASCII" i click on an element and TM1 totally freezes, not allowing me to click anything. I have to manually close TM1 through Task Manager. THis just started happening today and i have no clue what is going on. Anyone? Suggestions or Thoughts?
A couple. When you click on the element, do you see a brief flash? The kind that you might see if a dialog was opening and then disappearing? I had an instance a couple of days back where TM1 would seem to "freeze" when the user went into the subset editor but what was actually happening was that the tm1p.ini file (%APPDATA%\Applix\TM1) had somehow (and the fact that she sometimes used a dual monitor setup struck me as the "how") defined the x position of her subset editor window as being somewhere around 2700 pixels. On a 1280*800 display. It therefore appeared to hang because it was waiting for an entry in the subset editor, which she couldn't get to. I just shut her session down and hacked the "SubsetWindowLayoutInfo = " and "MainWindowLayoutInfo =" lines from her .ini file, which got rid of the problem.
The other is the possible corruption of the .tbd files in the same directory. Those things have been known to cause Excel to crash when a user double clicks on a SubNm formula. I haven't seen them cause the issue that you describe but it might be worth deleting them anyway and seeing whether it helps given that the place that you seem to be having the problem is with launching Subset Editor.
Re: Weird happenings w/ Server Explorer
Posted: Thu Oct 03, 2013 12:45 pm
by nmiller
Alan,
Thanks for the information. I too use a double screen and i was accessing TM1 at home on the laptop. What did you do to the "SubsetWindowLayoutInfo = " and "MainWindowLayoutInfo =" lines? I think this may be my problem as well.
Re: Weird happenings w/ Server Explorer
Posted: Thu Oct 03, 2013 2:43 pm
by AmbPin
Hello,
I think I found this BAT file on here somewhere that might do the trick for you:-
Code: Select all
@echo off
REM ****************************************************************************************************
REM * Removes window positions from the TM1P.INI file which can result in TM1 windows being created *
REM * off screen if TM1 was last used with a second monitor attached. *
REM ****************************************************************************************************
:: Keep variables local
SETLOCAL
:: Set file to be edited
Set FiletoOpen="%APPDATA%\Applix\TM1\tm1p.ini"
Set TempFile="%APPDATA%\Applix\TM1\tmp.txt"
type %FileToOpen% | findstr /v MainWindowLayoutInfo > %TempFile%
copy /Y %TempFile% %FileToOpen%
type %FileToOpen% | findstr /v SubsetWindowLayoutInfo > %TempFile%
copy /Y %TempFile% %FileToOpen%
type %FileToOpen% | findstr /v SecurityAssignmentWindowLayoutInfo > %TempFile%
copy /Y %TempFile% %FileToOpen%
del /Q %TempFile%
echo TM1 Windows re-set.
pause
ENDLOCAL
Re: Weird happenings w/ Server Explorer
Posted: Thu Oct 03, 2013 7:52 pm
by Alan Kirk
nmiller wrote:
Thanks for the information. I too use a double screen and i was accessing TM1 at home on the laptop. What did you do to the "SubsetWindowLayoutInfo = " and "MainWindowLayoutInfo =" lines? I think this may be my problem as well.
Just delete 'em and save the .ini file. They'll be regenerated the next time you use the subset editor, which will go back to more reasonable defaults. I haven't really looked at the batch file in the preceding post but I imagine that it does something similar, but more automated.
I'll put a note to put something into the next release of TM1 Tools to do that as well.
Re: Weird happenings w/ Server Explorer
Posted: Tue Oct 08, 2013 9:08 am
by jstrygner
For me the best workaround is the one posted by Neeta in
this thread.
Suggestion is to use Windows Key + any Arrow Key to bring active window to your main monitor.