Report in Forms9i

In forms 6/6i I can launch a report in HTML mode working in web mode and I wanted to lauch it in PDF, that PDF file was stored in the server. Can I launch a report in PDF mode in Forms9i to print it from the browser?
Joel Pérez

Hi,
the only caveat with using web.show_document is that you have to expose teh userid in the URL. if you go this approach, make sure that you implement the following solution
For Forms9i/10g:
http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.pdf
http://otn.oracle.com/products/forms/pdf/10g/frmwebshowdoc_rep.zip
Form forms6i:
--> A Forms 6iu version of this paper was written and will be published on http://otn.oracle.com/products/forms --> forms6i papers soon.
Frank

Similar Messages

  • Calling Report in forms9i

    Hi All
    i am calling report in Form9i applet by the following code behind a button in when button press trigger(i have attach abc report in forms report node.
    declare
         x varchar2(20) ;
         r report_object ;
    begin
         r := find_report_object('abc') ;
         x := run_report_object(r, 'abc') ;
    end ;
    and getting message error message
    REP-0503 you did not speicfy the name of a report
    Please tell me what i am missing
    Thanx in Advance
    waiting 4 your reply.

    Zahid,
    actually this message tells you that the Forms runtime is gone, which means it crashed. Can you check in teh Reports Services cache if the report was created. Also, make sure that Reports doesn't require sso while Forms don't. In addition open the reports_server.conf file in the reports/conf directory and remove the <security> .... </security> tag pair with all its content between. This tags are for access controlling Reports and requiring a system authentication to be passed which Forms doesn't if not running in sso mode itself. (This however happens only if you are running in Oracle9iAS, not in Oracle9iDS)
    Frank

  • Opening the report from forms9i

    well i am new to oralce 9i what i need is to attach the reports with form on a button soo when i pressed the button the report opens either with parameters or without it help me ok

    This is a sample for the when-button-pressed trigger.
    declare
      repid  report_object;
      v_rep  varchar2(100);
    begin
      repid := find_report_object('testreport');
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
      SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT, 'PDF');
      SET_REPORT_OBJECT_PROPERTY (repid,REPORT_SERVER, 'repsrv');
      set_report_object_property(repid,report_filename,'myreport');
      set_report_object_property(repid,report_other,'dept_id=10');
      v_rep := RUN_REPORT_OBJECT(repid);
      web.show_document ('http://server/reports/rwservlet/getjobid'|| vc_report_job_id ||'?server='|| 'repsrv','_blank');
    end;

  • How to show the data of one query since Forms9i using to Report built-in on

    Hello!!!, I have Developer 9i (Forms and Reports), the OCJ4 and repserver90 are running, now, I attempt to run one report from Forms9i, and only it appears an empty page HTML. I don't understand why doesn't show the data of query?
    Please, give me a solution for this problem, thanks for your help.
    PD: I am using the below code.......
    PROCEDURE bring_report IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('Q_DATA1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    v_rep := RUN_REPORT_OBJECT(repid);
    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;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://172.16.2.18:8888/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;

    Alex,
    the code does look good. maybe the Reports query does not produce an output. You can trace this ny adding a header on top of teh Reports (e.g. a date or just saying "Hello World"). So instead of an empty page this should now show the text strings. If you don't see the string then there is something else going on. Since you are not getting any error message I assume that the Reports itself executes fine.
    Frank

  • Calling reports through oracle 9i forms

    Please tell me how do i call the reports through forms9i. If was doing the same way by using find_report_object ('report4') and then run_report_object(reportid).But this not working....
    Please help... it is pretty urgent.
    thanks in advance
    savita rao

    declare
    pl_id paramlist;
    emp varchar2(100);
    begin
    go_block('control');
    first_record;
    if :control.empno is not null then
    loop
    emp:=cond||''''||:control.empno||''',';
    exit when :system.last_record='true';
    next_record;
    end loop;
    emp:=substr(cond,1,length(cond)-1);
    end if;
    :control.emp:='"('||cond||')"'; ----formating in “(‘7369’,’7499’)”
    ----calling the report and passing parameters to it---
    pl_id:=get_parameter_list('empno');
    if not id_null(pl_id) then
    destroy_parameter_list('empno');
    end if;
    pl_id:=create_parameter_list('empno');
    add_parameter(pl_id,'year',text_parameter,emp);
    add_parameter(pl_id,'paramform',text_parameter,'no');
    Run_Product(REPORTS, 'c:\emp.rep', SYNCHRONOUS, RUNTIME, FILEYSTEM, pl_id, NULL)
    end;

  • Problem while running the report from a form

    Hi,
    I am able to call a report from forms9i using run_report_object. This report just has a boilertext within it. I did this just to check the functionality of run_report_object built-in. This worked perfectly.
    But when I am trying to call a report based on emp table from the form, it gives me error saying that it cannot run the report.
    Can anyone please help me.
    Thanks
    Narain

    Hi Ino Laurensse ,
    Thanks for the response.
    The error code and message is as follows
    frm-41214 Unable to run report.
    I am able to call from forms9i a report with some boilertext but not a report accessing the database. Thro' out I have never changed the username.
    The following are the changes I made
    In the rwservlet.properties
    I specified the
    reportserver name = repsrv ( I created it and started from the services)
    singlesignon = no
    I am able to run the report which is accessing the emp table from the report builder with the same user as the one which I am using in forms, but, the same I am not able to call from forms.
    thanks
    Narain

  • Problum in calling report

    Hi all i ahve problum in calling report in forms9i and report 9i when button pressed
    the code of when-button-pressed is
    DECLARE
         repid REPORT_OBJECT;
         v_rep VARCHAR2(1000);
         rep_status VARCHAR2(20);
    BEGIN
              repid := FIND_REPORT_OBJECT('REPORT46');
    --     Message('repid:', NO_ACKNOWLEDGE);
              set_report_object_property(repid,report_other,'P_DATE_TWO='||:GIN.second_date
              ||' P_DATE_ONE='||:GIN.first_date||' P_DEPARTMENT='||:GIN.department||' P_FABRICATOR_NAME='||:GIN.fabricator);
              v_rep := RUN_REPORT_OBJECT(repid);
              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;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://zensol-0d8148f7:8888/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    PAUSE;
    END;
    and sql query for the report is this there are four user parameters and all are initialized in when button preesd code
    SELECT s.code,s.name,gin.prod_name,gin.color,gin.sale_order_id,gin.issue_date,gin.item_type,
    sum(gin.total_issue),sum(grn.total_receive) FROM
    (select g.item_type,g.supplier_code,g.supplier_name,gd1.prod_id,gd1.prod_name,
    gd1.color,
    gd1.sale_order_id,g.issue_date,
    (gd1.xs
                   + gd1.s
                   + gd1.m
                   + gd1.l
                   + gd1.xl
                   + gd1.pcs) AS total_issue from gin g,gin_detail1 gd1
    where g.id=gd1.id  and upper(g.item_type) like '%'||:p_department||'%'
    )gin,
    (select g.item_type,g.supplier_code,gd1.prod_id,gd1.prod_name,
    gd1.color,
    gd1.sale_order_id,
    (gd1.xs
                   + gd1.s
                   + gd1.m
                   + gd1.l
                   + gd1.xl
                   + gd1.pcs) AS total_receive from grn g,grn_detail1 gd1
    where g.id=gd1.id  and upper(g.item_type) like '%'||:p_department||'%'
    )grn,supplier s
    where gin.supplier_code = s.code
       AND grn.supplier_code = s.code
          AND gin.sale_order_id = grn.sale_order_id
       AND gin.prod_id = grn.prod_id(+)
    AND s.name like  '%'||:p_fabricator_name||'%'
    AND gin.issue_date between :p_date_one and :p_date_two
    GROUP BY s.code,s.name,gin.prod_name,gin.color,gin.sale_order_id,gin.issue_date,gin.item_type
    Please help
    Thnaks And Regards
    Vikas Singhal                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    hi
    i pass this code and get error 500 internal server error
    WEB.SHOW_DOCUMENT('http://zensol-0d8148f7:8888/reports/rwservlet/getjobid'||
    'server=repserver90','_blank');
    500 Internal Server Error
    java.lang.NumberFormatException: server=repserver90
         at java.lang.Integer.parseInt(Integer.java:414)
         at java.lang.Integer.parseInt(Integer.java:463)
         at oracle.reports.rwclient.CommandManager.handleCmdGetjob(CommandManager.java:1219)
         at oracle.reports.rwclient.CommandManager.handleWebCommand(CommandManager.java:369)
         at oracle.reports.rwclient.RWClient.handleWebCommand(RWClient.java:661)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:1063)
         at oracle.reports.rwclient.RWClient.doGet(RWClient.java:225)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)

  • Report Status

    Hi,
    i am trying to call a report from forms9i.
    the problem is report_object_status returns null.
    here is the code
    declare
    pl_id ParamList;
    locationName varchar2(100);
    loc_code number;
    report_id REPORT_OBJECT;
    report_server_job varchar2(100);
    vjob_id varchar2(100);
    report_status varchar2(100);
    BEGIN
    pl_id := Get_Parameter_List('tmpdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List( pl_id );
    END IF;
    ** Create the 'tmpdata' parameter list afresh.
    pl_id := Create_Parameter_List('tmpdata');
    ADD Location Parameters
    ADD_PARAMETER(PL_ID,'USER_ID', TEXT_PARAMETER,:CONTROL.VUSER);
    Add_Parameter(pl_id,'USERLOCNAME', TEXT_PARAMETER, locationName);
    ADD Report Parameters
    ADD_PARAM(pl_id);
    Run the report synchronously, passing the parameter list
    Report_id := Find_report_object('R003');
    SET_REPORT_OBJECT_PROPERTY(Report_Id,REPORT_DESFORMAT,'PDF');
    set_report_object_property(Report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    set_report_object_property(Report_id,REPORT_SERVER,'test');
    report_server_job := RUN_REPORT_OBJECT(Report_id,pl_id);
    vjob_id := substr(     report_server_job,length('test')+2,length(report_server_job));
    report_status := report_object_status(report_server_job);
    WHILE Report_Status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
              Report_Status := REPORT_OBJECT_STATUS(report_server_job);
         END LOOP;
    if report_status = 'FINISHED' then
         web.show_document('http://mujtaba1:8889/reports/rwservlet/getjobid'||vjob_id||'?server=test');
    else
         set_alert('Report failed with Error Message'||report_status ,'Error!');
    end if;
    END;

    When I was able to get n = 1, 2, 3...
    Currently with this code, I am getting FRM-41213 cannot connect to report server (notice the 2 different error messages 2 & 4).
    The only changes I made were uncommenting the trace for log
    I checked the log file there are no exceptions/errors.
    Here is the code and follwing output
    DECLARE
         repID REPORT_OBJECT;
         v_rep VARCHAR2(100) := '';
         v_repStat VARCHAR2(100) := '';
    BEGIN
         repID := FIND_REPORT_OBJECT('ra_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_SERVER,'rep_server');
    -- (1)
    message('start...');
    v_rep := RUN_REPORT_OBJECT(repID);
    -- (3)
    message('v_rep= ' || v_rep );
    v_repStat := REPORT_OBJECT_STATUS(v_rep);
    -- (4)
    message('v_repStat = ' || v_repStat);
    v_rep := substr( v_rep,length(rep_server)+2,length(v_rep));
    -- (6)
    message('v_rep ' || v_rep);
    -- (7)
    message('end...');
         IF v_repStat='FINISHED' THEN
              message ('successfull...');
              web.show_document ('/reports/rwservlet/getjobid'|| v_rep ||'?server='|| 'rep_a0030417klbb488','_blank');
         ELSE
              message ('Report failed with error message.. show message '||v_repStat);
         END IF;
    END;
    The output is
    (1) start...
    (2) FRM-41213: Unable to connect to the Report server rep_srvname
    (3) v_rep = rep_server_0
    (4) FRM-41213: Unable to connect to the Report server rep.
    (5) v_repStat=
    (6) v_rep=0
    (7) end...
    Report failed with error message.

  • RUN_REPORT _OBJECT

    Hi All,
    I want to know the advantages of using RUN_REPORT_OBJECT over RUN_REPORT, i know that the major diff is run_report is used of client server architecture, whereas run_report_object is used for multi-tier one. apart from that i want to know the other advantages.

    Hi,
    you mean RUN_PRODUCT, not RUN_REPORT, because this is a function in the Reports srw packages. The most compelling argument for using RUN_REPORT_OBJECT over RUN_PRODUCT is that the latter is no longer supported for running Reports since Forms9i. A Whitepaper can be found in the Forms 6i and Forms9i collateral section on otn.oracle.com/products/forms.
    Frank

  • Run Report from Oracle Forms9i

    Hi how are u all.......i am shahzad and i have little problem....i am working on developer 6i with oracle 9i database..........now i upgrade into developer 9i.....now the problem is that when i call the report from form then error is generated that is like'you cannot use reun run_product here use run_report_object'
    Any one plz tell me how to run report from forms 9i also how to pass parameter too...means check the parameter from forms and give me the reports
    guys its urgent
    Thanks in advance :)
    Thanks you

    fot this u have to use standard code as follows
    parameter list is as it was in 6i
    v_report_id := FIND_REPORT_OBJECT('report name');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,file);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'dflt');
    Set_Report_Object_Property(v_report_id,REPORT_OTHER,'ENVID="NFA"');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESNAME,ls_file_path||'\'||to_char(sysdate,'dd')||
         --     to_char(sysdate,'mm')||to_char(sysdate,'yyyy')||'.doc');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_EXECUTION_MODE,RUNTIME);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER, 'paramform=no');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER,reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESNAME,OUTFILE);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER, reportserver);
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_OTHER, 'paramform=no');
    vc_report_job_id:=RUN_REPORT_OBJECT(v_report_id,pl_id);
    v_jobID := substr(vc_report_job_id,length(reportserver)+2,length(vc_report_job_id));
    if      vc_report_job_id is not null then
    vc_rep_status := REPORT_OBJECT_STATUS(vc_report_job_id);
    while vc_rep_status in ('RUNNING', 'OPENING_REPORT','ENQUEUED') LOOP
    vc_rep_status := report_object_status(     vc_report_job_id);
    end loop;          
    IF vc_rep_status<>'FINISHED' THEN
         message ('Report failed with error message '|| vc_rep_status);
              END IF;
         end if;

  • Passing Parameters to RDF Reports with Parameter_list in Forms9i

    Hi,
    I am trying the Oracle 9iDS, and I encounter a problem.
    When passing parameters to my reports, if my parameter contains the space or other special char, I cannot run the report. It give me the REP-56033.
    For example, it's my code:
    add_parameter(pl_id,TEXT_PARAMETER,' and deptno=56');
    Then, when I run the form. It cannot run the reports. In rwservlet/showjobs, I cannot see this job.
    And If I change the code to
    add_parameter(pl_id,TEXT_PARAMETER,'anddeptno=56');
    Of course I cannot get a correct output, but I use the rwservlet/showjobs to get this failed job.
    Any one can give me a hand. Thanks!

    Of course I use run_report_object. I can run my other report successfully.
    Just these report with special char parameter. I can not call them.
    And I can search out there are some questions about this problem in the forum. But they all arenot get the answer.
    Please help me.
    Anyone can try to run your report, or run the test.rdf, which is the demo given by oracle, with a paramters containing a space, such as ' aaa bbb'. You will find that the report cannot run. Even in the showjobs, u cannot find it!!!!
    Please!!!

  • Calling Reports 9i from Forms9i

    How do I call Reports from Forms developer through customized menus using HOST command

    Hi Rohit,
    The link should be http://otn.oracle.com/products/forms/pdf/frm9isrw9i.pdf
    I follow the document and I built a Report called 'PRODUCT_REPORT' using Reports 9i Builder and save it to 'PRODUCT_REPORT.rdf' and 'PRODUCT_REPORT.jsp' and compiled to 'PRODUCT_REPORT.rep'
    I created a Form called 'PRODUCT_REPORT_FORM' using Forms 9i Builder and save it to 'PRODUCT_REPORT_FORM.fmb' and compile to 'PRODUCT_REPORT_FORM.fmx'.
    I define Reports in the Form 'PRODUCT_REPORT_FORM.fmb' that links Filename 'PRODUCT_REPORT.rdf'.
    I add the following PRE-FORM trigger:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    BEGIN
    repid:=find_report_object('PRODUCT_REPORT');
    v_rep := RUN_REPORT_OBJECT(repid);
    END;
    I start OC4J Instance. When I run the form, the following error occurs:
    REP-0503: You did not specify the name of a report
    Click on [OK]
    FRM-40738: Argument 1 to builtin
    REPORT_OBJECT_STATUS cannot be null.
    Click on [OK]
    FRM-10259: Invalid null argument to packaged procedure or function.
    Can any one help me?
    Can any one clarify the following:
    1. RUN_REPORT_OBJECT will run a report defined in a Form with filename of an extension of rdf but NOT jsp NOR rep
    2. How can I run a JSP report from a Form?
    3. Can I use JDeveloper 9.0.3.1 to deploy a JSP Report?

  • Error executing reports from forms

    Hi,
    Iam trying to launch reports9i from forms9i,
    Iam getting following error,
    500 Internal Server Error
    java.lang.StringIndexOutOfBoundsException: String index out of range: 0
         at java.lang.String.charAt(String.java:444)
         at oracle.reports.rwclient.ServletCmdMgr.getJobId(ServletCmdMgr.java:3131)
         at oracle.reports.rwclient.ServletCmdMgr.handleCmdGetjob(ServletCmdMgr.java:1255)
         at oracle.reports.rwclient.CommandManager.handleWebCommand(CommandManager.java:92)
         at oracle.reports.rwclient.ServletCmdMgr.handleWebCommand(ServletCmdMgr.java:278)
         at oracle.reports.rwclient.RWClient.handleWebCommand(RWClient.java:915)
         at oracle.reports.rwclient.RWClient.processRequest(RWClient.java:1398)
         at oracle.reports.rwclient.RWClient.doGet(RWClient.java:349)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(Unknown Source)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:604)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:208)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:125)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    Can anyone help me in this regard,
    Thanks and regards,
    Avinash,
    Pune.
    India.

    "Iam trying to launch reports9i from forms9i"
    your forms version is 10g :-)

  • SSO for Forms9i & Rep9i applications

    Hai all,
    We have developed forms9i & Reports application(around 3 applications .
    We want to use SSO for authentication process and expose this application as portelts in 9iAS portal release2.
    Can any body give the steps to follow.
    How to configure forms9i apps in Portal?
    As partner applications or external application?
    If partner applications which mechanism ia goob.
    Mod_osso or PDK?
    Regards,
    Sreenivas

    Anupam,
    Thanks for response.
    Can users create the resources themselves? if yes what user interface is available for this?
    Do you know how the users can change their password for a particular resource if it changes?
    Harish

  • Migration MS ACCESS FORMS and Reports to Oracle (Java or Forms or Reports)

    Hello ,
    can someone tell me, how i can migrate a whole MS ACCESS 2000 mdb (with forms and Reports) to Oracle.
    I think i have first migrate the Access DB with the OMWB to Oracle and in the next Step to convert the VBA Code to JAVA or Forms9i.
    BUT Is there a tool available for Migrating VBA code like the OMWB ????

    I don't know if this is an obvious question, but do you have MS Access 2k installed on the machine you are trying to run this from? I'm assuming yes.
    If you do and there is still a problem, you should log a ticket for support who will take your mdb and help out with the issue for you.
    Many thanks
    Barry

Maybe you are looking for

  • Cannot hear USB microphone in headphone

    I'm using the Logitech USB microphone which works fine for Skype and quicktime recordings. The problem is that I cannot hear the microphone in my headphones which makes it difficult to monitor the recording. The input volume level is working in Syste

  • Add Buttons to load other forms

    I have an Adobe form created; however, on that form, I want to add buttons to that form. Once I click on a specific button, I want that to pull in another Adobe form that I created. Can Adobe LiveCycle do that?

  • Incoming Calls via CUBE to IVR- intermittent garbled audio

        Connecting via an ITSP and incoming calls are: ITSP--SIP Trunk-- MyCUBE--SIP Trunk--CUCM--IVR(CTI Ports and RPs)                                                                         |                                                            

  • Shared LDAP Address Book (again)

    I've been reading some threads, including in the archives relating to sharing addresses - in particular http://discussions.apple.com/thread.jspa?messageID=661874 There's a walkthrough of setting this up by Aleksandor Nagy, followed by a post by Rober

  • Simulation recording incomplete

    I'm trying to record a software simulation using Adobe Capivate 8 for Windows. Unfortunately, Captivate records only 2 or 3 screens for a 10 or 12 steps procedure. I tried recording transactions in different applications, such as IE, Chrome, MS Power