report_object_status [ERROR] [message #408587] |
Wed, 17 June 2009 00:28 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
vbhowmick
Messages: 8 Registered: June 2009
|
Junior Member |
|
|
DECLARE
repid REPORT_OBJECT;
report_prop VARCHAR2(20);
v_rep VARCHAR2(300);
rep_status varchar2(20);
BEGIN
repid := find_report_object('REPORT6');
v_rep := RUN_REPORT_OBJECT(repid);
rep_status :=report_object_status(v_rep);
end;
after running the for it showing Argument 1
to report_object_status cannot be null. Can anyone please help me out of this.
Vasker
|
|
|
|
Re: report_object_status [ERROR] [message #416142 is a reply to message #408587] |
Thu, 30 July 2009 16:36 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
christianmlong
Messages: 3 Registered: July 2009
|
Junior Member |
|
|
From the Forms 6i docs:
RUN_REPORT_OBJECT built-in
Quote: |
If you invoke Run_Report_Object with a blank Report Server property, the return value will be NULL. In that case, you cannot then use the built-ins Report_Object_Status and Copy_Report_Object_Output, because they require an actual ID value.
|
|
|
|