What is the process to call a report from a form of current record of the form whth out parameter form?

Editorial / Best Answer

vinod_ce2005@hotmail.com  

  • Member Since Dec-2005 | Dec 29th, 2005


by using run_product we can call report from a form

Showing Answers 1 - 21 of 21 Answers

venkataramakalva

  • Sep 26th, 2005
 

USING RUN_PRODUCT WE CALL THE REPORT.

ranjan

  • Nov 25th, 2005
 

to call a report from a form by using current record without parameter in reposrt we use run_procedure. what will be the contents of procedure.

dhiraj

  • Apr 8th, 2006
 

dear friend

I am try and call_from open.But not a record open.

so please help me .call_parameter make.

full_example.

by dhiraj.

faizy

  • Apr 21st, 2006
 

What is the process to call a report from a form

  Was this answer useful?  Yes

kameshakundy

  • Jun 22nd, 2006
 

Dear Friend,Please look at this, probably this will help you out.To run a report from within a form, you must use the dedicated report integration built-in RUN_REPORT_OBJECT. If you want the call the report without parameter form you need create a parameter list before using the RUN_REPORT_OBJECT using ADD_PARAMETER built-in. Once the Parameter list is created then use any one of the following syntax to call RUN_REPORT_OBJECT. e.g. RUN_REPORT_OBJECT (report_id REPORT_OBJECT, paramlist_name VARCHAR2) or RUN_REPORT_OBJECT (report_id REPORT_OBJECT, paramlist_id PARAMLIST); or RUN_REPORT_OBJECT (report_name REPORT_OBJECT, paramlist_name VARCHAR2) or RUN_REPORT_OBJECT (report_name REPORT_OBJECT, paramlist_id PARAMLIST);URL = http://hostname/reports/rwservlet?destype=cache&desformat=html&server=?reportservername?&report='report_path/report.rdf'¶meterform=no&userid=username/password@databaseconnectstring ; In case of web deployment use WEB.SHOW_DOCUMENT( URL);

Abhishek Agarwal

  • Jul 16th, 2007
 

By using RUN_PRODUCT procedure and by passing all the parameters on the same form from where we are calling the report without using any other parametric form

t.v.sudhakar

  • Jul 24th, 2007
 

by using  run_product(report,report_name,asynchronous mode,paramlist,'',...)

radhika

  • Apr 28th, 2012
 

we can call report from form directly from object navigator of form

  Was this answer useful?  Yes

kamaraj

  • Feb 12th, 2015
 

guys always give correct answer cz people think its correct
Using run_product(6i),run_report_object(10g)
set_report_object_property(repid,report_other,paramform=no) using this we can hide parameter form

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions