Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Saving a Generated Report.

Status
Not open for further replies.

jahirs

MIS
Jan 22, 2003
12
US
Hi,
I am creating a PDF format Report by compounding 3 reports.
How the report can be saved automatically (without Save as prompt) in C:, when it gets generated from the web. (I do not have Report Caster)

Thanks in advance
Jaheer
 
It may work:
TABLE FILE
....
ON TABLE HOLD FORMAT PDF AS OUTP
END
-RUN
-DOS COPY OUTP.PDF C:-RUN

C:\ (WFServer side)
For client try using wget/curl

Pranas
 
It will work only when we define the OUTP file and use PCHOLD

-SET OUT='C:\out.pdf'
FILEDEF OUTP DISK &OUT

TABLE FILE
...
ON TABLE PCHOLD AS OUTP FORMAT PDF
END
-RUN
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top