Graphics error OG- 00608 [message #291513] |
Fri, 04 January 2008 09:48 |
patmyers
Messages: 2 Registered: December 2007
|
Junior Member |
|
|
Hi,
I am passing date parameters to an oracle graph which I want to display in the graph header. The parameters are being used in the following trigger to appear in the header
PROCEDURE OGTRIGGERPROC0 IS
chart OG_OBJECT;
from_dt varchar2(20);
to_dt varchar2(20);
title VARCHAR2(100);
BEGIN
chart := og_get_object ('my_chart');
from_dt := og_get_char_param ('P_FROM_DATE');
to_dt := og_get_char_param ('P_TO_DATE');
title := 'My Chart from '||from_dt ||' to '||to_dt;
og_set_title (chart, title);
end;
When I run the graph stand alone it runs fine with the default values I have in the parameters but if I run it using
run_product from the form I get the error OG- 00608 Unable to execute pl/sql procedure.
Any help appreciated
|
|
|
|
Re: Graphics error OG- 00608 [message #292539 is a reply to message #292385] |
Wed, 09 January 2008 03:11 |
patmyers
Messages: 2 Registered: December 2007
|
Junior Member |
|
|
Thanks David,
Yes I have solved the problem. I was tryinng to pass parameters from forms 6 to grahics program. The problem was that I was using graphics 6i and not graphics 6.
Pat
|
|
|