Calling 10g reports from ADF_BC Application

Dear All;
Good day to you;
I have an ADF_BC application, and at the same time i have 10g reports compiled and placed on forms and reports server,
i want to call reports from my application as needed, i can put a hyperlink with the link to the report, and it is working fine,
but i want to know how to change the link to be dynamic, since the application is deployed on 1 application server, and the rerports on the other
in addition i need, to know how to send parameters
i am unable to change the properties of a hyperlink in the code, and i do not want to change it in scriplet
any idea, or tutorials will be most helpful
thank you
regards
halim

Hello John;
Thank you for your reply;
Yes i am using JSF, i am working on JDEV 10.1.3.30, i deployed my application to srvanweb2 a server we have, where the application server port is 7777,
and i have deployed my reports to srvanweb2 with port being 7778,
Report: http://srvanweb2:7778/reports/rwservlet?cmdkey=user_string&report=hrempr007.rdf&destype=cache&desformat=pdf
Application: http://srvanweb2:7777
my problem is, if i want to embed the link to the report as a common HTML hyperlink it would work, but if i want to set the value for this hyerplink dynamically to be able to add parameters on run time i would have to do it on the scriptlet level, and i can not do it in a bean, since i can not call the hyperlink set value, or even the get value, so my question what should i use to create a link which will change in a bean as you said and be able to call a differnet instance which is srvanweb2:7778, and send parameter
regards
Halim

Similar Messages

  • How to Call Crystal Reports from Swing Application

    Hi All,
    I have a requirement for calling Crystal Report from Swing Application. Please let me know how can I do that, and also provide the Source code for calling the crystal report.
    Thanks in advance.
    Chandra

    hi
    this is the code that i am using in my application which is similar to urs. but i am working with CR XI so make all the neccessary changes.
        import java.awt.*;
        import javax.swing.*;
        import com.crystaldecisions.ReportViewer.*;
        import com.crystaldecisions.reports.sdk.*;
        import com.crystaldecisions.sdk.occa.report.reportsource.*;
       public class HelloSwing
            public static void createAndShowGUI()
                try
                    //Make sure we have nice window decorations.
                    JFrame.setDefaultLookAndFeelDecorated(true);
                    //Create and set up the window.
                    JFrame frame = new JFrame("HelloWorldSwing");
                    frame.setTitle( "Testing Reports");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                   ReportViewerBean viewer = new ReportViewerBean();
                    viewer.init( new String[0], null, null, null);
                  ReportClientDocument rpt = new ReportClientDocument();
                    rpt.open( "report path", 1 );
                    IReportSource rptSource = rpt.getReportSource();
                    viewer.setReportSource( rptSource );
                    frame.getContentPane().add( viewer, BorderLayout.CENTER );
                    frame.setSize( 700, 500 );
                    frame.setVisible(true);
                    viewer.start();
                catch ( Exception exception )
                    System.out.println( exception.toString() );
            public static void main(String[] args)
                javax.swing.SwingUtilities.invokeLater(new Runnable()
                    public void run()
                        createAndShowGUI();
       there are 23 jar files that u need to import into ur package. but remember that ReportViewerBean should be the first jar file in the list & it should be followed by jrcerom.jar
    specify the key in the CRConfig.xml file (which also has to be imported in the package)
    u can find these jar files in the common objects folder in your program files.
    hope it helps. best of luck

  • How to call oracle reports from ADF application.

    Hi
    I am migrating oracle 11g application to ADF. I would like to call oracle reports from ADF application.

    There is nothing similar to forms-reports integration, but you can invoke rwservlet url.
    Here is sample and utility class: Sameh Nassar: Call Oracle Reports From Your ADF Application
    Dario

  • Can we call 10g Report from Form-6i???

    Hi buddies.....Can we call a report developed in 10g reports from a 6i Form using Run_Report_Object???

    Hi,
    you can run the reports in 6i. There won't be any problem. I have checked with the RDF file.
    I don't know whether the REP file which is generated in 10g can be opened in 6i or not.
    Regards,
    Manu.
    If this answer is helpful or correct, please mark it. Thanks.

  • Call 10g report from 4.5 form

    Hi everyone,
    Can anyone please tell me, how can i call a 10g report from a 4.5 form? Which are the implications on both sides?
    thanks in advance,
    MC
    Please, can anyone help me?

    All of these suggestions are limited because of the forms engine and plsql engine within forms. You will have to try them. And none of these configurations are supported by oracle.
    Use the old run_product. You will have to install reports runtime on every client
    RUN_PRODUCT(product, document, commmode, execmode, location,
    list, display);Try to make a call to a package in the database that calls utl_http, which makes a call to your reports server via a url.
    Maybe an OLE or VBX call out to IE?
    All of these are stabs in the dark.
    Try upgrading forms!!!

  • Calling 10g Report from 6i Form

    A 6i client-server form has a call to a 10g report in the form of a URL.
    The HOST command calls Internet Explorer and with the URL appended. This, however, keeps the form locked until IE is closed.
    Is there a way around this or a better way to call a URL from 6i Forms?
    Thank you.

    Found an example. It seems to work fine.
    I believe this is replaced in Forms 10g by web.show_document though.
    win_api_shell.winexec(vcCommand, WIN_API.SW_SHOWNORMAL, FALSE);

  • Call 10g Report From Menu(.mmb)

    Hi All,
    I want to call a Simple 10g paper layout report from Menu.. How can I do this..
    I have searched a lot and didn't find any exact answer
    TIA

    Well m using this simple code to call my paper layout report and I have mentioned it in the report node but it gives me the error
    frm-41213 unable connect report server
    DECLARE
    report_id Report_Object;
    ReportServerJob VARCHAR2(254);
    BEGIN
    report_id := find_report_object('emp');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(report_id, REPORT_DESFORMAT, 'PDF');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'Rep60_zubairit'); /*my report server name*/
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_OTHER,'p_deptno='||:Deptno||' paramform=no');
    ReportServerJob := run_report_object(report_id);
    END;
    didnt get what the actual problem is..do i need to make any changes in reports folder located in developer folder??
    TIA

  • Calling oracle reports from java applications

    Hi:
    I was wondering if anyone can tell me how to invoke an oracle report from a java application.

    yes it is possible. There is a cgi script called viewreport.cgi. Have the jsp page call it (GET or POST method) and place the user parameters inside the form.

  • Calling a report from the application

    Hi,
    I am using Jdeveloper 11g…Using Bi-publisher; I want to call a report which should be opened in a new dialog window. The problem is, I don’t know how to call the report directly using "Output Stream" without having to save it physically.
    Could you please give me a complete solution on this?
    Thank you so much in advance.
    Best Regards,
    Yasaman Parandian
    Edited by: Parandian on Jan 13, 2010 7:35 AM

    Did you try searching the forum (perhaps for "BI Publisher"?) This question has been asked a number of times before.
    John

  • How to call a report from a web application

    Hi,
    I have a web server in wich is installed Reports 6i. My question is how can I call reports 6i to generate a pdf using a .rep file from my web application (built with java)?

    Hi,
    The below link will be very useful for one who need idea on calling Oracle Report from Java Application,
    http://www.oracle.com/technology/products/reports/htdocs/getstart/examples/reportswebservice/index.html
    Thanks & Rgds,
    M T

  • How to call BI report  from web dynpro

    Hi ,
    How to call  BI report from webdynpro application  and what are the prerequisites for that .
    Please provide an example to work with BI application frame UI element
    Thanks

    Hi Rajpal,
    Please go through this..
    calling BI report
    Cheers,
    Kris.

  • Calling a report from a report (10g)

    Hi
    I am using DeveloperSuite 10g and Application Server 9.0.4 - I am trying to call a report from another report.
    I believe I am correct in thinking that as buttons don't exist in reports any more I have to use a hyperlink containing the URL to the reports service with appropriate parameters to invoke the required report.
    My problem is that when I click on the hyperlink I do not see the called report, but get an html screen saying "Oracle Report Status - Successfully run".
    My hyperlink is formed like this:
    /reports/rwservlet?module=reportb.rdf
    Is there an additional parameter I must pass to get the report to display on the client browser window?
    Thanks

    Hi,
    Can someone let me know as to what the maximum length of the URL string that could be formed? I believe in IE browser a maximum of 64,000 characters can only be formed. If I need to pass many parameters and the length of the values passed exceeds the default length in IE, the rest of the values will not be captured in the report server.
    Please let me know on how to proceed with this problem.

  • Call Oracle Reports from  Forms ver 9i or 10g

    Hi,
    Can somebody guide me, how to call Oracle Reports from the Oracle form 9i,
    Run_product is no more available into 9i & 10g, Run_report_object is not working with out put type "Screen" or "preview".
    What is the best way to call the reports from the form ??? pls help...
    Thanks in avdance.
    Jitesh ([email protected])

    You can use RUN_REPORT_OBJECT with CACHE type, and WEB.SHOW_DOCUMENT to view the document on the screen.
    In the Forms help you should find examples.
    If you have access to Metalink, have a look at Note:207396.1.

  • How do I call a 10g report from a jsp page securly?

    How can I call a report from a jsp page securly? We are migrating from 10g forms to J2EE, and we want to keep using our reports. In forms we were able to do this using a cookie. How can I pass a users credentials to reports without the user having to connect to the database? Single Sign-on isn't an option either.
    Thanks,
    Jim

    Hi Jim,
    If you want to pass the user credentials to the report dynamically, then SSO (Single Sign-On) is the only option I can think of.
    If the user credentials can be hard-coded, then the following 2 solutions are possible:
    1. Use cgicmd.dat file, and write the user credentials in the file.
    2. In your report JSP itself, you could write the following:
    <rw:report id="report" parameters="userid=scott/tiger@mydb">
    Navneet.

  • Calling a Report from Form in 10g

    Hi all,
    I am very new to Oracle Form builder, I wana to call a report from a Form.
    we are using Oracle 10g Developer suit.
    Can any body please help me regarding on this?
    Regards
    Tanmaya Pradhan(Tam)

    ..or
    Take a look at
    Re: Run Report10g  Through form 10g

Maybe you are looking for

  • 1st Gen iPod Nano won't work with new Nissan interface.

    I just bought an 09 Nissan Cube that has the factory ipod interface where you can control everything through the steering wheel and radio, well my ipod has been great, yes old, but works great and always has in other cars such as the Scion xB I just

  • 2006 MacBook to my 32" Sharp HDTV

    Hello all! I have just purchased a new Sharp 32" HDTV. I have a MacBook that I bought in April of 2006. So I was wondering if I could hook up my mini DVI to either the HDMI or the Analog RGB for my TV. If so, where would you recommend purchasing the

  • Printing a Dashboard in pdf format with bigger font size ?

    Hi, When we are trying to print a Dashboard with few reports in pdf format, the font size seems to be very small in the print, and it is not readable. Is there a way where in we can make the pdf's print a bit larger? Thanks

  • Installing Java SDK 1.3+03 on Windows XP fails

    System Properties OS : Windows XP Microprocessor: Intel PIII I save the executable for Java SDK 1.3_03 on my hard disk. When I try to execute it, I get the following message: Cannot find file C:\Docume~1\pg\Local Settings\Temp\pft57~tmp\Setup.exe (or

  • QRFC Outbound queue errors

    Hi All, I have some "qRFC Outbound queue errors" in the production system of R/3 and the target system is CRM. The status is "SYSFAIL " . Can anybody tell me how to solve them. Regards, Anindya