Search found 25 matches
- Tue Oct 25, 2022 7:34 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Using Expand Function to make Variable Dynamic in TI
- Replies: 8
- Views: 3117
Re: Using Expand Function to make Variable Dynamic in TI
Hi gtonkin, Thanks for the help !!! I Used the method suggested by you just a tweak instead of using Sales Measure as a Dimension I Created a Variable Dimension in which i have Element from V1 to V57 and there in Attribute i am storing the Header Value with this it Makes my Code more Dynamic so that...
- Fri Oct 21, 2022 6:50 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Using Expand Function to make Variable Dynamic in TI
- Replies: 8
- Views: 3117
Re: Using Expand Function to make Variable Dynamic in TI
Hi gtonkin, That part is okay but how i need vElement and VData side by side is a problem i achieved this by hardcoding for the title record. but don't want to hard the title record as well. Expected output which i need which i got after hardcoding the title like IF(Count=1); vElement1=v1; Endif; th...
- Fri Oct 21, 2022 2:09 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Using Expand Function to make Variable Dynamic in TI
- Replies: 8
- Views: 3117
Re: Using Expand Function to make Variable Dynamic in TI
ExpandFunctionTesting4.txt Now the issue is that 1 Row is My Element Name in Dimension and from 2 Row it is data to be uploaded in specific Element which is in 1row taking example of one element only so now in my dump it is 1 "Pipeline Project Description" 2 "DFADFA" I want it t...
- Fri Oct 21, 2022 2:00 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Using Expand Function to make Variable Dynamic in TI
- Replies: 8
- Views: 3117
Re: Using Expand Function to make Variable Dynamic in TI
Attached Files of Dump by TextOutPut :
- Fri Oct 21, 2022 1:59 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Using Expand Function to make Variable Dynamic in TI
- Replies: 8
- Views: 3117
Using Expand Function to make Variable Dynamic in TI
Hi Team, I have a CSV in which I have 20 Columns and this can change in future that is the reason I want to make a dynamic TI. So that in future if some added more columns then it should directly pick no need to add more hardcoded rows. CSV as Source.png Data source Tab screenshot in TI. TI Data Sou...
- Tue Sep 17, 2019 8:06 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Credit cost allocation
- Replies: 1
- Views: 1850
Re: Credit cost allocation
If there is 1000 in combination of 1101 in debit side it should cellputn the 1000 in % wise in 9111. Credit side eg.(250).9112. Credit side eg.(250).9113. Credit side eg.(500). In this 3 combination how should i proceed further.
Thank you all
Thank you all
- Tue Sep 17, 2019 7:58 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Credit cost allocation
- Replies: 1
- Views: 1850
Credit cost allocation
Hi All, I have two cube 1 Profit&loss cube (pl) second allocation or mapping cube. Pl i have 8 dimensions Mapping cube 4 dimensions In pl cube debit side is rule calculated and i have employees who occur this cost and a corporate to whom i will allocate the cost in credit side. Now suppose there...
- Tue Sep 03, 2019 8:10 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
thank you tomok and wim,
I used while for my problem it's working fine speed is also good as the data set is in thousands only.
If further, I do the same without a loop I while post the solution here.
Thank you.
I used while for my problem it's working fine speed is also good as the data set is in thousands only.
If further, I do the same without a loop I while post the solution here.
Thank you.
- Fri Aug 30, 2019 10:44 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
Hey wim, i want to do a cellputn it has more than 10 lakh records but to load data i have a condition. condition is if my column b which is a country name in the data source is equal to h_region attribute which contains the country name To fetch all the attribute names i can use while as i have 100 ...
- Fri Aug 30, 2019 8:18 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
ncounter=1; vDimsiz=DIMSIZ('h_region'); While(ncounter<=vDimsiz); velement=DIMNM('h_region',ncounter); vCountryAttrs=Attrs('h_region',velement,'ABC'); ncounter=ncounter+1; Asciioutput('E:\Test.csv',vCountryAttrs,numbertostring(vDimsiz),velement); End; this gives me proper result but if i write the A...
- Fri Aug 30, 2019 6:54 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
Hey Wim,
I used a loop it works fine to fetch data against attribute but is it a good practice to write the condition and cellputn in the same loop to load the data at the same time.
I used a loop it works fine to fetch data against attribute but is it a good practice to write the condition and cellputn in the same loop to load the data at the same time.
- Fri Aug 30, 2019 6:29 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
I have made an Attribute named ABC in my dimension and when running the ti it gives the following error.
Error: MetaData/Data procedure line (5): Attribute "ABC" not found.
Thank You.
Error: MetaData/Data procedure line (5): Attribute "ABC" not found.
Thank You.
- Fri Aug 30, 2019 6:26 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
Re: DimensionAttrs
i think i have not properly explained the scenario data source is odbc which has 3 columns in which there is a country column also which i have to match with an attribute of a dimension named region which has codes as elements for every code a country is defined using text attribute. now before cell...
- Thu Aug 29, 2019 5:23 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: DimensionAttrs
- Replies: 15
- Views: 18851
DimensionAttrs
This a new function has anyone used it I wanted to use this to directly fetch the data stored in the attribute against elements. my scenario is like in data source I am fetching data from odbc which has 3 columns e.g sr.no country(vcountry) rate so I have 1 brazil 30. I have dimension Region which h...
- Wed Jun 05, 2019 2:26 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Updating dimension elements using TI with multiple level hierarchy
- Replies: 3
- Views: 3533
Re: Updating dimension elements using TI with multiple level hierarchy
Hi Declanr
I want to take unique elements only if it's blank or repeated I want to skip it you are making all the 12 unique your code is perfect if someone wants to insert all the 12 hierarchies.
Thank you
I want to take unique elements only if it's blank or repeated I want to skip it you are making all the 12 unique your code is perfect if someone wants to insert all the 12 hierarchies.
Thank you
- Wed Jun 05, 2019 2:19 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Updating dimension elements using TI with multiple level hierarchy
- Replies: 3
- Views: 3533
Re: Updating dimension elements using TI with multiple level hierarchy
There are 12 columns group 1, group 2, ... group 12.which will make hierarchy. Twist is I also have to write a 2 conditions that If group 1 is equal to group 2 than only take group 2 skip the group 1. And also one more condition that If group 1 is blank then skip it and jump to group 2. And this com...
- Tue Jun 04, 2019 6:26 pm
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Updating dimension elements using TI with multiple level hierarchy
- Replies: 3
- Views: 3533
Updating dimension elements using TI with multiple level hierarchy
Hiii team, I have a urgent requirement for this. I have flat file in which there are 10-15 columns To update the dimension 1column = N level elements. And remaining are 12 columns in which the parent info is given. Fir example consider the heading of other columns from group 1 to group 2. A hierarch...
- Mon Jun 03, 2019 4:31 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: Websheet connected to wrong server
- Replies: 2
- Views: 2641
Re: Websheet connected to wrong server
hey bunchukokoy,
Did you solved this problem i am also facing the same problem.
if you have solved this can you please share the solution.
thank you.
Did you solved this problem i am also facing the same problem.
if you have solved this can you please share the solution.
thank you.
- Fri May 31, 2019 5:00 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: TI summary display
- Replies: 14
- Views: 10266
Re: TI summary display
Hey PlanningDev,
Can you please elaborate the TM1RunTI.exe part i didn't understand it clearly.
I Have never used TM1RunTI.exe i only know the concept of it that with the help of it i can run my TI in multiple Threads.
Thanks
Manpreet
Can you please elaborate the TM1RunTI.exe part i didn't understand it clearly.
I Have never used TM1RunTI.exe i only know the concept of it that with the help of it i can run my TI in multiple Threads.
Thanks
Manpreet
- Thu May 30, 2019 11:47 am
- Forum: IBM TM1, Planning Analytics, PAx and PAW
- Topic: TI summary display
- Replies: 14
- Views: 10266
Re: TI summary display
Hey Team, the Logic I am applying to get the user the remaining time *****last time the process took this much time****** i have start time === 1 pm i have end time ==== 1.10 pm time taken ==== 10 mins now when i will run the Ti again i know a estimated time of 10 mins now what i want actually is th...
