<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: How to call Microsoft Excel from Oracle Reports/Forms 6i</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/how-to-call-excel-from-oracle-reportforms-6i/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-call-excel-from-oracle-reportforms-6i/</link>
	<description></description>
	<pubDate>Mon, 09 Nov 2009 06:53:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-call-excel-from-oracle-reportforms-6i/#comment-58160</link>
		<dc:creator>Carlosdl</dc:creator>
		<pubDate>Thu, 27 Nov 2008 16:32:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-58160</guid>
		<description>Trying to post again, as it seems the editor removed the backslashes.

[CODE]declare
	myCSV text_io.file_type;
	app PLS_INTEGER;
Begin
	myCSV := text_io.fopen('c:test.csv','w');
	text_io.put_line(myCSV,'test1,test2,test3');
	text_io.fclose(myCSV);
	app := dde.app_begin('C:Program FilesMicrosoft OfficeOffice12EXCEL.EXE c:test.csv',dde.App_Mode_Maximized);
end;[/CODE]</description>
		<content:encoded><![CDATA[<p>Trying to post again, as it seems the editor removed the backslashes.</p>
<pre>declare
	myCSV text_io.file_type;
	app PLS_INTEGER;
Begin
	myCSV := text_io.fopen(&#8217;c:test.csv&#8217;,'w&#8217;);
	text_io.put_line(myCSV,&#8217;test1,test2,test3&#8242;);
	text_io.fclose(myCSV);
	app := dde.app_begin(&#8217;C:Program FilesMicrosoft OfficeOffice12EXCEL.EXE c:test.csv&#8217;,dde.App_Mode_Maximized);
end;</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-call-excel-from-oracle-reportforms-6i/#comment-58159</link>
		<dc:creator>Carlosdl</dc:creator>
		<pubDate>Thu, 27 Nov 2008 16:30:29 +0000</pubDate>
		<guid isPermaLink="false">#comment-58159</guid>
		<description>I have never generated XLS files, but I'm almost sure it can be done with the help of some library.
How about generating a CSV file, and open it with excel ? will that work for you ?

Using the TEXT_IO package you could write your program output to a file (csv), and after that, you could call Excel to open it, as described above.

For example:

Declare
	myCSV text_io.file_type;
	app PLS_INTEGER;
Begin
	myCSV := text_io.fopen('c:test.csv','w');
	text_io.put_line(myCSV,'test1,test2,test3');
	text_io.fclose(myCSV);
	app := dde.app_begin('C:Program FilesMicrosoft OfficeOffice12EXCEL.EXE c:test.csv',dde.App_Mode_Maximized);
end;

Some exception handlers need to be added...</description>
		<content:encoded><![CDATA[<p>I have never generated XLS files, but I&#8217;m almost sure it can be done with the help of some library.<br />
How about generating a CSV file, and open it with excel ? will that work for you ?</p>
<p>Using the TEXT_IO package you could write your program output to a file (csv), and after that, you could call Excel to open it, as described above.</p>
<p>For example:</p>
<p>Declare<br />
	myCSV text_io.file_type;<br />
	app PLS_INTEGER;<br />
Begin<br />
	myCSV := text_io.fopen(&#8217;c:test.csv&#8217;,'w&#8217;);<br />
	text_io.put_line(myCSV,&#8217;test1,test2,test3&#8242;);<br />
	text_io.fclose(myCSV);<br />
	app := dde.app_begin(&#8217;C:Program FilesMicrosoft OfficeOffice12EXCEL.EXE c:test.csv&#8217;,dde.App_Mode_Maximized);<br />
end;</p>
<p>Some exception handlers need to be added&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Exporacle</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-call-excel-from-oracle-reportforms-6i/#comment-58155</link>
		<dc:creator>Exporacle</dc:creator>
		<pubDate>Thu, 27 Nov 2008 08:46:19 +0000</pubDate>
		<guid isPermaLink="false">#comment-58155</guid>
		<description>thanks a lot for this

DDE is only open EXE file or specific file
but my problem is that to open when i call report through parameter output will be generated into excel form.give me this answer</description>
		<content:encoded><![CDATA[<p>thanks a lot for this</p>
<p>DDE is only open EXE file or specific file<br />
but my problem is that to open when i call report through parameter output will be generated into excel form.give me this answer</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- dynamic -->