Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running a report from a form

Status
Not open for further replies.

Kido

Programmer
Dec 10, 2001
29
0
0
KE
This is what I have for a when_button_pressed trigeer: (In developer 9i)

declare
repid report_object;
v_rep varchar2(200);
rep_status varchar2(20);
begin
repid := find_report_object('report_name');
v_rep := run_report_object(repid);

end;

When I press on the button, I get the message:
cannot find report. invalid id.

What could be wrong.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top