We are currently upgrading forms and reports servers from from 11g to 12c on Windows
In 11g this kind of call:
v_rep_rtn := Run_Report_Object(v_report, p_paramlist);
returned the reports servername + the id for the generated report, which we could then use to show it
And Report_Object_Status would return FINISHED
But in 12c we always get the reports servername + "0" as report ID, and Report_Object_Status as NULL
But the report does get generated on the server, and can be found as a PDF as expected
Does anybody know why 12c doesn't seem to return the Run_Report_Object and Report_Object_Status we need like 11g did?
Is there a fix?