Run_product problems [message #608226] |
Mon, 17 February 2014 14:01 |
martin74
Messages: 3 Registered: October 2010 Location: VENEZUELA
|
Junior Member |
|
|
I have an application and forms6i and report 6. The forms run smoothly and also reports. Sometimes I run out and reports correctly, but sometimes are hung and I have to cancel the application. What could be the problem?. The pc has 2 gb of ram. It seems that in some cases the resources consumed run_product pc. Greetings and thanks.
[EDITED by LF: fixed topic title typo; was "rub_product"]
[Updated on: Thu, 13 March 2014 01:01] by Moderator Report message to a moderator
|
|
|
Re: Rub_product problems [message #609830 is a reply to message #608226] |
Wed, 12 March 2014 16:35 |
|
Rayam69
Messages: 43 Registered: May 2012
|
Member |
|
|
Hi
you can use the host command and run the report form forms. See simple sample below.
declare
para varchar2(600);
begin
para := 'c:\orant\bin\RWRUN60.EXE <my_report_name>.rep scott/tiger@orcl destype=file desname=<my_dest_name>||'.pdf' DESFORMAT=PDF PARAMFORM=NO BATCH=YES';
host(para);
end;
thanks.
|
|
|