Please suggest the URL to display JSP report

Hi Experts,
Last week, we tried to change the memory of Response Cache and buffer Cache to increase the speed of the Excel report. But it didn’t work out.
And from the below link, I understood we can convert the oracle 9i report to excel by converting the Oracle 9i report to JSP report.
http://www.oracle.com/technology/products/reports/htdocs/getstart/demonstrations/index.html
I’ve converted the Oracle 9i report to JSP report and finding the way to display the JSP report using Application Server. I am trying to find out the REPORT URL of simple JSP report and using Reports Servlet . Right now I am trying the below steps to display the JSP report in Application Server.
Please suggest the URL for displaying the JSP report
Thanks & Regards

Please explain how any of this relates to the topic of this forum: "Database Upgrade."
If you repost your question in the correct forum, or perhaps with the correct company, will be more likely to find the help you need. For example ... what App Server (make and model).
Thank you?

Similar Messages

  • How to hide the userid info on the url for a JSP report

    Hi,
    I am aware of creating a key in the cgicmd.dat file. It works when I am calling the report (which is a parameter report) for the first time. But the subsequent report being called by the post method as in :
    <form name="form1" method="post" action="/reports/summary_sptype.jsp?gsip">
    does not work. Where gsip is defined as the key.
    Any help?
    Thanks,
    Ritendra.

    Exaactly-only I want to find the best time needed to finish for an article or multiple articles i.e I do not know how many articles will be available for each vendor beforehand before doing a select on the 2 tables. But once I know the number (maybe 1 or more than 1) I want to allot the best time for that article/lot of articles(maybe JOB_OPEN  technique ?).Also the number of articles may vary over time so the algorithm should take care of that too.-quite a tricky prob :)-I would request the others to see this reply which I think will clarify their doubts.
    Edited by: Hasso14 on Apr 28, 2011 9:03 PM

  • Please suggest the best book or materila to learn EP Developement

    Please suggest the best book for learning Enterprise Portal developement in SAP ?  Which one is good in between below.
    1. SAP® NetWeaver Portal Technology: The Complete Reference by Rabi Jay ( How is this book in EP ?)
    2. SAP Authorization System: Design and Implementation of Authorization concepts for SAP R/3 and SAP Enterprise Portals by IBM Business Consulting (sap press book).
    Regards
    Badari

    Hi,
    For Content Developments you can refer below links
    LINKS FOR BEGINNER:
    Beginning EP Development
    Oliver's favorite SDN link collection
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/387daf90-0201-0010-bb98-cb1a5545bf69
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/4b0c105e-0501-0010-bcb0-92478a4b2a17
    Overview of the Content Development Process
    Overview of the Content Development Process
    Java development methodologies (Part I)
    Java development methodologies (Part I)
    Java development methodologies (Part II)
    Java development methodologies (Part II)
    Setting up the NetWeaver development environment (Part II)
    Setting up the NetWeaver development environment (Part II)
    Installing and configuring the preview edition of EP
    Installing and configuring the preview edition of EP
    Top Weblogs of All Time [19 to 14]
    Top Weblogs of All Time [19 to 14]
    Enterprise Portal Implementation Forum
    Enterprise Portal Implementation Forum
    Beginning EP Development
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/40e93bac3c5a6de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/50/da644160087d47e10000000a1550b0/frameset.htm
    Have a look at the following threads to have an introduction to portal:
    Hi
    What is EP ??
    For kick start in portal, the following Wiki link is enough:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/ep/introduction%2bto%2bportal
    You can now see the following threads which already have similar question discussed, you will get lots of links in these threads:
    Start with EP
    e-Books on EP
    Portal Development
    Portal 7.0 Documentation
    Beginner to EP
    Thanks
    Santosh

  • BAPI_REQUISITION_CHANGE  please suggest the mandatory  fields.

    I am using the Bapi_requisition_change  in se 37 .
    i am inputting the following parameters
    NUMBER                          10032908
      REQUISITION_ITEMS_OLD
    REQUISITION_ITEMS_NEW
    REQUISITION_ACCOUNT_OLD
    REQUISITION_ACCOUNT_NEW.
    but following error is coming while executing the fs.
    Data in REQUISITION_ITEM_OLD for item 00010 does not correspond to current database status
    and also please suggest the mandatory fields for this bapi

    Shashi,
    Try this:
    report z_po_req_create.
    DATA : T_REQUISITION_ITEMS LIKE BAPIEBANC OCCURS 0 WITH HEADER LINE,
    T_RETURN LIKE BAPIRETURN OCCURS 0 WITH HEADER LINE .
    DATA : E_NUMBER LIKE BAPIEBANC-PREQ_NO.
    T_REQUISITION_ITEMS-DOC_TYPE = 'NB'.
    T_REQUISITION_ITEMS-DEL_DATCAT = '1'.
    T_REQUISITION_ITEMS-DELIV_DATE = '20020626'.
    T_REQUISITION_ITEMS-PLANT = 'P1'.
    T_REQUISITION_ITEMS-STORE_LOC = '01'.
    T_REQUISITION_ITEMS-PUR_GROUP = 'P01'.
    T_REQUISITION_ITEMS-MAT_GRP = '01'.
    T_REQUISITION_ITEMS-PREQ_ITEM = 1.
    T_REQUISITION_ITEMS-MATERIAL = '1MAT1'.
    T_REQUISITION_ITEMS-QUANTITY = 10.
    T_REQUISITION_ITEMS-PREQ_NAME = '123456'.
    T_REQUISITION_ITEMS-PURCH_ORG = '1000'.
    T_REQUISITION_ITEMS-ACCTASSCAT = 'U' .
    T_REQUISITION_ITEMS-VEND_MAT = 'G'.
    APPEND T_REQUISITION_ITEMS.
    CALL FUNCTION 'BAPI_REQUISITION_CREATE'
    EXPORTING
    SKIP_ITEMS_WITH_ERROR =
    IMPORTING
    NUMBER = E_NUMBER
    TABLES
    REQUISITION_ITEMS = T_REQUISITION_ITEMS
    REQUISITION_ACCOUNT_ASSIGNMENT = T_REQ_ACCOUNT_ASSIGNMENT
    REQUISITION_ITEM_TEXT =
    REQUISITION_LIMITS =
    REQUISITION_CONTRACT_LIMITS =
    REQUISITION_SERVICES =
    REQUISITION_SRV_ACCASS_VALUES =
    RETURN = T_RETURN
    REQUISITION_SERVICES_TEXT =
    EXTENSIONIN =
    REQUISITION_ADDRDELIVERY =
    IF NOT E_NUMBER IS INITIAL .
    WRITE:/ 'REQ NO:' , E_NUMBER , 'CREATED'.
    ELSE.
    LOOP AT T_RETURN.
    WRITE T_RETURN-MESSAGE.
    ENDLOOP.
    ENDIF.
    Reddy

  • HT4623 How can I update my iphone 4 from iOS 5.1.1 to iOS 6.1.4 only.  I am not looking for iOS 7 right now.  Please suggest the update process?

    Hi Team,
    I have iphone4 16GB with iOS 5.1.1.  While using the phone, few times the phone is automatically going to shutdown and getting call disconnected.  Some times, it happens more frequently in a day, sometimes not. 
    and also, How can I update my iphone 4 from iOS 5.1.1 to iOS 6.1.4 only.  I am not looking for iOS 7 right now.  Please suggest the update process?

    You cannot. You can only upgrade to the currently supported version of the iOS which, at this time is iOS 7.0.2.

  • Please share the URL for downloading Weblogic 8.1 with admin server

    Hi,
    Could you please share the URL for downloading the weblogic 8.1 server with admin option for redhat llinux.
    Also could you please me whether we can download the installation guide from some site, I want to do a silent installation of same.
    Regards,
    Balu.

    Hello, you still seem to be pointing people to site(s) that [www.certguard.com] indicates may lead them to lose their certifiaction: viewers please also see also the route you choose ... The Route You Choose
    Edited by: bigdelboy on 01-Jun-2009 08:39 (Please note this refers to a spamming post not to the original post of the thread).

  • Can anybody please suggest the way i can get all the indexes on a cache

    Can anybody please suggest the way i can get all the indexes on a cache?

    Hi,
    If you want to just see what there is at the moment, the StorageManager mbean IndexInfo attribute shows the toString() representation of the extractor of each index.
    If you want to get it programmatically, you can get hold of it by sending an entry-processor to a key, then casting the entry to BinaryEntry, and calling BinaryEntry.getBackingMapContext().getIndexMap() to get the same Map<ValueExtractor,MapIndex> of indexes which the index aware filters get.
    Best regards,
    Rob

  • Composing the URL to call a report to render in the Excel format - SSRS 2012

    Hi,
    I've a report that I need to call by an URL. I've composed this link, using the rs:Format=EXCEL command, but I've an error because the max number of rows is 65.536 for the current version of Excel and the extracted data are more of 150.000 rows. On the report
    server is installed Excel 2013 and so this error it seems strange: the limit of 65.536 rows refers to an older Excel version than Excel 2010.
    My idea is to pass in the URL string a client command, but rc:Format=EXCEL doesn't function.
    Any suggests to me, please?
    Thanks

    Hi pscorca,
    Per my understanding that when you export the large data report to excel by adding the commend "rs:Format=EXCEL"  in the URL, you got some error, right?
    As you mentioned that you are using the new version of excel, so the issue can be caused by the reporting service have some limitation rendering the large data report.
    Please design the report to add page break and parameters which will also avoid some limitation of the excel:
    When you add page breaks in the report. Each page break will defines a new sheet in Excel. Each sheet can handle a maximum of at least 65000 rows. Consider these limits when you set the page breaks in a report.
    For exporting to Excel, do not merge cells in a Tablix data region. In free form reports, align report items vertically. Merged cells and unaligned report items interfere with Excel functionality in the exported report.
    You have mentioned that pass "rs:Format=EXCEL" in the URL string a client command, but doesn't work, please check to make sure you add the commend after the Report URL of the report Server but not report manager.
    Pass a Report Parameter Within a URL
    More Details information for your reference:
    Troubleshooting Reports: Report Performance
    If your problem still exists, I would like you post us the error message you got to help us better analysis about the issue.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • The URL to run a Report stored in the Server-VERY URGENT

    Hi ,
    I wanna to know the url to run the report stored in 9iDS.
    e.g. in earlier version we need to use the CGI scripts to do the work e.g. http://hostname:port/srwcgi60/rwcgi.exe?report=test.rep ..somethin like this ..but in 9iDS i m not able to get the url..when i do http://hostname:port/reports/ the home page of reports come thats it ...but how to run it ...
    please its VERY URGENT..
    thanx a lot..
    Bhavna

    hello bhavana,
    how ru.
    web.show_document('http://servername:port/dev60cgi/rwcgi60.exe?report=reportname&userid=username/password@databasename&server=reportservername&destype=cache&desformat=HTML');
    put the above coding to a when-button-pressed trigger.
    it will work.
    http:\\servername:portname\dev60html\runrep.htm
    this will give u the reports home page.
    in that enter the report name and username and password.
    this also will work.
    looking forward to hear from u.
    bye. take care.
    natesh

  • What is the URL to display the adapter status in xi

    Hello Guru's
        Can any one tell me the URL used to display the adapter status.
    at the same time give the URL's for all the components of the xi.
    and where do i can see the messages( message types and message interfaces ) in my xi installed system.
    Thanks in advance.

    Adapter status: http://<server>:<port>/mdt/amtServlet
    Components:
    Repository: http://<server>:<port>/rep/start/repository.jnlp
    Directory: http://<server>:<port>/dir/start/directory.jnlp
    RWB: http://<server>:<port>/rwb/index.jsp
    You create the message structures in your Repository.

  • Hi, I recently upgraded my xcode to 5.1, my project is running well in ios 7.0,6.0, But in ios 7.1 i'm getting error like"iOS Simulator failed to install the application". Can anybody please suggest the solution for it.

    My project is not running in ios 7.1 simulator i'm getting error like "iOS Simulator failed to install the application". Please suggest a solution for it.

    We aren't Apple, just users like you. Have you tried a reset? Hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • How do I get the URL of a jsp page?

    I have a jsp page which has a link to a servlet page, in the servlet page, I want to get the URL of the jsp page.
    I tried to use request.getHeader("referer"), it seems like if it is a link in the jsp directly lead to the servlet, it works, but if the link calls a javascript function which opens up a window runing the servlet, it is not working. I have to do the second way, so it is not working by doing request.getHeader("referer")
    I tried to use javascript "location.href", I get the whole url by alerting the url in the jsp page:
    http://localhost:8080/pos-webapp/serv/qt_old?currentpage=portal&bcd=ABC123&pnm=P1001830&prnm=1&psd=236863.0&ln=01&sln=NYPPA&stp=2.1&stt=A&_POSID=1F8464122ADAF4EEC9B1A94C286EB252
    then I pass this url when calling with my servlet, in the servlet page, when I do request.getParameter("url"), the url is actually cut off like this:
    http://localhost:8080/pos-webapp/serv/qt_old?currentpage=portal
    anything after &pnm is cut off, anyone has any idea?
    Thanks in advance.

    Thank you.
    but how do I put encoding in the javascript code? do I need to decode in my servlet page?
    here is my code in the jsp page:
    linkset[3]+='<div class="menuitems">Email Diagnostics to AutoOne</div>'<%     
    function emailDiagnostics()
    win = window.open("/pos-webapp/serv/email_diagnostics?url=" + location.href + "&browser=" + navigator.appName, "emailDiagnostics",
    "width=350, height=140, resizable=no, scrollbars=no, toolbar=no, location=yes, directories=no, status=no, menubar=no, copyhistory=no, left=450, top=300");
    win.focus();
    }

  • Is it possible to alter the URL address displayed in my browser?

    Hello Everyone
    I work in Special FX for a TV show largely in computer graphics.  I specialize in Maya, Photoshop, Illustratro and AutoCad.  However I have a little Dreamweaver experience and got roped into a new project.
    Here is the effect I need.
    Someone surfing the web.
    I've built a website, uploaded it and it works great.  The only problem is our legal department won't let the URL display my website.  I have to display one that is not a registered domain.
    Is there any way to display an alternate URL in the address bar?  A fake one, so to speak?
    This website will be displayed on a iPad tablet running safari.
    Thanks in advance.
    -D

    >I have to display one that is not a registered domain.
    >Is there any way to display an alternate URL in
    >the address bar?  A fake one, so to speak?
    No. You can't fool a browser into displaying a url that does not exist in the address bar. It must reference a page on a registered domain - or an ip address -  but not a fake url. You could have a frame hosted at on one domain reference a page from another domain - but the source url is still not hidden. What exactly are you trying to do here?

  • Please suggest the best approach

    Hi ,
    e have a requirement of integrating two webcenter/ADF 11.1.1.6 applications .Thease two applications are running on two different environments.
    Please suggest us the best approach.
    As per the documentation we have the options:
    1) 2nd App consume as porrtlet in 1st APP
    2) Using pagelets
    3) Remote taskflows
    Cons of the above approaches:
    1) If we render as ADF portlet some of the features will not work like popus.
    2) If we use pagelets then we have to call pagelets from Iframes,as per security reasons customer
    ask us to not to go for this option
    3) If we use remote taskflow we can't include in portion of the page as portlet
    So we are in a confusion as which one to use.please suggest us best approach
    Regards
    Babu.

    In addition to Note: 559518.1, please refer to the docs referenced in (Rapid Clone Documentation Resources, Release 11i and 12 [ID 799735.1]).
    Thanks,
    Hussein

  • How do I get the URL of a jsp page which calls a servlet?

    I have a jsp page which will lead to a servlet, I can get the URL of the servlet, but how do I get the URL of the jsp page which lead to the Servlet in the servlet?

    You could try doing:
    request.getHeader("Referer");

Maybe you are looking for