How to set the Report Server Name in SET_REPORT_OBJECT_PROPERTY built-In
I'm migrating an application from 6i to 10g, currently.
I've been facing some issues but, step-by-step, I've been able to go ahead.
Currently, I'm trying to do some coding adjusts on some forms using the RUN_PRODUCT Built-In (RUN_REPORT_OBJECT is the new one).
This built-in is used for calling reports, so, I got some clues to change the required code lines, for instance:
PROCEDURE Print_Rep_Web
IS
ro_report_id REPORT_OBJECT;
str_report_server_job VARCHAR2(100);
str_job_id VARCHAR2(100);
str_url VARCHAR2(100);
pl_id PARAMLIST;
BEGIN
pl_id := GET_PARAMETER_LIST ('TEMPDATA');
IF NOT ID_NULL (pl_id) THEN