Question:
Hi all,
Hope someone can help me out with this.
At the moment I am working at a project that involves xml files.
I have read all the documentation regarding this subject and the test results looks good.
To be able to load an xml file, the xml file needs a particular header, so BW recognizes it.
In my particular situation, I get an xml file from oracle. All the file contains are tags, so I am missing the header which is needed to import to BW.
Does someone know how I can insert the header to the xml file?
Or can someone suggest me an other way to import the xml data?
thanks in advance,
mcteam
Answer:
Depends on the OS on which you work, but most Operating System do contain a language which could help you manipulating the files.
Just create a file which contains the header, and concatenate it .
In Windows Command mode a simple
copy toto.txt + titi.txt tata.txt
will concatenate toto.txt and titi.txt into tata.txt.
in Unix, a
cat toto.txt titi.txt > tata.txt
will do the same.
_________________
When my car stops, I first look at the gasoline's level before dismounting the engine.
Tuly Idiot's fan club active member.
Answer:
Hi Fred_gauthier,
Will give it a try, thanks for your help.
mcteam