Consultor Eletrônico



Kbase P10635: How to save an actuate report in txt format?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   1/30/2003
Status: Unverified

GOAL:

How to save an Actuate report in txt format

FACT(s) (Environment):

Actuate

FIX:

There is no automatic way to convert an Actuate report output to TXT format, however this functionality can be implemented using Actuate programming.

In order to generate the output of a report to a file perform the following steps on Actuate Developer Workbench:

1. Open the Properties of the Datastream object
2. Change the Start method and include the following code:
OPEN "C:/TEMP/ACTUATE.TXT" FOR OUTPUT AS #2
3. Change the Finish method and include the following code:
CLOSE #2
4. Open the Properties of Datarow object
5. Change the Onread method and include the following code:
WRITE #2, customer_salesrep