Print .rdf file as pdf from report builder [message #277082] |
Sun, 28 October 2007 12:53 |
mnanias
Messages: 40 Registered: September 2007 Location: AMERICA
|
Member |
|
|
Hi,
I have created an report using oracle reports now i should be able to call that report thru forms and i should be able to print it in pdf format.I dont have concurrent manager my form server and report server are in 2 different systems.So can any one please help me in this and for now i should be able to print the report in pdf formate at least thru report builder.Can any one help me in this
I am using Oracle forms 10g and reports 10g
Thank You in Advance.
|
|
|
Re: Print .rdf file as pdf from report builder [message #277231 is a reply to message #277082] |
Mon, 29 October 2007 05:09 |
|
sasipalarivattom
Messages: 121 Registered: June 2007 Location: Cochin ( INDIA )
|
Senior Member |
|
|
What I usually do to print report through forms is
as follows. It may help you..
DECLARE
rePid REPORT_OBJECT;
rep_hndl VARCHAR2(100);
BEGIN
rePid := Find_Report_Object('reptxt.rdf');
SET_REPORT_OBJECT_PROPERTY(repid, REPORT_DESTYPE,file);
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'d:\sasi\reports\test.rdf');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'pdf');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,'d:\sasi\outputs\testoutput.pdf');
SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,repservername);
******************************************************************************
rep_hndl := RUN_REPORT_OBJECT(repid);
WEB.SHOW_DOCUMENT(r1.reptempurl||vcSFile,'_blank');
rep_hndl := Run_Report_Object(rePid);
END;
Please tell me the output...
and please check my question also
http://www.orafaq.com/forum/t/91684/107256/
[Updated on: Mon, 29 October 2007 06:43] Report message to a moderator
|
|
|
|
Re: Print .rdf file as pdf from report builder [message #278839 is a reply to message #277082] |
Mon, 05 November 2007 21:33 |
mnanias
Messages: 40 Registered: September 2007 Location: AMERICA
|
Member |
|
|
Hi,
I am using oracle 10g and when i try to run weblayout report tru report builder i was not able to but i am able to do paper layout and when i check the error msg i find the server is not initialized can any one tell me how should i initialize the server.
Thank You,
|
|
|