Hello,
Is it possible to upload xml file with TI?
Thanks,
Sabke
upload xml with TI?
-
- Site Admin
- Posts: 1458
- Joined: Wed May 28, 2008 9:09 am
Re: upload xml with TI?
If you read the docs and/or create a new process you will see that XML is not a supported source. You could possibly write your own XML parser in TI but I doubt it would be fun to do.
-
- Posts: 53
- Joined: Tue Jul 28, 2009 7:26 pm
- OLAP Product: TM1, EP, Powerplay, C8/C10
- Version: 10.2
- Excel Version: 2013
- Location: London
- Contact:
Re: upload xml with TI?
Hi Sabke
If you model the XML document via Framework Manager you can import it into TM1 via TI.
This will require you to have a Cognos 8/10 BI implementation and it will require you to model the XML document using VVM (Virtual View Manager).
VVM will allow you to model the XML document and its associated schema and allow you to expose the structure to FM (Framework Manager) as a package.
I have done this for a number of customers - it's a bit fiddly to get setup, but once setup it works a treat !.
It is also useful if you have web services that need calling to update on a more regular basis.
Kind Regards
Nick
If you model the XML document via Framework Manager you can import it into TM1 via TI.
This will require you to have a Cognos 8/10 BI implementation and it will require you to model the XML document using VVM (Virtual View Manager).
VVM will allow you to model the XML document and its associated schema and allow you to expose the structure to FM (Framework Manager) as a package.
I have done this for a number of customers - it's a bit fiddly to get setup, but once setup it works a treat !.
It is also useful if you have web services that need calling to update on a more regular basis.
Kind Regards
Nick
-
- Posts: 2
- Joined: Mon Jan 02, 2012 2:52 pm
- OLAP Product: Cognos TM1
- Version: 9.5.1.
- Excel Version: Excel 2007
Re: upload xml with TI?
Thanks all.
A pitty that we don't have Cognos BI. I 'll try to remember when we're planning to install Cognos 10 BI.
Kind regards,
Sabke
A pitty that we don't have Cognos BI. I 'll try to remember when we're planning to install Cognos 10 BI.
Kind regards,
Sabke
-
- MVP
- Posts: 733
- Joined: Wed May 14, 2008 11:06 pm
Re: upload xml with TI?
I worked on an IBM PoC model where they had successfully used Business Viewpoint (I think this is it) to allow ODBC queries to run against XML files - thus allowing TI to 'read' the XML. IIRC, this can be installed independently of the C8 BI stack, but also IIRC costs a fortune. Maybe you can get a dealSabke wrote:A pitty that we don't have Cognos BI.

Ultimately, the client didn't go for it and so I had to write an XML->CSV processor to get over the line with this requirement (TI then reads the CSV). Depending on how you handle the XML input this can be a fairly robust solution but obviously - a) something in TI, or b) something like BV - would be preferable.
Because you can call VBScript or Powershell from the TI ExecuteCommand then, if you want to have a go writing your own, you could check these references:
If you want to use VBScript
If you want to use Powershell
Another Powershell link
Robin Mackenzie
-
- Posts: 53
- Joined: Tue Jul 28, 2009 7:26 pm
- OLAP Product: TM1, EP, Powerplay, C8/C10
- Version: 10.2
- Excel Version: 2013
- Location: London
- Contact:
Re: upload xml with TI?
From past experience (having worked at Cognos and IBM) - Business Viewpoint licensing can be quite expensive.
If you purchase a single Cognos 10 BI administrator license - this should be relatively inexpensive and will give you access to the VVM (Virtual View Manager) component which will answer all your problems
without the need for writing complex parsing scripts or conversion programs.
Or of course you can go down the code monkey approach for free of course !.
Good Luck
Nick
If you purchase a single Cognos 10 BI administrator license - this should be relatively inexpensive and will give you access to the VVM (Virtual View Manager) component which will answer all your problems
without the need for writing complex parsing scripts or conversion programs.
Or of course you can go down the code monkey approach for free of course !.
Good Luck
Nick
-
- MVP
- Posts: 2836
- Joined: Tue Feb 16, 2010 2:39 pm
- OLAP Product: TM1, Palo
- Version: Beginning of time thru 10.2
- Excel Version: 2003-2007-2010-2013
- Location: Atlanta, GA
- Contact:
Re: upload xml with TI?
Google "ODBC drivers for XML". There are third-party products out there that can present your XML data via ODBC that don't cost an arm and a leg. If you have a SQL server (2005 or later), you can also load the XML data to it as an intermediate step. SQL server has an XML data type to make the loading easy.