Date: Wed, 16 Jan 2008 03:37:30 -0800
Reply-To: jules_pit@FS-NETCOM.DE
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: jules_pit@FS-NETCOM.DE
Organization: http://groups.google.com
Subject: how to put xml data to file _webout or ods html
Content-Type: text/plain; charset=ISO-8859-1
Hello There,
i have a problem with an xml file or an db-table filled with xml-
statements.
I want to put them out onto the desktop with
data _null_;
set xmltable / infile xmlfile;
file _webout;
put row;
run;
In the xml-file is an xsl stylesheet-statement to format the xml-
ouput.
When you do a right click and "show sourcecode", the whole xml-
statements are in the sourcecode, but they are not printed to the
display.
It seems that the put Statement doesnt protect the paranthesis of the
xml-statements, so the stylesheet cannot work.
When i copy the sourcecode of the webpage and put it into a file on
the desktop, copy the xsl-steylesheet next to the xml-file and open it
with the internet explorer, you can see the xsl-formatted output that
is desired.
Do you know what the problem is? Help would be great.
Greetings,
Patrick
|