Search found 12 matches

by AshokReddy
Wed Aug 29, 2012 1:46 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI Process Erro
Replies: 0
Views: 2084

TI Process Erro

Hi I am trying to create a new cube and dimensions using a TI process and loading the data into the cube using CSV file. In the prolog : dimensiondestroy('m_intest'); dimensiondestroy('m_outtest'); dimensioncreate('m_intest'); dimensioncreate('m_outtest'); cubecreate('LKP_CC','m_intest','m_outtest')...
by AshokReddy
Tue Aug 28, 2012 3:03 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Data into Final CSV file
Replies: 1
Views: 1485

Data into Final CSV file

Hi Team,

I have extracted 3 CSV files from one cube using different views, Now i want to make a final CSV file using these 3 files using TI process.

how can i achive this in TM1.

Regards
Ashok
by AshokReddy
Tue Aug 28, 2012 6:36 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Exporting Data in CSV file
Replies: 2
Views: 2817

Exporting Data in CSV file

Hi , I am trying to export data from a cube and putting in a CSV file. To do this i am creating a view , In that view i need to export data for 2 measures. When i am creating the View in the subset for measure dimension i am wrinting as below. SubsetCreate('Measure',Subsetname); SubsetElementInsert(...
by AshokReddy
Thu Aug 02, 2012 12:01 pm
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: TI process not working
Replies: 3
Views: 2904

TI process not working

Hi All, I have TI process which is running correctly . My TI process : Test_TI and i renamed it to Test1_TI , In Test_TI iam creating the dimensions and cube and loading the file data into the cube. After that i am exporting the same data into the CSV file and deleting that cube and dimensions from ...
by AshokReddy
Fri Jul 27, 2012 7:09 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Question on TM1 how to Achive this
Replies: 2
Views: 2064

Question on TM1 how to Achive this

In source file they have two time stamped references & they want to connect both with Time Dimension. Let me give you some examples of why we have this business requirement: Case 1: In our SAP-bookings we consider two time stamps: date of transaction and date of the booking itself. It can happen...
by AshokReddy
Thu Jul 26, 2012 10:36 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

Thanks guys for all your support.!!!!!

Ahhh... Got your point...

@Duncan - Your comment is completely understood.. :)

Thanks Duncan and Steve Rowe. .....
by AshokReddy
Thu Jul 26, 2012 10:22 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

@Duncan -- Thanks a lot for your expert comments.. It worked for us.. and now in output file we are getting single records. But, could you please explain it in little bit more detail. According to our understanding: While creating source view of the cube, we were using 2 elements of measure dimensio...
by AshokReddy
Wed Jul 25, 2012 9:38 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

Hi

Yes, I am getting the BGTQTY and BGTAMT using CELLGETN
by AshokReddy
Wed Jul 25, 2012 7:59 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

I am extracting this data from a cube, So there won't be any duplicates in the cube.

RGD's
Ashok
by AshokReddy
Wed Jul 25, 2012 7:17 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

I tried - Not working still the rows are repeating: If(count=1); count = count+1; ASCIIoutput(v_output_file,'FISCAL PERIOD','PLANT','MATERIAL OUT','MATERIAL','ACTIVITY TYPE','COST CENTER','DEBIT CREDIT','CURRENCY','UoM','BUDGET AMOUNT','BUDGET QUANTITY'); Else; ASCIIoutput(v_output_file,v_fiscal_per...
by AshokReddy
Wed Jul 25, 2012 6:55 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Re: Asciioutput issue

sorry, I for got to include the important point, I am able to extract the data into the CSV file but the data is coming Tiwce (Each Row it is repeating)
by AshokReddy
Wed Jul 25, 2012 6:19 am
Forum: IBM TM1, Planning Analytics, PAx and PAW
Topic: Asciioutput issue
Replies: 13
Views: 11092

Asciioutput issue

Hi I am trying to Extract data from a cube view , When extracting to CSV file i have Print heading aswell in the CSV file, So i am trying to write the below mentioned code to print the values. If(count=1); ASCIIoutput(v_output_file,'FISCAL PERIOD','PLANT','MATERIAL OUT','MATERIAL','ACTIVITY TYPE','C...