• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to open report builder form(oracle) while clicking the jsp page(Online) link

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All

I should access the report builder form form jsp page. but i am unable to understand How to open report builder form(oracle) while clicking the jsp page(Online) link.

if any one knows the solution please help me.

Thanks,
 
Ranch Hand
Posts: 147
Eclipse IDE Tomcat Server Debian
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You should be able to do this by passing any parameters to the report in a query string (see http://en.wikipedia.org/wiki/Query_string ). You can also look at http://docs.oracle.com/cd/E12839_01/bi.1111/b32121/pbr_run001.htm as a reference for parameters in Reports 11g

 
udayagiri anji
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Pete Nelson

Thanks your suggessition. but the report form url is like this type : http://abc.com:8181/FNDWRR.exe?temp_id=3326783459
Temp id is runtime generated. I don't know how to pass the parameters. Give me suggessions.


Thanks
 
Pete Nelson
Ranch Hand
Posts: 147
Eclipse IDE Tomcat Server Debian
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It depends on how you are creating the page with the link. If you're using JSP & JSTL, you probably want to use a request attribute (calling it "tempID" below) the c:url tag

In the above case, the variable "tempID" would have to be set at runtime by your JSP. I am not 100% sure how you are getting that temp_id to begin with.
 
You get good luck from rubbing the belly of a tiny ad:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic