Can't send reports to stand alone report server
Our system is working fine using in-process report server.just enabled the stand alone report server.
update the code to send the report to it using.
This is a working code. the only thing that was changed to test out the stand alone server was to change the report server name global variable.
:global.reportservername := 'rptsvr_hpvsdev180_frdev';
WEB.SHOW_DOCUMENT('http://'||:global.hostname||'/reports/rwservlet/getjobid'||
substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||:global.reportservername,'_blank');
When I try running a report I get
REP-52251: The output of job ID 1586 requested on Thu Sep 06 18:42:14 EDT 2012 cannot be retrieved.<P>REP-56033: Job 1586 does not exist.
update the code to send the report to it using.
This is a working code. the only thing that was changed to test out the stand alone server was to change the report server name global variable.
:global.reportservername := 'rptsvr_hpvsdev180_frdev';
WEB.SHOW_DOCUMENT('http://'||:global.hostname||'/reports/rwservlet/getjobid'||
substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server='||:global.reportservername,'_blank');
When I try running a report I get
REP-52251: The output of job ID 1586 requested on Thu Sep 06 18:42:14 EDT 2012 cannot be retrieved.<P>REP-56033: Job 1586 does not exist.
0