when i call report from oracle apex using below code getting error
ORA-06550: line 6, column 1: PLS-00201: identifier 'XLIB_JASPERREPORTS.SET_REPORT_URL' must be declared
DECLARE
l_additional_parameters varchar2(32767);
begin
xlib_jasperreports.set_report_url('http://localhost:8080/jri/report');
xlib_jasperreports.show_report(p_rep_name=>'Test1',
p_rep_format=>'pdf',
p_data_source=>'APPS',
p_rep_locale='en-US',
p_out_filename='Test1.PDF'
);
apex_application.g_unrecoverable_error:='true';
end;