Search found 15 matches

by ralph007
Thu May 09, 2019 7:55 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: PAW - backup on Linux not working.
Replies: 1
Views: 1812

PAW - backup on Linux not working.

Hi, I'm started testing PAW on Linux. Currently using version 2.0.39. I want to test and do the backup of the content before to upgrade to 2.0.41 but script backup.sh not working. In logs returning me this message in mongo folder: failed: error connecting to db server: no reachable servers I'm using...
by ralph007
Wed Sep 17, 2014 10:56 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Copying data in TM1 process
Replies: 3
Views: 3137

Re: Copying data in TM1 process

Hi Guys,

Thanks for advice will use it and change the process.

Kind Regards

Rafal
by ralph007
Tue Sep 16, 2014 10:41 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Copying data in TM1 process
Replies: 3
Views: 3137

Copying data in TM1 process

Hi All, I need to copy and do calculation for budget data. The problem is that budget information is stored on 1 day in month (daily time dimension). Example of hierarchy below: Sep 14 2014-09-01 (data is stored in this element copied in rules from monthly cube) 2014-09-02 (all other elements in Sep...
by ralph007
Thu Jun 12, 2014 8:38 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Web report with Active Form cell formating issue
Replies: 2
Views: 3167

Re: TM1 Web report with Active Form cell formating issue

Hi Will,

I don't know why but I haven't done it. After proper formatting it's working fine.

Many thanks for your suggestion. Sometimes simple thinks are hard to resolve :)

Regards

Rafal
by ralph007
Tue Jun 10, 2014 9:09 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 Web report with Active Form cell formating issue
Replies: 2
Views: 3167

TM1 Web report with Active Form cell formating issue

HI All, I'm working on 10.1.1 Cognos Express version with FP1 installed. I have some issue with report which using Active Form. Excel version working without any problem. When I open this report on TM1 Web it's looks fine but after refresh it using Active Button (with Rebuild Sheet option) I'm losin...
by ralph007
Wed Jun 04, 2014 9:34 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Multiple hierarchy in TM1 dimension
Replies: 3
Views: 4199

Re: Multiple hierarchy in TM1 dimension

Hi,

Thanks guys for yours help. I've used }HierarchyProperties to define default members and levels.

Regards

Rafal
by ralph007
Fri May 30, 2014 8:05 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Multiple hierarchy in TM1 dimension
Replies: 3
Views: 4199

Multiple hierarchy in TM1 dimension

Hi All, We using in company Cognos Express 10.1.1 version. For now we using TM1 and reporting using excel. I was asked to used some TM1 cube and rebuild one report for mobile customers in Report Studio (Active Report). I've done some training from IBM and practise on samples but in real data I have ...
by ralph007
Tue Apr 08, 2014 12:29 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting elements without children
Replies: 5
Views: 3924

Re: Deleting elements without children

Hi Gabor,

Many thanks for your help.

Regards

Rafal
by ralph007
Tue Apr 08, 2014 10:44 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting elements without children
Replies: 5
Views: 3924

Re: Deleting elements without children

Hi, I fixed the issue this code below working : sDimName = 'DestCustomer'; nX = 1; nLimit = DIMSIZ(sDimName); WHILE(nX<=nLimit); sElementName = DIMNM(sDimName,nX); sConElement = DTYPE(sDimName,sElementName); sNumberOfChildren = ELCOMPN(sDimName,sElementName); IF (sConElement @='C'); IF(sNumberOfChil...
by ralph007
Tue Apr 08, 2014 10:21 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting elements without children
Replies: 5
Views: 3924

Deleting elements without children

Hi, I'm trying to remove all consolidations elements without any children from dimension. This code below not working properly because deleting only some elements. What is wrong in this code below?? In this dimension I have multiple hierarchy. Thanks for any suggestion. sDimName = 'DestCustomer'; nX...
by ralph007
Tue Apr 08, 2014 10:17 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting unusefull elements from dimension
Replies: 9
Views: 6058

Re: Deleting unusefull elements from dimension

Hi Robin,

Thanks for info I'll try to run this overnight and will look if this will delete all not necessary elements.

Regards

Rafal
by ralph007
Tue Apr 08, 2014 9:57 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting unusefull elements from dimension
Replies: 9
Views: 6058

Re: Deleting unusefull elements from dimension

Hi,

Gabor's code working but for small test dimension. I created test dimensions and it's working correctly I only have a problem with big customer dimension (it has about 600000 elements there).

I'm doing this test on test server.

Any suggestion?

Many thanks
by ralph007
Tue Apr 08, 2014 9:22 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting unusefull elements from dimension
Replies: 9
Views: 6058

Re: Deleting unusefull elements from dimension

Hi declanr, But in this example I'm not deleting elements from source dimension. I'm checking index in source dimension and checking if this element exist in destination dimension and if is deleting it. I don't think if I reverse the loop that will fix this problem. How the code should look like fro...
by ralph007
Tue Apr 08, 2014 8:41 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting unusefull elements from dimension
Replies: 9
Views: 6058

Re: Deleting unusefull elements from dimension

Hi,

Thanks Gabor for respond, How long this process should run? I'm waiting about 15 minutes and server not responding. The source dim has about 600000 elements that's maybe the reason?

Any other suggestion??

Many thanks
by ralph007
Tue Apr 08, 2014 7:53 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Deleting unusefull elements from dimension
Replies: 9
Views: 6058

Deleting unusefull elements from dimension

Hi All, I have some problem with some TI process. I want to delete elements from customers dimension which not have any idea in cubes where this dimension 'Customer' is using. I prepared processes which looking in each single cube and copied preparing temp cube. After this operation I have two dimen...