Deploy Oracle Reports (RDF) from Oracle Apex
Call Oracle Reports from Oracle Apex
https://www.youtube.com/watch?v=7boFh6A8lEA
https://www.youtube.com/watch?v=c0tdz8yXJsk
1) go to T:\Weblogic\Middleware\user_projects\domains\ClassicDomain\config\fmwconfig\servers\WLS_REPORTS\applications\reports_11.1.2\configuration and open cgicmd.dat file
Copy attached and past in last row after
;;;;;;;;;;;;
CIS: userid="TEST/TEST@XE server=REP_CIS desformat=PDF destype=cache paramform=no" %*
2) Create Print Button in Apex and Call URL on Button
javascript:window.open('http://host:8888/reports/rwservlet?CIS&P_FDOCNO=&P602_DOCNO.&P_TDOCNO=&P602_DOCNO.&+report=T:/REPORT/IND/BEL/Rep11g/PORDREP.rdf','winnm','width=600,height=500')
OR
javascript:window.open('&CIS_RDF.&P_FDOCNO=&P602_DOCNO.&P_TDOCNO=&P602_DOCNO.&+report=&REPORT_PATH./PORDREP.rdf','winnm','width=600,height=500')
here
1) Report Application Server URL
&CIS_RDF. = go to Eidit the Application --> Substitutions -->
Substitution String = http://host:8888/reports/rwservlet?CIS
2) Physical RDF Path of Report
&REPORT_PATH. = Go to Shared Components / Application Processes / Create Process --> GET_REPORT_PATH
get_report_path (:REPORT_PATH); this will fetch the Physical path of report from desired table.
i.e select path from path_table where report ='XX'
out put :- T:/REPORT/IND/BEL/Rep11g
Comments
Post a Comment