Search found 13 matches

by Nance1234
Wed Oct 09, 2024 2:13 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Can we Schedule a PAW book
Replies: 2
Views: 5387

Re: Can we Schedule a PAW book

Thanks much, Burnstripe.

This Document is very helpful to be sure of something is not possible rather than keep digging to figure it out .

Thanks.
by Nance1234
Tue Oct 08, 2024 8:50 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Can we Schedule a PAW book
Replies: 2
Views: 5387

Can we Schedule a PAW book

Hi all,

We know that a workbook in PAW can be exported and shared over an email.
But is it possible to schedule it meaning to get it delivered to an email every day at a specific time ?

Appreciate any guidance here.

Thanks.
by Nance1234
Tue Sep 24, 2024 3:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX to filter by cube value
Replies: 4
Views: 6444

Re: MDX to filter by cube value

Thank you so much BurnStripe and Wim.

Wim, I didn't know that you have a Webpage. It's really helpful.
by Nance1234
Tue Sep 17, 2024 4:28 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: MDX to filter by cube value
Replies: 4
Views: 6444

MDX to filter by cube value

Hi all, I am trying to create a source view within a TI process using MDX to filter based on Cube value. So, the cube has 7 dimensions and I have created the source view based on the requirement as below which works fine Dim1 - 1 Static element selected Dim2 - 3 Consolidated elements selected Dim3 -...
by Nance1234
Tue Sep 03, 2024 3:28 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Re: Parameterized MDX

Thank you all. Sorry for the late reply.
Yes , both options work.
Thanks again George ,Wim and Lotsaram
by Nance1234
Tue Sep 03, 2024 3:25 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Re: Parameterized MDX

I don't think you really understood the concept of using Expand here. You EITHER use expand to build the whole string converting variable names to their value by wrapping with % OR you use the pipe symbol to do the concatenation. You don't use pipes within the Expand, because what is there is just ...
by Nance1234
Wed Aug 28, 2024 7:37 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Re: Parameterized MDX

Thank you to both of you. - Lotsaram and gtonkin I will try to put the Hierarchy kinda MDX also which Lotsaram mentioned . This one Worked . vMDX= Expand('{TM1FILTERBYPATTERN( {Descendants( [' | dimName | '].[Total] ) } , "*%pAccount%*" )}'); But, These did not work (did not render any ele...
by Nance1234
Wed Aug 28, 2024 7:06 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Re: Parameterized MDX

You need to assign the whole MDX statement to a string variable e.g. sMDX='{TM1FILTERBYPATTERN( {TM1FILTERBYLEVEL( {Descendants( [ Account].[Total] ) } , 0)}, "* ' | pAccount | ' *" )}'; You could also try reduce the complexity of the quotes by using the Expand() function: sMDX=Expand('{T...
by Nance1234
Wed Aug 28, 2024 6:52 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Re: Parameterized MDX

Here you can use Expand to generate a string which contains double quotes. TM1FILTERBYPATTERN also has an argument for the attribute to search in. Otherwise you will be searching the principal name. The Descendants function can already return only leaves so no need to wrap in FilterByLevel. Even th...
by Nance1234
Wed Aug 28, 2024 5:37 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Parameterized MDX
Replies: 11
Views: 10423

Parameterized MDX

Hi experts, I have simple MDX to be filtered by a wildcard which needs to be parameterized within a process. The result should be as below where we are filtering by level zero for consolidation 'Total' and then doing a wildcard search for 'GL' in those elements. {TM1FILTERBYPATTERN( {TM1FILTERBYLEVE...
by Nance1234
Mon Aug 26, 2024 4:44 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CellPutN replacing with zeros
Replies: 4
Views: 4893

Re: CellPutN replacing with zeros

source has numbers -> ran the process -> data got loaded into the cube Source deleted some numbers -> ran the process -> will it replace the existing numbers with a zero in those target cells. This will depend. If the numbers deleted from the source are represented in the query as records containin...
by Nance1234
Mon Aug 26, 2024 4:37 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CellPutN replacing with zeros
Replies: 4
Views: 4893

Re: CellPutN replacing with zeros

Yes typically you do a zero out such that combinations that had values previously, but not at the time of a new load, are empty/do not exist anymore/do not take up space anymore. A process without zero out is possible too, but are less frequent. It depends on the use case. Thank you, Wim Gielis :)
by Nance1234
Fri Aug 23, 2024 10:24 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: CellPutN replacing with zeros
Replies: 4
Views: 4893

CellPutN replacing with zeros

Hi all, I have 2 questions: 1) Do we really need a zerout to be done in the TI process while using CellPutN for data load since it replaces the existing numbers? 2) If data is being pulled via SQL and we have used CellputN for load into the cube. source has numbers -> ran the process -> data got loa...