report from form [message #241344] |
Tue, 29 May 2007 05:35  |
orafacjublu
Messages: 95 Registered: May 2006 Location: KOLKATA
|
Member |
|
|
what is the code to run a report dynamically from a report.
Suppose i have created a form on a table.Now there is a button which when clicked a new row is inserted in that table and a report is based on that updated table is generated
[Updated on: Tue, 29 May 2007 05:37] Report message to a moderator
|
|
|
Re: report from form [message #241376 is a reply to message #241344] |
Tue, 29 May 2007 07:09   |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
Please clear you want to run report from Form?????
Yes...
Then You have to pass parameters from form to report.
Create , Add and delete parameter
|
|
|
|
Re: report from form [message #243114 is a reply to message #241344] |
Wed, 06 June 2007 02:36  |
oracleproblem
Messages: 47 Registered: May 2006 Location: Dhaka
|
Member |
|
|
prease create a procedure.....
DECLARE
pl_id ParamList;
BEGIN
Run_Product(REPORTS, 'D:\BracBank(checkprint)\CheckFrontPage.RDF', SYNCHRONOUS, RUNTIME,FILESYSTEM, pl_id, NULL);
END;
///'D:\BracBank(checkprint)\CheckFrontPage.RDF',
this is the path .............
|
|
|