Search found 286 matches

by ascheevel
Tue Dec 12, 2023 4:32 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: PAW - GIT Repository Connection issue
Replies: 9
Views: 4127

Re: PAW - GIT Repository Connection issue

Public or enterprise Github? I ran into similar errors trying to connect on-prem PAW to an enterprise Github repo and so far haven't got it working. I suspected that the connection was being blocked/rejected by enterprise github admins but haven't confirmed that. You are using the SSH url and not th...
by ascheevel
Fri Dec 01, 2023 2:21 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: RAM usage exploding with CubeUnload and ViewConstruct
Replies: 5
Views: 11767

Re: RAM usage exploding with CubeUnload and ViewConstruct

How big is the view in your ViewConstruct? You should be able to construct a small view to trigger the cube load back into memory. Also, when a cube is reloaded to memory, feeders are reprocessed which takes time & memory. The server theoretically should be reusing the garbage memory from the pr...
by ascheevel
Mon Nov 06, 2023 2:09 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Adding another if loop on status
Replies: 3
Views: 6746

Re: Adding another if loop on status

Formatting your code will go a long way in helping you to read/understand it and posting within a code block will go a long way in helping the rest of us help you. By the CellGetN you posted at the bottom for InvStatus, it appears you're using only the variables defined in the source view to derive ...
by ascheevel
Fri Jul 28, 2023 1:48 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 should display values in /1000 format.
Replies: 9
Views: 1769

Re: TM1 should display values in /1000 format.

Have you considered loading the data as is from source and using formatting in TM1 to display millions as thousands?

Thousands: #,##0,;(#,##0,)
Millions: #,##0,,;(#,##0,,)
by ascheevel
Tue Jul 25, 2023 3:56 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Pax Application Folder Security - How to Manage
Replies: 3
Views: 922

Re: Pax Application Folder Security - How to Manage

True, but you can create the cube with below line in a TI.

Code: Select all

CubeCreate('}ApplicationSecurity', '}ApplicationEntries', '}Groups');
by ascheevel
Tue Jul 25, 2023 1:31 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Pax Application Folder Security - How to Manage
Replies: 3
Views: 922

Re: Pax Application Folder Security - How to Manage

The control cube }ApplicationSecurity is accessible in both PAX and PAW.
by ascheevel
Wed Jul 19, 2023 12:25 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TM1 print report wizard
Replies: 4
Views: 1446

Re: TM1 print report wizard

I can't find a working download link, but Quebit had a free tool called "Print Reports" that mimicked the old functionality. They also have their ReportWorq tool with a whole host of other features available by subscription.

*I am not affiliated with Quebit
by ascheevel
Tue Jul 18, 2023 9:02 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Adding a New User in Paw - not appearing
Replies: 5
Views: 1608

Re: Adding a New User in Paw - not appearing

PAW users and TM1 server users are separate entities. You succeeded in adding the user to PAW but have not added the user to a TM1 server yet. If you're mode 5 with CAM, the user will add automatically to the }Clients dim when they log on to a server. Alternatively, you can manually add them to the ...
by ascheevel
Mon Jul 17, 2023 6:07 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: How to get if child process completed with parallel processing
Replies: 2
Views: 735

Re: How to get if child process completed with parallel processing

There was recently a thread on this and it's come up other times as well that you can find with a bit of searching. File semaphores is probably the safest, but I sometimes use a monitoring cube with "called" and "completed" columns where the calling process updates the called col...
by ascheevel
Mon Jul 17, 2023 5:54 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Run Process - How to Determine When All Completed.
Replies: 24
Views: 4244

Re: Run Process - How to Determine When All Completed.

https://www.ibm.com/docs/en/planning-analytics/2.0.0?topic=pctf-runprocess-1 https://www.ibm.com/docs/en/planning-analytics/2.0.0?topic=functions-getjobstatus Might not be obvious to some folks, but the functions/features Dan is referring to are only available currently in V12 or Planning Analytics...
by ascheevel
Tue Apr 25, 2023 1:55 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MaximumViewSize has no effect
Replies: 2
Views: 1934

Re: MaximumViewSize has no effect

You're conflating two separate things. The MaximumViewSize parameter is literally just the memory required to to hold the values in the view. To get to those values though, the server might need to evaluate/process rules on any number of cells behind the scenes which consumes memory but is not inclu...
by ascheevel
Wed Mar 15, 2023 7:23 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: ViewSubsetAssign - what am I doing wrong?
Replies: 15
Views: 2614

Re: ViewSubsetAssign - what am I doing wrong?

WilliamSmith wrote: Wed Mar 15, 2023 7:14 pm Doesn't Bedrock require Cubewise ARC for TM1 paid software?

Absolutely not and for a few good reasons: Bedrock predating Arc and Cubewises's committment to Bedrock being an open source collaboration like TM1py.
by ascheevel
Wed Mar 08, 2023 3:42 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: ISO Week Number
Replies: 6
Views: 1767

Re: ISO Week Number

Oof, I indeed missed handling for when date is in prior year's ISO week count. Good catch, +1 for using NewDateFormatter, and thank you for posting updated code. A couple thoughts: As much as I like a Dez variable for Deutsch Dezember, I don't think these variables are necessary and can be removed. ...
by ascheevel
Wed Mar 01, 2023 9:32 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Dynamic view update using ViewMDXSet in PAW
Replies: 4
Views: 638

Re: Dynamic view update using ViewMDXSet in PAW

I'm guessing you're just changing dimension selections/subsets in the view and not trying to render a completely different cubeview right? You could use a parameters cube to store the mdx parameters and have the cube mdx reference that cube for dimensions selections within the query.
by ascheevel
Wed Mar 01, 2023 8:29 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need Help with a feeder
Replies: 9
Views: 1389

Re: Need Help with a feeder

But most of all, are you sure you want that much overfeeding (most probably) ? To expand on Wims insightful question, why are you populating the Rate measure verbatim in the Labor cube anyway? I'm guessing you're using those rates to calculate dollars based on some other census measure like hours. ...
by ascheevel
Wed Mar 01, 2023 6:40 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Need Help with a feeder
Replies: 9
Views: 1389

Re: Need Help with a feeder

['Business Rate'] => DB( 'Labor','All Projects','ALL HR Employees',!Months,'Bid','PLC Rate' ) , DB( 'Labor','All Projects','ALL HR Employees',!Months,'Planning','PLC Rate' ) ; You could also create a consolidation with both Bid and Planning elements as children and then feed just that consolidation...
by ascheevel
Wed Mar 01, 2023 5:47 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Migration from Perspectives to PAX
Replies: 12
Views: 3303

Re: Migration from Perspectives to PAX

DBRW and DBR are treated the same in PAfE That's interesting... I use a mix of DBR and DBRW when I need to ensure that (eg) picklists are populated (DBR) before data is retrieved/updated (DBRW). The last time I did this was with PAFe and the behaviour (which I needed) was as in the days of yore (Pe...
by ascheevel
Wed Mar 01, 2023 5:39 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: ViewSubsetAssign - what am I doing wrong?
Replies: 15
Views: 2614

Re: ViewSubsetAssign - what am I doing wrong?

I don't see any immediate issues in your code and was able to execute it successfully on my end using the setup your described. There are a number of easier ways to achieve what you're trying to accomplish, the main one being bedrock . There is already a bedrock process for creating a hierarchy base...
by ascheevel
Wed Feb 22, 2023 10:20 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX filter for two dimensions
Replies: 6
Views: 1516

Re: MDX filter for two dimensions

If you must do this in perspectives, you could put a rule on your Value measure that forces the value to zero when the flag value is "inactive" and then set zero suppression to 1 in your TM1RptView formula. If you still want the Flag measure visible, you can populate that by referencing th...