Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Reports 10G weird characters on my screen

GadoFeb 1 2015 — edited Feb 1 2015

Hey Guys;

I'm calling a report from my form using this code :

DECLARE

repid REPORT_OBJECT;

v_rep VARCHAR2(100);

rep_status VARCHAR2(20);

BEGIN

repid := find_report_object('CITY_REP'); -- REPORT BULTI IN

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,PRINTER);

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'HTMLCSS');

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rep_pc1');

SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'GLOB_BRAN='||:GLOBAL.BRAN||' '||'GLOB_USERID='||:GLOBAL.LOGIDD);

v_rep := RUN_REPORT_OBJECT(repid);

rep_status := REPORT_OBJECT_STATUS(v_rep);

WEB.SHOW_DOCUMENT('http://pc1:8889/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rep_pc1','_blank');;)

END;

After the report is printed a new tab opens in my web browser with a lot of garbage on it ... here is a pic:

ERROR.jpg

Pleeeeze help my as soon as you could my dead line is after 12 hours from now.

Thanks for your time.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 1 2015
Added on Feb 1 2015
0 comments
465 views