Goodmorning everyone. I am new and I apologize if I am wrong.
My problem is the following: I installed Oracle form & reports 12 (Version 12.2.1.4.0) and everything works, even webutil, but when I print a report on the browser the address is wrong.
It takes http: //localhost.9001 instead of 9002.
How do I fix it? To launch the report from a form I call a procedure that uses this script: ( in Oracle forms & reports 11 G work fine)
Str_URL: = / reports / rwservlet / getjobid = '|| Str_Job_ID ||'? Server = '||: global.Report_Server;
Web.Show_Document (Str_URL, '_ blank')
This is the result : http://localhost:9001/reports/rwservlet/getjobid=39 the port number is incorrect must be 9002.
I know that if I write this way it works, but I don't want to have to change all the reports I have that are about fifty : Str_URL := :global.Report_Host||'/reports/rwservlet/getjobid=' ||Str_Job_ID||'?server='||:global.Report_Server;
where the :global.Report_Host is 'Http://localhost:9002'
Is there a solution?
Thank you very much