Error running comparison report

In a Demo instance for release 12.1.2 I run the extract for Profiles selection set, then on the same instance, changed some of the profile values and re-run the same extract. When I run the comparison report using both extract files I get the following error message:
Entity Name: Profile Options
Ignore Warnings and Continue: No
Update Existing Records: Yes
Time Taken(seconds): 89.0
java.sql.SQLException: ORA-20001: The following PL/SQL exception:
-1422: ORA-01422: exact fetch returns more than requested number of rows
occurred in procedure az_comp_reporter.compare
on this statement:
procedure end
ORA-06512: at "APPS.AZ_COMP_REPORTER", line 755
ORA-06512: at "APPS.AZ_COMP_REPORTER", line 180
Any help how to troubleshoot this?
Thanks

Hi:
Please check for the report preferences for the key attributes marked for comparison. Also, please log a SR for tracking this issue with development.
Thanks,
Lokesh

Similar Messages

  • Error running 9i reports from forms.

    Hi folks,
    i am having problems running 9i reports from a form.
    i have installed Oracle 9iDS on a Win XP machine with 256 MB RAM and a Pentium 1.4Ghz processor.
    i also have a local Oracle 9i database. i have created several reports that i am trying to run from some forms but all efforts to date have failed.
    below is some sample code.
    declare
    v_rid report_object;
    v_rjob varchar2(100);
    v_rptstatus varchar2(100);
    v_jobid varchar2(100);
    BEGIN
    /*get handle to report object itself*/
    v_rid := find_report_object('pbranchlist');
    set_report_object_property(v_rid,REPORT_EXECUTION_MODE,BATCH);
    set_report_object_property(v_rid,REPORT_DESFORMAT,'htmlcss');
    set_report_object_property(v_rid,REPORT_DESTYPE,'CACHE');
    set_report_object_property(v_rid,REPORT_SERVER,'repsrv');
    set_report_object_property(v_rid,REPORT_COMM_MODE,synchronous);
    v_rjob := run_report_object(v_rid);
    v_rptstatus := report_object_status(v_rjob);
    while v_rptstatus in ('RUNNING','OPENING_REPORT','ENQUEUED') loop
         v_rptstatus := report_object_status(v_rjob);
         message(v_rptstatus);
    end loop;
    if v_rptstatus = 'FINISHED' then
         /*display report in browser*/
    --      web.show_document('http://steve:8888/reports/rwservlet/getjobid'||
    --      substr(v_rptsvrjob,instr(v_rptsvrjob,'_',-1)+1)||'?'||'server=repsrv','_blank');
    web.show_document('/reports/rwservlet/getjobid'||substr(v_rjob,instr(v_rjob,'_',-1)+1)||'?'||'server=repsrv','_blank');
    else
         message('error running Report');
    end if;
    end;
    pbranchlist is defined in the form,
    repsrv is a report server i installed and explicitly started.
    on clicking the button to run the above code, i get a message on the browser status bar as follows
    opening http://steve:8888/reports/rwservlet/getjobid11?server=repsrv...
    that's it. it stays like that forever and a progress bar showing the status of the operation gets to the halfway mark and stays there for up to 15 minutes.
    I eventually halted the operation by clicking the stop button of the browser. The form then becomes totally non-responsive with the mouse indicator changing to the hour-glass shape and a small vertical bar moving rapidly back and forth at the bottom of the form window.
    My only recourse then is to explicitly close the browser window.
    I have already configured Reports to run in non single sign-on mode by setting SINGLESIGNON=NO in the rwservlet.properties file.
    Is there anything i have not done properly?
    Thanks in advance.

    Steve,
    can you check the Reports cache directory if the Reports file got created? I would assume yes, but better check.
    Frank

  • Workspace Error Running Financial Reports Post HFM Metadata Change

    We recently updated the metadata in HFM to use the Custom4 dimention. We are now trying to run reports from Workspace and get an error 5200 - error executing query. I have confirmed that the database connection in Workspace is ok. I am able to run the reports from the Financial Reporting Studio. Any ideas what's wrong when running from Workspace?

    That error means that the report is trying to retrieve data from a member that either does not exist or is not valid. I have seen it happen when the user POV chooses [Year] for period.
    I would start by trying to get the report to run from Report Studio where you can control the POV settings. If you still get the error, you will need to go through every data point in the report and verify that each member exists.

  • Error running BW report frm InfoView when pwd initialized/changed in BW

    Hi Experts,
    We encountered error "A database error occured. THe databse error text is: unable to connect to sap bw server name or password is incorrect (repeat logon) (WIS 10901)" when we tried to run a BW report from InfoView. We realize this happens only when the user's password is initialized or has been changed in BW.
    In our landscape, users SSO into InfoView via Windows Authentication. SSO between InfoView to BW is via SNC.
    The error is gone after loggin into InfoView through non-SSO method, then selecting "SAP authentication" method and login
    with new BW credentials. It seems like there' s a cache in BOBJ server containing the user's BW credentials. However, this is not a realistic scenario since users change their passwords frequently and we cannot expect them to login to InfoView with SAP authentication each time there is a password change. The requirement is that they are to SSO into InfoView using Windows Authentication.
    Similar to when password is initialized, it requires user to login to BW to change the password, then login to InfoView using SAP authentication to "sync" up the credentials. This kinda defeats the purpose of SSO isn't it? Anyone has any solution to this?
    THanks,
    ZM

    Hi Ingo,
    Thanks for the prompt reply. From the behaviour of the testing, it seems like BOBJ server has a cache ( correct me if i'm wrong here)  that contains users' BW credentials that is retrieved when user runs BW report in InfoView, as whenever the pwd is changed in BW via SAP GUI, users will always hit the error unless the user logs in the InfoView by selecting "sap" authentication on the logon page, which thus refreshes the cache in BOBJ. If users change their passwords in SAP GUI (BW), this will result in passwords in BW and cache of BOBJ server to be out of sync, and thus error still appears.
    1. Is this the standard behaviour for BOBJ cache to store the BW credentials?
    2. How can we sync up the user credentials?
    Thanks,
    ZM

  • Error running the report from Form

    Hi,
    I am try to run the report from the form by using these code of line
    DECLARE
         RPT_OBJECT      REPORT_OBJECT;
         RPT_RUN          VARCHAR2(100);
    BEGIN
    RPT_OBJECT := FIND_REPORT_OBJECT('REPORT7');
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_COMM_MODE, SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_DESTYPE, CACHE);
    SET_REPORT_OBJECT_PROPERTY(RPT_OBJECT, REPORT_OTHER,'P_CITYCODE'||:CITYCODE||'PARAMFORM = YES');
    RPT_RUN := RUN_REPORT_OBJECT(RPT_OBJECT);
    END;
    but i m not using any Form server and Report Server i m completly using Oracle9iDS
    It gives the error rep-0110 file not found and
    rep-1070 error while opening and saving the file
    please give me the solution
    Shehzad

    Shehzad,
    this means that Reports Server cannot access the Reports module. You can test this assumption by copying your Reports module into <Oracle Home>\reports\samples\demo. The demo directory is out of the box accessible fro Reports.
    If this allows you to run the Report, then all you need to do is to specify the Reports_Path to include the reports modules.
    btw.: An other reason can be that your Reports contains uncompiled PLSQL, so you may want to check this too.
    Frank

  • Error running XL Reporter: 'a required COM add-in program..' for Excel 2007

    I have 2 users running Excel 2007 that can't run XL reporter.  They get the message 'a required COM add-in program for XL Reporter has not been loaded'.  I have instructions for Excel 2003, but not for 2007.  Does anyone know how to resolve this for Excel 2007?

    Gordon,
    I have instructions to get the IXXLReporter.dll file in the installation area, but 2007 has completely different layout. I can't find where to go???  Can you please give me the procedure?
    Edited by: Pat Frohlich on Apr 1, 2009 10:12 AM

  • I am getting error running xml report using bursting

    Hi,
    +---------------------------------------------------------------------------+
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 23-AUG-2012 04:18:27
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    --Exception
    For input string: ""
    java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:510)
    at java.lang.Integer.parseInt(Integer.java:539)
    at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:142)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    +---------------------------------------------------------------------------+
    FND_FILE ä¸æ—¥å¿—消æ&#129;¯å¼€å§‹
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    FND_FILE ä¸æ—¥å¿—消æ&#129;¯ç»“æ&#157;Ÿ
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    æ£åœ¨æ‰§è¡Œè¯·æ±‚完æˆ&#144;选项...
    Output file size:
    0
    已完æˆ&#144;执行请求完æˆ&#144;选项。
    +---------------------------------------------------------------------------+
    已完æˆ&#144;并å&#143;‘请求
    当å‰&#141;的系统时间为 23-08-2012 04:18:36
    +---------------------------------------------------------------------------+
    pls help me how to overcome this issue give me reponse asap
    thanks.

    To answer my own question, referring to document 1J6MCMIN the error was due to the requirement for an even number of points. It would be nice if this were documented. This doesn't explain the problem where the computer locks up with a small number of points.

  • Error running a report with the rwclient utility

    I am running the following command:
    rwclient.sh server=rep_vese3valso9 report=/oracle9ias/appl/rec/bin/rep/CAJR30020.rdf userid=uspan/uspan@gio NU_SEC=727586 paramform=no destype=file batch=yes desformat=wide220 desname=/oracle9ias/appl/rec/lisrep/CAJR30020_727586.lis
    and I am getting the following error:
    REP-0177: Error while running in remote server
    Invalid value for parameter 'DESNAME'.
    A friend told me that I have to modify some files of the report server in order to allow this type ( desformat=wide220 ) in the sentence.
    Do you know what are those files or how to solve this problem ?
    Have you had any problem like that ?
    Thanks
    Joel Pérez

    What's desformat=wide220? Never, ever seen that before!
    As you use destyp=file, I believe you should change desformat to desformat=delimiteddata and add a delimiter, for instance delimiter=tab
    rwclient.sh server=rep_vese3valso9 report=/oracle9ias/appl/rec/bin/rep/CAJR30020.rdf userid=uspan/uspan@gio NU_SEC=727586 paramform=no destype=file batch=yes desformat=delimiteddata delimiter=tab desname=/oracle9ias/appl/rec/lisrep/CAJR30020_727586.lisYou should also define REPORTS_PATH, so that you could skip the path in reports, i.e. report=CAJR30020.rdf instead of report=/oracle9ias/appl/rec/bin/rep/CAJR30020.rdf
    Also, you might have gotten faster (and better) respons if you had posted this in the Reports forum, instead of here in the Application Server forum.
    Regards,
    Martin

  • Error running new report in Siebel

    Hi All,
    I get this error when trying to run a new report in Siebel (on local web client):
    We detected an Error which may have occurred for one or more of the following reasons:
    BI Publisher engine failed to generate report.(SBL-RPT-50524)
    I have registered the new template, added the new IO and associated the report with a view.
    I get the error after clicking 'Submit'.
    I'm able to run already existing reports in Siebel.
    Any idea?
    regards,
    Hakan

    Update....
    This is from the logfile:
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Entering CSSXMLPAdapterSvc::CallJava...
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Getting the XMLP Class Path and loading the JAR files
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     User name : HBONDESSON
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Report Template File Path is D:\Siebel\8.1\Client_2\temp\xmlp\BIP Activity Comments Report.rtf
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     XSL File Path is D:\Siebel\8.1\Client_2\xmlp\templates\BIP Activity Comments Report.xsl
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     XML data File Path is D:\Siebel\8.1\Client_2\xmlp\data\BIP Activity Comments Report_73Z-1RX.xml
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Xliff File Path is D:\Siebel\8.1\Client_2\xmlp\xliff\enu\BIP Activity Comments Report.xlf
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Report Output Type is PDF
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Report Output File Path is D:\Siebel\8.1\Client_2\xmlp\reports\HB Activity Comments Report_73Z-1RX.PDF
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Language Code is enu
    XMLPReportLog     XMLPReportInfo     3     000000024afd1678:0     2009-11-13 11:49:31     Report Output File path is D:\Siebel\8.1\Client_2\xmlp\reports\HB Activity Comments Report_73Z-1RX.PDF
    XMLPReportLog     XMLPReportError     1     000000024afd1678:0     2009-11-13 11:49:31     Error in generating xsl file D:\Siebel\8.1\Client_2\xmlp\templates\BIP Activity Comments Report.xsl in the XMLP Engine
    ObjMgrBusServiceLog     Error     1     000000024afd1678:0     2009-11-13 11:49:31     (xmlpadaptersvc.cpp (518)) SBL-RPT-50524: BI Publisher engine failed to generate report.
    ObjMgrBusServiceLog     Error     1     000000024afd1678:0     2009-11-13 11:49:31     (xmlpdriversvc.cpp (362)) SBL-RPT-50524: BI Publisher engine failed to generate report.
    The only file i have in my filesystem of the above is the Report Template File in D:\Siebel\8.1\Client_2\temp\xmlp\
    All other files does not exist in my filesystem. What am I missing in my setup?
    Regards,
    Hakan

  • Error running ALV report

    Hello,
    I am tring to run my first ALV report and I am getting a dump when I run it. it is dumping at
    <b>      Program                                      SAPLSLVC          
           Include                                      LSLVCF36          
           Row                                          3,221             
           Module type                                  (FORM)            
           Module Name                                  FILL_DATA_TABLE            
         macro_cell_data_get     
           <ls_fcat>             
           <ls_data>             
           <l_field_value>       
           ls_lvc_data-value.    </b>         
    I searched the forum for the "macro_cell_data_get" and I found 1 response that gave a response of
    <i>field symbol errors in ALV are usually down to fieldcat columns incorrectly defined. Check your internal table fields of the table you pass to the alv FM against the columns defined in the fieldcat</i>
    I am not sure what I should be checking. I am looked at the structure that I have created for the ALV and the internal tables and I am not sure what to look for.
    any help would be greatly appreciated.

    I hope this is what you are looking for.
    FORM create_fieldcatalog USING   value(p1_repid) TYPE sy-repid           
                            CHANGING p_it_fieldcat TYPE slis_t_fieldcat_alv. 
    Local data declarations                                                
      DATA:  wa_fieldcat TYPE slis_fieldcat_alv.                                                                               
    CONSTANTS: c_l TYPE c VALUE 'L'.                                                                               
    Call the FM to build the required field catalog.                       
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'                           
        EXPORTING                                                            
          i_program_name         = p1_repid                                  
          i_internal_tabname     = 'IT_OUTDATA'                              
          i_structure_name       = 'zfi_ap_unpln_dlvry_csts_STRUCT'          
        CHANGING                                                             
          ct_fieldcat            = p_it_fieldcat[]                           
        EXCEPTIONS                                                           
          inconsistent_interface = 1                                         
          program_error          = 2                                         
          OTHERS                 = 3.                                        
      IF sy-subrc = 0.                                                                               
    LOOP AT p_it_fieldcat INTO wa_fieldcat.                                                                               
    wa_fieldcat-ddictxt = c_l.                                                                               
    Update the fieldcatalog parameters                                     
          CASE wa_fieldcat-fieldname.                                        
            WHEN 'BUKRS'.                                                    
              wa_fieldcat-key = c_check.                                     
            WHEN OTHERS.                                                                               
    ENDCASE.                                                           
          MODIFY p_it_fieldcat FROM wa_fieldcat INDEX sy-tabix.              
        ENDLOOP.                                                             
      ENDIF.                                                                 
    ENDFORM. " FORM CREATE_FIELDCATALOG                                                                               
    $$----
    $$ Form display_report                                                 
    $$----
    FORM display_alv  CHANGING p_it_outdata  TYPE ty_t_outdata               
                               p_it_fieldcat TYPE slis_t_fieldcat_alv        
                               p_it_alv_sort TYPE ty_t_sort_alv              
                               p1_layout   TYPE slis_layout_alv              
                               value(p1_repid)    TYPE sy-repid              
                               value(p1_var)      TYPE disvariant.                                                                               
    Call the FM to generate the ALV in grid format.                        
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'                                 
        EXPORTING                                                            
          i_callback_program      = p1_repid                                 
          i_callback_user_command = 'USER_COMMAND'                           
          i_callback_top_of_page  = 'TOP_OF_PAGE'                            
          is_layout               = p1_layout                                
          i_structure_name        = 'ZFI_AP_UNPLN_DLVRY_CSTS_STRUCT'         
          it_fieldcat             = p_it_fieldcat                            
         it_sort                 = p_it_alv_sort                           
          i_save                  = 'A'                                      
          is_variant              = p1_var                                   
        TABLES                                                               
          t_outtab                = p_it_outdata                             
        EXCEPTIONS                                                           
          program_error           = 1                                        
          OTHERS                  = 2.                                       
      IF sy-subrc <> 0.                                                      
        FREE: p_it_outdata.                                                  
      ENDIF.                                                                               
    ENDFORM.                    "display_alv                                                                               
    also I checked all of the entries and they seemed to match. I am using the field BELNR which looks like it is a combination of two fields. I am not sure if this is causing my problem or not

  • Error when running a report writer

    Hi,
    I am getting an error ("Internal error: More than 999 GREP blocks were requested") when running a report writer.
    The error diagnosis is:
    Internal error: More than 999 GREP blocks were requested                                                                               
    Message no. GR 215                                                                               
    Diagnosis                                                                               
    An internal error occurred in the Report Writer.                                                                               
    When running the program, you selected the option to store your results
         permanently.  However, when the selected data was stored in blocks in  
         the GREP file, the maximum number of blocks was exceeded.                                                                               
    System Response                                                                               
    The selection program was terminated.                                                                               
    Procedure                                                                               
    Inform your system administrator.                                                                               
    You may have to increase the block size for the GREP blocks.    
    Anybody knows how to increase the size of GREP blocks?
    Thanks in advance.
    Regards,
    Arun Mohan

    Hello,
    The reason for the error GR215 is that too many data blocks are being
    processed.
    The explanation is one of the following:
    - You have variation activated in the report
    - A large group of objects is being processed and the report output
       fails due to the large data size
    - the selected data is reaching the technical restriction
    Check the SAP note 64537. This note advises you to set the BLOCK SIZE parameter
    in the coding to 500000. However, the maximum value possible is 999999. You may -
    if you already implemented the coding change of SAP note 64537 - raise the parameter
    once more to 999999.
    If the error then still remains the selected/processed data is definitely too much.
    Then check the report definition in comparison to SAP notes 317574 and 387414.
    Regards,
    David

  • Error while running a report

    Hi all,
    I am getting this particular error while running a report. The error is:
    <b>SQL Error: 604
    System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-
    Diagnosis
    This internal error is a targeted termination since the program has an
    incorrect status.
    Procedure
    Analyse the situation and inform SAP.
      Notification Number BRAIN 299 </b>
    Could anyone tell me what that means?
    Thanks In advance,
    Raj

    Hi Raj,
    There are a few OSS Notes for your issue.
    If your Query has hierarchy in it then check 734184
    If your query is based on Infoset then check Note 784502 and 701941.
    Also check 668921.
    Bye
    Dinesh

  • SQL Error while running a report

    Hi Experts,
    I am getting an error like below while running a report for particular sales Organization and Company code combination
    *SQL Error: 83-*
    *SQL0083C A memory allocation error has occured*
    *Errors occured during parellel processing of query 30,RC:3*
    *error while reading data: navigation is possible*
    we are getting this error for the combination of Sales Org & Comp.code.
    if run simply for Sales Org. no error.
    Thanks
    Regards,
    <M@Hi>

    Hi Raj,
    There are a few OSS Notes for your issue.
    If your Query has hierarchy in it then check 734184
    If your query is based on Infoset then check Note 784502 and 701941.
    Also check 668921.
    Bye
    Dinesh

  • Error while running the Report

    Hi ,
    I am trying to run the Report in Bex Analyzer. and once I enter the value for the variable, it gives me message that "Element is not correctly define (please check query)" and when i click on the error it gives me detail message as below :
    <b><b>Diagnosis
    Additional elements that do not have the same dimension, such as quantities and amounts or amounts and ratios, are added to element Sales Qty Gallons .
    Procedure
    Check your definition.
    If you still want to use this addition, you can suppress the dimensionality of one or both subexpressions by using the 'NODIM' operator. The system then interprets this or these subexpressions as nondimensional numbers.
    In the executed query, you can use the Key Figure Definition function to analyze element Sales Qty Gallons .</b></b>
    Now the thing is I am already using "NODIM" operator to add those elements. and I m not sure why this error is coming up now because I have created this query a while ago and it wasnt giving me any error at that time but now I have make some changes into it and it;s giving me this error while running the Report. But the thing is I didnt change anything in the element for which it;s showing me error.
    Thanks,
    Naitik

    Naitik,
    There are two or more key figures in your report. They are defined by different dimensions and somewhere you have a formula with both these key figure.
    Edit your query and select the Check Query icon. It will tell you which calculation you have the problem with. Edit this calculation to see which key figures are present.
    If the formula is logically correct, best thing to do is to put a NODIM( ) on your key figures that make up the formula, and then change you formula to look at the NODIM( ) version.
    That will fix things for you,
    Regards
    Gill

  • Error while running a report JSP in a war file from 9iAS server

    Hi,
    I've a web application archive file (war) which i m deploying to the web using OEM. The war file consists of many JSPs. Among those JSPs i have one Report JSP, which i m calling from another JSP which is like a parameter form for the report JSP. When i call the report JSP, it gave me the following error,
    javax.servlet.jsp.JspException: com.sun.corba.se.internal.iiop.ORB
    javax.servlet.jsp.JspException: com.sun.corba.se.internal.iiop.ORB
    at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:334)
    at FMCardExp.jspService(_FMCardExp.java:58)
    at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    The report tag in the report JSP is as follows,
    <rw:report id="report" parameters="server=repsvr&userid=scott/tiger@db">
    The report server is up and running and so is the database. This report JSP was generated from the reports builder and the opened in JDeveloper environment,in the war file project. It was then compiled and a war file was created. Surprisingly this report JSP works fine when i run my webapplication from the embedded OC4J instance for JDeveloper, but when i try to run it from the 9iAS server i get the above mentioned error. The deployment of the war file to the server is successful and the other JSPs work fine, only the reports JSP is not working. Do i need to have some settings for running the reports JSP, please advise.
    Thanks in advance
    Unmesh

    Can you please help me in deploying jdeveloper (9.0.3.1)war file to 9iAS release 1, when I try to run, none of the jsp's execute, I get java OutOf Memory error, I also think that there may be some version compatibility between jdev jdk and 9iAS jdk.
    Thanks,
    Kavitha

Maybe you are looking for

  • How to install Windows Server 2008 (dualboot) on a PC with Windows 8.1 already on it?

    Hi, I bought a new PC with preinstalled Windows 8. Now I need to install Windows Server 2008. Anyone can advise me how to do it? It has to be in dual boot, in Virtual Machine the display is way too small

  • Split Source Mapping Generation Task

    Hi I created a Dynamic Web Project in IBM Rational Application Developer Version 8. I am using BEA Weblogic 10.0.2 as the Application Server. When creating Dynamic web project, I added project to an EAR and named it testEAR. The project compiles with

  • FCP to ProTools LE

    I am trying to export a Quicktime movie from FinalCut Pro v6.0.5 that contains 16-tracks of audio; I have set up the Sequence Settings in FCP to output to 16 different channels, but get errors code when doing so: "The current audio device does not su

  • Unavailable Master Images are present

    Trying to relocate masters to an external drive using Aperture 2.1. Project with many albums which I am relocating to folders with the same name as the album on an external drive. Most of the albums I was able to relocate. There are 4 where I get the

  • How do save SHSH blobs and how do you retrieve them?

    I have installed IOS 6 and find that it is draining my battery twice as fast as IOS 5.1.1. I do not like the way it changed the search for APPS in store when you get over 100 replies it takes too long to go through them. The settings area has changed