CSV Report generation

Greetings,I am generating reports in excel and its working fine, my problem is that domino server is installed on LINUX platform and LINUX doesn’t support excel…so report generation is now stopped.

what is the solution for this, how can I generate reports?

If on CSV then how? and if on HTML report then how?. The application is web based.

Thanks,

Panther

Subject: CSV Report generation

You can write ($WebQuerySave) agent in LotusScript, this agent can generate CSV files on server disk. Doesn’t matter if it is win or linux.

Subject: CSV Report generation

Why don’t you use the old way?In a lotusscript agent that you call from a web page start “printing” the content to the browser.

ex.

sub intitialize

Print {Content-Type:application/vnd.ms-excel}

print doc.fielda(0) & “,” & doc.fieldb(0) & “,” & “etc”

end sub

Also print html stuff works and Excell recognizes these things.

Try this

ex. sub Intialize

Print |

testI’m the second cell, first row
and so on//tr>
|

end sub

Also Collspan and rowspan works. Even some functions.

hope this helps.

regards

Peter