Call Report Builder from Jdeveloper 10g with parameters

hello , how are you
i am in oracle forms for long , today i am work in jdeveloper 10g, i want some questions
1- how call oracle report builder from oracle jdeveloper 10g with parameters
2- if there aren't call from jdeveloper 10g, what is good report tools?
thanks.

I'm assuming that what you want to do is actually run a report from a JDeveloper application.
To do this you can use the various ways that Reports offer to invoke reports with the report server - including URL & Web Service interfaces.
More information on these in the Oracle Reports - Publishing reports manual.

Similar Messages

  • Running report from forms 10g with parameters

    db and dev 10g ,
    hi all , my report displays "sal and ename" columns of scott/tiger schema .
    i've seen a lot of articles talking about this but i want you to help me to get it :
    1- i want to run report by assigning a value to the "report other" property of the report object .
    i've tried it like so , i wrote sal = 800 or ename = 'SCOTT' in that property "report other" . and it did not work .
    2- and i want to how to do the same with "set_report_object('myrep',report_other,..........) ;
    3- i did it before with a parameter list by creating a parameter in the report builder called "p_sal" and p_ename then
    created a parameter list with :sal and :ename text_items as parameters then added the parameter list to
    run_report_object('myreport',pl) and it did not work too .
    please clarify these to me
    thanks a lot

    newbi_egy wrote:
    SET_REPORT_OBJECT_PROPERTY(ro,REPORT_OTHER, 'p_deptno='||:dept.deptno||'paramform=no');
         v := run_report_object(ro) ;
         web.show_document('http://rocky:8889/reports/rwservlet/getjobid'||substr(v,instr(v,'_')+1)||'?server=rocky','_blank') ;
         end ;
    when i press the button , FRM-41214 shows up in the form , and REP-52251 ,and i still can not run it .
    do i miss something ?
    by the way , when i typed this in the address bar :
    http://rocky:8889/reports/rwservlet/showjobs?server=rocky , then clicked "x" button , then
    i got this
    <br>REP-300: invalid number where deptno = : ==> p_deptno finished with error
    thanks
    Hi,
    You can not check the second link i provided where parameter passing issue is clearly mentioned. you should give space before all parameter.
    Check the second link, it will help you. And for your correction
    SET_REPORT_OBJECT_PROPERTY(ro,REPORT_OTHER, 'paramform=no p_deptno='||:dept.deptno);Hope you understand...
    Hamid

  • Calling Report Builder From Server(aspx page ) With encrypted username and password

    Hi , 
    Our application needs to have a link to Report Builder which will open a report builder for that current report and user can modify it accordingly.
    Currently our approach is to use a client side(JavaScript) url link which is in form as follows
    http://username:password@domain/ReportServer_SQLDEVELOPER/ReportBuilder/ReportBuilder_3_0_0_0.application?/ReportName
    But we do not want to show username and password in clear text , SO we have tried to pass it through ajax call and call the url from server or pass username and password in Authorization headers . Unfortunately , this does not serve our purpose and we are
    getting Unauthorized in firebug Console .We are using REST Services .Below is screenshot:
    This is a kind of blocker issue for us , So any timely help would be highly appreciated.In case of any queries you can contact me at [email protected]
    Thanks & Regards
    Mohit Methi
    NGC

    Put the domain in the Intranet Zone instead, and try again. They should not be prompted for auth as long as they log in with cached Domain Creds.
    Is the SharePoint site configured to allow NTLM?
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Calling Crystal Reports XI from Forms 10g

    Any one succeed in calling Crystal Reports XI from Forms 10g,
    or using Import Java Class in Forms 10g
    to call Crystal Reports XI
    or any other method to invoke crystal Reports XI from FORMS
    share your Knowledge to OTN
    please provide me the steps,documents to [email protected]
    Message was edited by:
    user501763

    Hi,
    Use web.show_document for calling the reports. Check out forms online help for syntax and example of web.show_document.
    -Arun

  • [Reports]   The best reporting tool for JDeveloper 10g

    Hi,
    Which is the best reporting tool for JDeveloper 10g: JasperReports, Crystal Reports or something else? I want to build parametric and rather complex reports but I don't know which tool offers more features, flexibility, ease of use , ... . I've built some simple parametric reports using JasperReports and JDeveloper 10g but I think it's not so productive and may need something more, maybe iReport. Does anyone have any ideas?
    S/\EE|)

    Hi Saeed,
    I'lm using Jasper too, and here is an example of how i pass to it some variables:
         <parameter name="theWantedId" isForPrompting="false" class="java.lang.Integer"/>
         <queryString><![CDATA[SELECT field1, field2 from table1 WHERE table1.field1 = $P!{theWantedId}]]></queryString>And in a bean (or other java code from which the template is called)
            Map parameters= new HashMap();
            parameters.put("theWantedId", findSelectedId()); // return the ID of the object to print
            JasperDesign design =
                JRXmlLoader.load(myTemplate); // First load template from the Blob table in an inputstream
            JasperReport report =
                JasperCompileManager.compileReport(design);
            InitialContext initialContext = new InitialContext();
            DataSource ds = (DataSource)initialContext.lookup("java:comp/env/jdbc/MYDATASOURCEConnectionDS");
            Connection conn = ds.getConnection();
            JasperPrint print =
                JasperFillManager.fillReport(report, parameters, conn);Hope that can help, if you need more information please ask,
    Best regards,
    Tif

  • Unable to run Oracle Form Builder from Designer 10g

    I am using Windows XP with Oracle Designer 9.0.4.5. From Design Editor, I select Run -> Oracle Forms, nothing happen. I am able to open Form Builder manually (C:\ORACLE\904\bin\ifbld90.exe). After I generated a module (form) from Designer, I have to open the FMB manually from Form Builder. In Designer 9i, I am able to open Form Builder from Designer. Is this a bug for Designer 10g?
    Thanks,
    Jim

    Thanks for the response, Suresh,
    I believe this is an installation/configuration issue.
    I installed Oracle Developer Suite 9.0.4, which includes Form Builder, Report Builder, and Designer. System Path contains the ORACLE_HOME (c:\oracle\904\bin). I am able to start Form Builder from DOS command (ifbld90.exe). I am also able to start Report Builder (rwbuilder.exe) and Designer (des2k61.exe) from DOS. I am able to Run Oracle Report Builder from Designer, but just not Form Builder. I also checked the Windows registry settings and they seem alright to me.
    thanks,
    Jim

  • Calling Ant script from Jdeveloper

    Hello Gurus,
    I am trying to call Ant script from Jdeveloper.
    I am able to call it when i don't use any javac in ant script.
    But as soon as i include a javac command
       <javac srcdir="${src}" destdir="${build}"/>
    I get below error
    C:\ant\windows\svn\AntJava\Project1\build.xml:20: Unable to find a javac compiler;
    com.sun.tools.javac.Main is not on the classpath.
    Perhaps JAVA_HOME does not point to the JDK.
    It is currently set to "C:\Oracle\jdk160_24\jre"
    Needless to say i already have implemented all the steps mentioned in the internet.
    I have my JAVA_HOME correctly set in my PATH environment variable.
    I have tools.jar in the CLASSPATH
    Please give a solution from JDeveloper perspective and not a generic one as i am done with all the steps provided in internet.

    any one?????

  • How to develop and Run .jsp page from Jdeveloper 10g

    Dear All,
    I need to develop one small JSP page using Jdeveloper10g. pls share information How to develop and Run .jsp page from Jdeveloper 10g.
    Thanks in Advance,
    Hanimi.

    Hi Gyan,
    Any Idea how to get DB connection for JSP Pages.
    Our Java guys developed one JSP page for Login page.
    After Log in instead of standard responsibilites page we calling custom jsp page, For getting DB connection they defined one properties file and hard coded DB details on that file and calling, but client is not accepting hard coding.
    Pls give any idea for getting DB connection directly in JSP pages.
    Hanimi.

  • How to call Reports in oracle forms 10g

    Dear All,
    How to call Reports in oracle forms 10g.
    I am using Oracle Forms 10g Reports 10g and Database 10 and and Operating system Windows XP.
    Please give me the Solution.
    Thanks and Regards,
    Faziludeen

    Hi Omkar,
    Please check the following code.
    DECLARE
      repid REPORT_OBJECT;
      v_rep VARCHAR2(100);
      rep_status VARCHAR2(20);
      plid ParamList;
    BEGIN
      plid := Get_parameter_List('tmp');
      IF NOT Id_Null(plid) THEN
      Destroy_parameter_List( plid );
      END IF;
      plid := Create_parameter_List('tmp');
      add_parameter(plid,'p_parameter',text_parameter,to_char(:POLICY.POLICY_NO));
      Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
      repid := FIND_REPORT_OBJECT('POL_REP');
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
      v_rep := RUN_REPORT_OBJECT(repid,plid);
      rep_status := REPORT_OBJECT_STATUS(v_rep);
      WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
      LOOP
      rep_status := report_object_status(v_rep);
      END LOOP;
      WEB.SHOW_DOCUMENT('http://'||'LENOVO-428E9E41'||'8889'||'/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?
      '||'server=prod_report_server&P_parameter='||:POLICY.POLICY_NO||
      '&paramform=no');
    END;
    I am used to Start the Report sever   'Rwserver Server=prod_Report_Server Start'
    OracleAS Report Services
    Version :-   10.1.2.0.2
    Name    :-   prod_report_server
    Status  :-   Server is Shutting down
    Jobs in Queue  0
    Active Engines  0
    I got the Following Error when I trying to run the Report
    FRM-41211: Integration error:SSL failure running another product
    Thanks and Regards,
    Faziludeen

  • Can't make a connection from JDeveloper 10g (9.0.5.0) to WebLogic 8.1

    I can't make a connection from JDeveloper 10g (9.0.5.0.0) to WebLogic 8.1
    When I click "Test connection" JDeveloper 10g writes the following:
    Cannot instantiate class: weblogic.jndi.WLInitialContextFactory
    Have somebody ever established a connection from JDeveloper 10g (9.0.5.0) to WebLogic 8.1? How to do this?

    It connects successfully now. Thank you for the information.
    But it does nothing when I try to deploy my J2EE application.
    I right-click on Resources -> application.deploy, choose "Deploy to" -> my connection. It starts to do something obscure.
    Then I go to the WebLogic console and it shows that there is no my application.

  • Problem  jdeveloper 10g with jboss4

    how can I debug project in jdeveloper 10g with jboss4.
    do enyone have some documentation, or some advise to help me.

    In JBoss run batch file specify
    set JAVA_OPTS= -Xdebug-Xnoagent-Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n
    Also refer to Remote debugging with WebLogic, which is similar to JBoss.
    http://dev2dev.bea.com/pub/a/2006/01/wls-jdeveloper.html?page=5

  • JDeveloper 10g with OA Extension

    I am currently working on Jdeveloper version 9.0.4.x and oracle release is 11. Can I use JDeveloper 10g with OA Extension on oracle release 11. ..
    I saw on oracle site .it's mentioned that JDeveloper 10g with OA Extension is only applicable for oracle Release 12 ..
    Can you please help me on my query ?
    Thanks
    Anand

    Anand,
    Jdev 10g with OA is only for R12 releases. You can't use them for 11i related works. The basic reason is that each jdev with OA ext patch is according to a particular framework patch and hence their framework libraries have to be in sync.
    Check the metalink Note 416708.1 - How to find the correct version of JDeveloper to use with eBusiness Suite 11i or Release 12. This will give you the exact jdev patch to use according to your instance patching level.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Jdeveloper 10g with Adf training

    Dear all,
    I need to know anybody is interested to provide me
    jdeveloper 10g with Adf training in chennai during feb 2006.
    Dont suggest oracle corpration it is too costly for me.
    please send me the list of computer education institutes/indiviguals in chenai
    thanks and regards
    selva

    Dear all,
    I need to know anybody is interested to provide me
    jdeveloper 10g with Adf training in chennai during feb 2006.
    Dont suggest oracle corpration it is too costly for me.
    please send me the list of computer education institutes/indiviguals in chenai
    thanks and regards
    selva

  • Jdeveloper 10g with oracle 10g database

    i am evaluating jdeveloper 10g with the oracle database 10g. i am trying to invoke the oracle databse results in the applet. the applet code has been compiled successfully.but when i am trying to execute the applet the error found is 'no suitable driver'.
    how do i can resolve this problem.

    This is not a sales forum. As I already said you should contact an Oracle sales person which can answer your question. There are possible migration paths which will save you some money (against buying all new licences).
    I don't say that you have to upgrade to 12c. You can develop applications using the older technology using jdev 10g together with OAS 10g and Oracle DB 10g.
    If you want to use newer technology (jsf2.0...) you have to update as these are not available in 10g. The question if you need to update to 11g or 12c (jdev) you have to answer yourself and may ask the salesperson too. 12c is the latest technology and the question is if you need the latest. 11g if the jdev version which is used internally by Oracle and is on the marked quite some time.
    Timo

  • Call a WS from a JSP with SSO

    Hello friends,
    I was wondering if anyone could help me with the following issue:
    I need to call a WS from a JSP with SSO.
    Does anyone have something like source code or turorial ?
    PS: The WS I need to call is already consumed from Java WD using Logical Destination.
    Any help will be welcome.
    Thanx,
    Best Regards,
    Ramatí

    I'm trying to call a bpel process and I get an error in the responseThere is BPEL. That might be a better place to ask this question. If you do go there be sure to tell them what error message/number you get.
    Cheers, APC
    Blog : http://radiofreetooting.blogspot.com/

Maybe you are looking for

  • Problems found during the EXPORT to specified keyin table.

    Hi I am getting this error in sending iDOC system( We have iDOC-XI-iDOC Scenario.) I tried to reregister the queues but still nothing is passing thru XI. Thanks, Manish

  • In PP Interface related issues the role of functional consultant

    In PP Interface related issues what is the role of functional consultant .  what is the approach steps to analyse and resolve the issues  in XI, interface, idoc, etc.,

  • Document Size, Trim Size, Image Size

    I have InDesign CS6 and I cannot figure out how to change the document size, trim size, and image size on a documnet I have been working on. (It is a 52 page document if that makes a difference). Thank you!!

  • BetterHTML Export and iPhoto 6

    Looks like BetterHTML Export is under new ownership and no updates on their website regarding updates for iPhoto 6. Does anyone know any workarounds to get this to work? Thanks, Rebecca

  • RequestDispatcher forwarding to a blank page

    RequestDispatcher is forwarding to a blank page The code is like this but I a always getting a blank page.This is all written in a JSP page but still I can not access the imlicit objects like request and response I need to declare them explicitly.I d