I am using Oracle Developer 6 (Report server) to call the report:
SPOOL xxx.cmd;
set echo off
set verify off
set heading off
set term off
SELECT 'REPORT=yyy.RDF
USERID=&1
BATCH=YES
PARAMFORM=NO
DESTYPE=FILE
DESFORMAT=PDF
DESNAME=zzz.pdf
FROM DUAL;
SPOOL OFF;
HOST RWRUN60 CMDFILE=xxx.cmd
However, I will use oracle 9ias later (report 9i) and
the report should be called by 3-tier (no line command can be used),
what can I do?
Start Free Trial