hi am having the error when calling report from my form in 11gR2 when i click the button i get this error
frm-41219:cannot find report:invalid
and when i click the ok button of the error i get this error frm-40738:Argument 1 to builtin RUN_REPORT_OBJECT CANNOT BE NULL
this is how i call the report
DECLARE
repid REPORT_OBJECT;
v_rep VARCHAR2(100);
rep_status VARCHAR2(20);
BEGIN
repid := FIND_REPORT_OBJECT('report4');
v_rep := RUN_REPORT_OBJECT(repid); END;