Find Report Object
From: Shelli D. Orton <shelli.orton_at_crha-health.ab.ca>
Date: Tue, 13 Jul 1999 17:48:16 GMT
Message-ID: <378B7C51.BE3B673F_at_crha-health.ab.ca>
Hi,
Date: Tue, 13 Jul 1999 17:48:16 GMT
Message-ID: <378B7C51.BE3B673F_at_crha-health.ab.ca>
Hi,
I've written a little procedure that is supposed to find a report id, using FIND_REPORT_OBJECT, and then run the report, using RUN_REPORT_OBJECT. Problem is it can't find the report. I used the reference manual example as my prototype and I've hard coded the path to the report but that doesn't seem to help. Anyone have any ideas what I'm doing wrong?
My code:
PROCEDURE RUN_FC_ORPHAN IS
report_id REPORT_OBJECT;
report VARCHAR2(100);
BEGIN
report_id := FIND_REPORT_OBJECT('U:\SHELLI\REPORT
DISTRIBUTION\REPORTS\FC_ORPHANS.FMX');
report := RUN_REPORT_OBJECT(report_id);
END;
Thanks, Shelli
Received on Tue Jul 13 1999 - 19:48:16 CEST