HTTP 500 error while opening pdf report in Workspace

Hi all,
i have a HFM - FDM - Financial Reporting 11.1.1.3 installation at a custommer that is working fine.
Except for the fact that when i open a report (doesn't matter if it's from the studio or workspace) in pdf it gives an HTTP 500 internal server error.
I can open the report in HTML withous any problems.
I really don't have a clue where to search. Has anyone a suggestion?
Thanks in advance,
Marc

The above registry fix worked for me, however, I wanted to clarify the registry key to edit, since I think the poster above me forgot one of the folders:
Regedit - > HKLM -> SOFTWARE -> Hyperion solutions -> HReports -> JVM ->JVM option 2 -> default is -xmx256m
The bolded part above was added to clarify
This fix can also be found in the Oracle KB, under the article name:
Error: "Error 500 Internal Server Error" When Generating Hyperion Financial Reports in PDF Format [ID 1111367.1]

Similar Messages

  • Error while opening a report in FRstudio client machine.

    Hi,I'm getting below error while opening a report in FRstudio client machine. please help me if any of you resolved this issue earlier.
    client laptop: 64bit windows7
    hyperion version: 11.1.2.2
    error msg:
    "HARSnapin Initialize() Error -2147467259 - ; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling return; nested exception is:
         java.io.InvalidClassException: com.hyperion.reporting.graphics.GridObject; local class incompatible: stream classdesc serialVersionUID = 5432192847655595077, local class serialVersionUID = -5245705824007679661"
    thanks

    I've seen umarshalling error when there is a difference between the client and server version. Is there a patch applied? I would recommend to uninstall the existing one and install if from Workspace. (this will ensure that you've the correct client version)
    Regards
    Celvin
    http://www.orahyplabs.com

  • Error while Opening PDF attachment from Mail

    Hi,
    We two Output Types created ZNEU and ZAUF. Two Smartforms are created for the same Output Types. The Issue now is, When ZNEU triggers and send a mail the document is properly decoded and gets opened but for ZAUF it doesn't. It says File damaged.
    This is the code we have used for sending mail.
    CONSTANTS:
              co_pdf(3) TYPE c VALUE 'PDF',
              co_raw(3) TYPE c VALUE 'RAW'.
      DATA:
            it_objbin TYPE STANDARD TABLE OF solisti1,
            wa_objbin TYPE solisti1.
      DATA:
             lv_filesize TYPE i.
      DATA:
            it_lines TYPE STANDARD TABLE OF tline.
      DATA:
            wa_mail_body TYPE solisti1,
            wa_receipients TYPE somlreci1.
      DATA:
           document           TYPE REF TO cl_document_bcs,
           content            TYPE solix_tab,
           wa_content         TYPE solix,
           send_request       TYPE REF TO cl_bcs,
           sender             TYPE REF TO if_sender_bcs,
           recipient          TYPE REF TO if_recipient_bcs,
           requested_status   TYPE REF TO bcs_rqst,
           status_mail        TYPE bcs_stml,
           bcs_exception      TYPE REF TO cx_bcs,
           lv_rec             TYPE adr6-smtp_addr.
      DATA:
             wa_attachx TYPE solix,
             l_pdf_len TYPE i,
             l_con_len TYPE i,
             l_pdf_pos TYPE i,
             l_con_pos TYPE i.
      FIELD-SYMBOLS: <fs_con> TYPE x.
      CLASS cl_cam_address_bcs     DEFINITION LOAD.
      CLASS cl_abap_char_utilities DEFINITION LOAD.
    * Get the PDF version of the OTF
      CALL FUNCTION 'CONVERT_OTF'
       EXPORTING
         format                      = 'PDF'
       IMPORTING
         bin_filesize                = lv_filesize
        TABLES
          otf                         = job_output_info-otfdata
          lines                       = it_lines
       EXCEPTIONS
         err_max_linewidth           = 1
         err_format                  = 2
         err_conv_not_possible       = 3
         err_bad_otf                 = 4
         OTHERS                      = 5.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the PDF format to the table type required for the attachment.
      CALL FUNCTION 'QCE1_CONVERT'
        TABLES
          t_source_tab         = it_lines
          t_target_tab         = it_objbin
        EXCEPTIONS
          convert_not_possible = 1
          OTHERS               = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Convert the data which is in text to binary
      l_con_pos = 0.
      DESCRIBE FIELD wa_objbin LENGTH l_pdf_len IN BYTE MODE.
      DESCRIBE FIELD wa_attachx LENGTH l_con_len IN BYTE MODE.
      LOOP AT it_objbin INTO wa_objbin.
        ASSIGN wa_objbin TO <fs_con> CASTING.
        CHECK sy-subrc EQ 0.
        DO l_pdf_len TIMES.
          l_pdf_pos = sy-index - 1.
          IF l_con_pos = l_con_len.
            APPEND wa_attachx TO content.
            FREE wa_attachx.
            l_con_pos = 0.
          ENDIF.
          MOVE <fs_con>+l_pdf_pos(1) TO wa_attachx-line+l_con_pos(1).
          ADD 1 TO l_con_pos.
        ENDDO.
      ENDLOOP.
      IF l_con_pos > 0.
        APPEND wa_attachx TO content.
      ENDIF.
      TRY .
    *     -------- create persistent send request ------------------------
          send_request = cl_bcs=>create_persistent( ).
    *     -------- create and set document with attachment ---------------
    *     create document from internal table with text
          document = cl_document_bcs=>create_document(
                        i_type    = 'RAW'
                        i_text    = mail_body_tab
                        i_subject = email_subject ).
    *     add attachment to document
          CALL METHOD document->add_attachment
            EXPORTING
              i_attachment_type    = 'PDF'
              i_attachment_subject = attachment_name
              i_att_content_hex    = content.
    *     add document to send request
          CALL METHOD send_request->set_document( document ).
    *    Set sender
          sender = cl_cam_address_bcs=>create_internet_address( sender_id ).
          CALL METHOD send_request->set_sender
            EXPORTING
              i_sender = sender.
    *     Receipients
          LOOP AT receipients_tab INTO wa_receipients .
            lv_rec = wa_receipients-receiver.
            recipient = cl_cam_address_bcs=>create_internet_address( lv_rec ).
    *       Add recipient with its respective attributes to send request
            CALL METHOD send_request->add_recipient
              EXPORTING
                i_recipient = recipient.
          ENDLOOP.
    * Set that you don't need a Return Status E-mail
          status_mail = 'N'.
          CALL METHOD send_request->set_status_attributes
            EXPORTING
              i_requested_status = 'N'
              i_status_mail      = status_mail.
    * set send immediately flag
          send_request->set_send_immediately( 'X' ).
    * Send document
          CALL METHOD send_request->send( ).
    *      COMMIT WORK.
        CATCH cx_bcs INTO bcs_exception.
          RAISE EXCEPTION bcs_exception.
    ENDTRY.
    This is in a Class which is been used in the print program for both the Output Types.
    Can somebody throw light upon this.
    Note: I tried using
    but it is not working properly.
    Thanks,
    Prashanth
    Edited by: Prashanth KR on Jan 5, 2010 6:20 AM

    Hi,
    Please paste the part of code where you are getting error.
    And if you are not clear about where the error is, try searching sdn or google with the error message that you are getting as this issue has been discussed many times earlier.
    Check this link.
    Error while opening PDF in mail attachment
    Hope it helps.
    Regards,
    Raj

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_PDF
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            others                  = 22.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • Error while opening XL reporter

    Hi Experts,
    I get following error while opening XL Reporter
    Error! Server communication failed!
    Cause: Error! Unable to get document!
    Type: 36
    Cause:XML document must have to top level element.
    Tried it on several clients, Win XP, Win 7 but can not open XL Reporter
    SAP Install is PL47 2007A
    Any suggestions??
    Gr, Mark

    To get SAP repoter in windows 7
    1)
    XLR: "Report Initialize", (Error (666)), Automation Error
    u2022     Error Messages
    u2022     Reporting
    u2022     XL Reporter
    After installing XL Reporter, you may encounter these error messages when attempting to run a report from the SBO menu.
    The following error messages occur because XL Reporter does not support .Net 2.0. More than likely you have installed .Net 2.0 for some other software and it is interfering with the execution of the XL Reporter program. SAP indicates that if you copy a certain file to the Excel Folder under your program files, it will correct the problem. Basically the file instructs the system to use .Net 1.1 instead of 2.0.
    The SAP Service Note 918188 (SAP "S" number required) states that a file needs to be added to the root of the Excel folder. This folder is normally found under: C:\Program Files\Microsoft Office\
    in a folder called something like EXCEL 10 or Excel 11. I am running two versions of Excel so I had to put the following file under the the following directory: C:\Program Files\Microsoft Office\Excel2003\OFFICE11
    If you have access to the service site, then access the note mentioned above, and download the file. Otherwise, you will need to create your own.
    Modify the file called "excel.exe.config" lines with the following contents:
    supportedRuntime version="v1.1.4322"
    supportedRuntime version="v1.0.3705"
    requiredRuntime version="v1.0.3705"
    2)
    Regedit for the excel add-on
    3)
    Missing file - MetaInfo.xml (In SAP addon folder)

  • Error while opening the report.

    hi,
      Some time i am getting "500 Internal Server Error',while executing the report.Please check the following exception and  give the possible reason for getting this kind of problem.
    <b>   500 Internal Server Error</b>                                                                               
    BEx Web Application
    Failed to process request. Please contact your system administrator.
    <b>Error Summary</b>
    While processing the current request, an exception occured which could not be handled by the application or the framework.
    If the information contained on this page doesn't help you to find and correct the cause of the problem, please contact your system administrator.
    To facilitate analysis of the problem, keep a copy of this error page. Hint: Most browsers allow to select all content, copy it and then paste it into an empty document (e.g. email or simple text file).
    <b>Root Cause</b>
    The initial exception that caused the request to fail, was:
    Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent
    ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
      MSGV1: SAPMSSY1
      MSGV3: UNCAUGHT_EXCEPTION
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:148)
    at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)
    <b>Messages</b>
    ABEND: Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION
    ABEND: Error in BW:
    <b>System Environment</b>
    <b>Server</b>
    BI Java Release: 7 - Patch level: 0000000009 - Description: BI Web Applications Java - Additional info:  - Production mode: true
    BI ABAP Release: 700 - Patch level: 0009 - Description: SAP NetWeaver BI 7.0 (BIPCLNT300) - Additional info:  - Production mode: true
    Java Virtual Machine Classic VM - IBM Corporation - 1.4.2
    Operating System AIX - ppc64 - 5.3
    <b>Context</b>
    ACCESSIBLE false
    BEx Runtime Version 1
    CACHE true
    CONTENT_PADDING true
    COUNTRY 
    DEBUG false
    DEBUG_LEVEL 0
    DEBUG_MESSAGES false
    Initial Query String BUILDTREE=false&NAVIGATIONTARGET=navurl%3A%2F%2F7b8b73fe5fd57ae6c5c1a24aed5d1ac4&NAVPATHUPDATE=false&RELATIVENAVBASE=&SAP-LAFVERSIONS=portal%3A7.0.9.0.1%3Bur%3A7.0.9.0.1&SAP-PP-CONSUMERBASEURL=3A80&SAP-PP-PRODUCERID=com.lenovo.BIP_Lenovosap&TEMPLATE=Z_WEB_CR_ZCRMOPPI_Q0032&THEME=LenovoBlueTwo
    LANGUAGE en
    Master System Alias BIPCLNT300
    PROFILING false
    RTL false
    Request URL http
    SAP_BW_IVIEW_ID pcd:portal_content/d029033/com..BI_Reports/com.BI_Analytics/Z_WEB_CR_ZCRMOPPI_Q0032
    SAP_EXTERNAL_SID CLGF6EORaEN7Vivt8TVaQw==3eTBxzbQZSMLxB4o3h9+7w==
    THEME_NAME LenovoBlueTwo
    TRACE false
    TRAY_TYPE PLAIN
    Time Thu Oct 04 03:14:20 PDT 2007
    User EPSUPPORT (USER.R3_DATASOURCE.EPSUPPORT)
    <b>Full Exception Chain</b>
    Log ID 00145ED13086005200000889000C719A00043BA80CB04B89
    com.sap.ip.bi.webapplications.runtime.controller.MessageException: Error during conversion of the Web template "Z_WEB_CR_ZCRMOPPI_Q0032 from the master system     at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:2055)     at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.doProcessRequest(Controller.java:841)     at com.sap.ip.bi.webapplications.runtime.controller.impl.Controller.processRequest(Controller.java:775)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.services.BIRuntimeService.handleRequest(BIRuntimeService.java:412)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.components.LauncherComponent.doContent(LauncherComponent.java:21)     at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java(Compiled Code))     at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java(Compiled Code))     at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)     at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))     at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)     at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)     at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java(Compiled Code))     at java.security.AccessController.doPrivileged1(Native Method)     at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))     at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java(Compiled Code))     at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java(Compiled Code))     at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))     at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))     at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))     at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))     at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))     at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))     at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))     at java.security.AccessController.doPrivileged1(Native Method)     at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))     at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))     at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))Caused by: com.sap.ip.bi.base.exception.BIBaseRuntimeException: Error during conversion of the Web template "Z_WEB_CR_ZCRMOPPI_Q0032 from the master system     at com.sap.ip.bi.webapplications.runtime.jsp.portal.service.template.PortalTemplateAccessService.getTemplateContent(PortalTemplateAccessService.java:93)     at com.sap.ip.bi.webapplications.runtime.preprocessor.Preprocessor.parseTemplate(Preprocessor.java:161)     at com.sap.ip.bi.webapplications.runtime.xml.XmlTemplateAssembler.doInit(XmlTemplateAssembler.java:81)     at com.sap.ip.bi.webapplications.runtime.template.TemplateAssembler.init(TemplateAssembler.java:118)     at com.sap.ip.bi.webapplications.runtime.base.Template.doInit(Template.java:105)     at com.sap.ip.bi.webapplications.runtime.base.PageObject.init(PageObject.java:232)     at com.sap.ip.bi.webapplications.runtime.base.Container.init(Container.java:46)     at com.sap.ip.bi.webapplications.runtime.impl.Page.initPageObject(Page.java:3226)     at com.sap.ip.bi.webapplications.runtime.impl.Page.createPageObject(Page.java:3427)     at com.sap.ip.bi.webapplications.runtime.impl.Page.setTemplate(Page.java:4355)     at com.sap.ip.bi.webapplications.runtime.impl.Page.doSetTemplateCommand(Page.java:4091)     at sun.reflect.GeneratedMethodAccessor293.invoke(Unknown Source)     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java(Compiled Code))     at java.lang.reflect.Method.invoke(Method.java(Compiled Code))     at com.sap.ip.bi.util.MethodInvoker.callMethod(MethodInvoker.java:101)     at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:410)     at com.sap.ip.bi.webapplications.runtime.command.CommandProcessorHelper.processCommand(CommandProcessorHelper.java:325)     at com.sap.ip.bi.webapplications.runtime.base.CommunicationProcessor.processCommand(CommunicationProcessor.java:144)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommandInternal(Page.java:1418)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processCommandSequence(Page.java:1713)     at com.sap.ip.bi.webapplications.runtime.impl.Page.doProcessRequest(Page.java:2424)     at com.sap.ip.bi.webapplications.runtime.impl.Page.processRequest(Page.java:1977)     ... 38 moreCaused by: com.sap.ip.bi.deploytime.BIBaseRareSystemException: BI runtime subsystem error: Retrieve MetadataResources Failed1.4.2com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache:initialize Note call hierarchy     at com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache.initialize(MetadataResourceCache.java:212)     at com.sap.ip.bi.deploytime.BISP2Jsp.transformDTT(BISP2Jsp.java:1130)     at com.sap.ip.bi.deploytime.BISP2Jsp.convert(BISP2Jsp.java:497)     at com.sap.ip.bi.webapplications.runtime.jsp.portal.service.template.PortalTemplateAccessService.getTemplateContent(PortalTemplateAccessService.java:88)     ... 59 moreCaused by: com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent ABEND RSBOLAP (000): Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION  MSGV1: SAPMSSY1  MSGV3: UNCAUGHT_EXCEPTION     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:148)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessageInternal(MessageManager.java:144)     at com.sap.ip.bi.base.application.message.impl.MessageManager.addMessage(MessageManager.java:113)     at com.sap.ip.bi.base.application.service.RfcService.fillMessages(RfcService.java:221)     at com.sap.ip.bi.base.application.service.RfcService.doPostProcessing(RfcService.java:171)     at com.sap.ip.bi.base.application.service.rfcproxy.impl.RfcFunction.execute(RfcFunction.java(Compiled Code))     at com.sap.ip.bi.deploytime.service.validation_metadata.impl.ValidationMetadataService.getTransformData(ValidationMetadataService.java:53)     at com.sap.ip.bi.deploytime.metadataresourcecache.MetadataResourceCache.initialize(MetadataResourceCache.java:196)     ... 62 more
    Regards,
    Ravi.M

    hi,
         Any suggestion for the above query.
    here i am using federated portal concept,once i am opening this report in the portal only i am facing the above problem.
    Regards,
    Ravi.M

  • Re : Java error while opening WEBI Report in BO 4.1

    Hi Team,
    while opening webi report i am getting folowing error
    java.util.concurrent.ExecutionException: java.lang.NullPointerException
    at java.util.concurrent.FutureTask.report(Unknown Source)
    at java.util.concurrent.FutureTask.get(Unknown Source)
    at javax.swing.SwingWorker.get(Unknown Source)
    at com.sap.webi.toolkit.ui.tasks.WebITask.getResult(WebITask.java:171)
    at com.sap.webi.ui.tasks.NavigOnDocumentTask.doneProcess(NavigOnDocumentTask.java:95)
    at com.sap.webi.toolkit.ui.tasks.WebITask$PrivateWorker.done(WebITask.java:378)
    at javax.swing.SwingWorker$5.run(Unknown Source)
    at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.run(Unknown Source)
    at sun.swing.AccumulativeRunnable.run(Unknown Source)
    at javax.swing.SwingWorker$DoSubmitAccumulativeRunnable.actionPerformed(Unknown Source)
    at javax.swing.Timer.fireActionPerformed(Unknown Source)
    at javax.swing.Timer$DoPostEvent.run(Unknown Source)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$500(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.WaitDispatchSupport$2.run(Unknown Source)
    at java.awt.WaitDispatchSupport$4.run(Unknown Source)
    at java.awt.WaitDispatchSupport$4.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.awt.WaitDispatchSupport.enter(Unknown Source)
    at java.awt.Dialog.show(Unknown Source)
    at com.jidesoft.dialog.StandardDialog.show(Unknown Source)
    at java.awt.Component.show(Unknown Source)
    at java.awt.Component.setVisible(Unknown Source)
    at java.awt.Window.setVisible(Unknown Source)
    at java.awt.Dialog.setVisible(Unknown Source)
    at com.sap.webi.toolkit.ui.dialog.MessageDialog.setVisible(MessageDialog.java:186)
    at com.sap.webi.ui.SwingClientHelper.showWarning(SwingClientHelper.java:493)
    at com.sap.webi.ui.context.managers.DataManager.checkForEmptyDataProviders(DataManager.java:2592)
    at com.sap.webi.ui.tasks.workflows.RefreshWorkspaceWorkflow$1.run(RefreshWorkspaceWorkflow.java:147)
    at java.awt.event.InvocationEvent.dispatch(Unknown Source)
    at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
    at java.awt.EventQueue.access$500(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.awt.EventQueue$3.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    Caused by: java.lang.NullPointerException
    at com.sun.deploy.security.CPCallbackHandler.isAuthenticated(Unknown Source)
    at com.sun.deploy.security.CPCallbackHandler.access$1600(Unknown Source)
    at com.sun.deploy.security.CPCallbackHandler$ChildElement.checkResource(Unknown Source)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.checkResource(Unknown Source)
    at com.sun.deploy.security.DeployURLClassPath$JarLoader.getResource(Unknown Source)
    at com.sun.deploy.security.DeployURLClassPath.getResource(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.plugin2.applet.Plugin2ClassLoader.findClassHelper(Unknown Source)
    at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at com.businessobjects.rebean.wi.impl.model.viewing.ReportEngineOutputSourceFactory.createReportElementPageOutputSource(ReportEngineOutputSourceFactory.java:72)
    at com.businessobjects.rebean.wi.impl.services.NavigationServiceImpl.internalNavigateToReportElement(NavigationServiceImpl.java:313)
    at com.businessobjects.rebean.wi.impl.services.NavigationServiceImpl.navigateToReportElement(NavigationServiceImpl.java:105)
    at com.businessobjects.rebean.wi.app.ViewingFacade.navigateToReportElement(ViewingFacade.java:208)
    at com.sap.webi.ui.viewer.PageFactory.getPages(PageFactory.java:634)
    at com.sap.webi.ui.viewer.PageFactory.getPages(PageFactory.java:196)
    at com.sap.webi.ui.tasks.NavigOnDocumentTask.doIt(NavigOnDocumentTask.java:68)
    at com.sap.webi.ui.tasks.NavigOnDocumentTask.doIt(NavigOnDocumentTask.java:23)
    at com.sap.webi.toolkit.ui.tasks.WebITask$PrivateWorker.doInBackground(WebITask.java:348)
    at javax.swing.SwingWorker$1.call(Unknown Source)
    at java.util.concurrent.FutureTask.run(Unknown Source)
    at javax.swing.SwingWorker.run(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Any ideas please,
    Thanks & Regards,
    Varun G

    "...at com.sap.webi.ui.tasks.NavigOnDocumentTask.doIt(NavigOnDocumentTask.java:23) at com.sap.webi.toolkit.ui.tasks.WebITask$PrivateWorker.doInBackground(WebITask.java:348)" Please check out SAP KB 2115770 - Error encountered when opening a Web Intelligence document reporting off of SAP BW BEx queries and Universes in BI 4.1 SP05 on http://service.sap.com/sap/support/notes/2115770. The resolution can be found on BI4.1 SP05 Patch 03 and above. Hope this helps, Jin-Chong

  • Error while opening .PDF files in document library sharepoint 2013

    Hi
    I am getting an error while opening a .pdf file,
    Please help me find the solution.
    Thanks
    Paru

    Launch IE -> Click on Gear (settings) -> Manage Add-ons -> Show: All Add-ons ->
    There are 2 Adobe Add-ons:
    Adobe PDF Reader  &  Adobe Acrobat Sharepoint Open Document
    Double-click both and be sure to click the button "ALLOW ON ALL SITES"
    (An * will appear in the field)
     http://crowdsupport.telstra.com.au/t5/T-Suite-Applications/There-was-an-error-opening-this-document-The-filename-directory/td-p/197425
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/ae2eea40-9fa6-46be-bca1-ac5eb5597d5e/sharepoint-2010-adobe-reader-error-opening-pdf-files?forum=sharepointgeneralprevious
    http://community.office365.com/en-us/f/154/t/46204.aspx?PageIndex=2
    disable the Mcafee Firewall Plug In.  This is after of course I ran superantispyware to remove some malware.  uninstalled and reinstalled the Adobe Reade
    https://forums.adobe.com/message/1776202?tstart=0

  • Getting error while opening pdf on server

    Dear All,
    I am working on jdeveloper 11.1.1.4.0.
    I have a use case where on click of link , generating a dynamic pdf. The pdf i am arranging with the help of itext through backing bean. It is generating as well downloading the pdf.I have used filedownloadlistner to call the generate and download pdf methods.
    On integrated weblogic server the pdf is working fine, but when i deploy on server while opening pdf getting error :
    *"Adobe Reader could not open 'test.pdf' beacause it is either not a supported file type*
    *or because the file has been damaged (for example, it was sent as an email attachment and*
    *wasn't correctly decoded)."*
    I am not able to get the root cause for the problem. The sample code to generate and download pdf is :
    // Generate PDF
    private void generatePDFFile(FacesContext facesContext,
    java.io.OutputStream outputStream) {
    try {
    System.out.println("In Generate PDF................");
    Document document = new Document(PageSize.A4);
    PdfWriter.getInstance(document, new FileOutputStream(FILE));
    document.open();
    addMetaData(document);
    addTitlePage(document);
    document.close();
    System.out.println("End of PDF......................");
    facesContext = facesContext.getCurrentInstance();
    ServletContext context = (ServletContext)facesContext.getExternalContext().getContext();
    System.out.println(context.getRealPath("/"));
    String FILE = "test.pdf";
    File file = new File(FILE);
    FileInputStream fdownload;
    //BufferedInputStream bis;
    byte[] b;
    System.out.println(file.getCanonicalPath());
    System.out.println(file.getAbsolutePath());
    fdownload = new FileInputStream(file);
    int n;
    while ((n = fdownload.available()) > 0) {
    b = new byte[n];
    int result = fdownload.read(b);
    outputStream.write(b, 0, b.length);
    if (result == -1)
    break;
    outputStream.flush();
    } catch (Exception e) {
    e.printStackTrace();
    Download PDF
    private void downloadPDF(FacesContext facesContext, java.io.OutputStream outputStream) {
    try {
    facesContext = facesContext.getCurrentInstance();
    ServletContext context = (ServletContext)facesContext.getExternalContext().getContext();
    ExternalContext ctx = facesContext.getExternalContext();
    HttpServletResponse res = (HttpServletResponse)ctx.getResponse();
    res.setContentType("application/pdf");
    outputStream = res.getOutputStream();
    System.out.println(context.getRealPath("/"));
    File file = new File(FILE); // FILE = 'test.pdf'
    FileInputStream fdownload;
    // BufferedInputStream bis;
    byte[] b;
    fdownload = new FileInputStream(file);
    //bis = new BufferedInputStream (new FileInputStream(file));
    int n;
    while ((n = fdownload.available()) > 0) {
    b = new byte[n];
    int result = fdownload.read(b);
    //outputStream.write(b, 0, b.length);
    outputStream.write(b, 0, b.length);
    if (result == -1)
    break;
    outputStream.flush();
    outputStream.close();
    fdownload.close();
    } catch (Exception e) {
    e.printStackTrace();
    Any help will be appreciated.
    Thanks
    Kanika

    If the pdf file don't open on the server where you created them, they won't open on the client side either.
    The code you are using should be refactored to use different file names for the generated files. In a multi user environment (which every web application is) you overwrite the file generated with each new request, even before the file is loaded by a client. This will corrupt the file a client is loading and you get the error you see.
    Next I would look into org.apache.commons.io package (http://commons.apache.org/io/) which has utility classes which allows easy handling of streams without looping over the data.
    Timo

  • Exchange 2013 OWA HTTP 500 error when opening another mailbox

    We have an Windows Server 2012 Exchange 2013 server with OWA. 
    All users can login fine, but when I open another mailbox with my Admin account, having enabled access to that user's mailbox, the URL redirects to /owa/auth/errorfe.aspx?httpCode=500 and shows: 
    something went wrong
    Sorry, we can't get that information right now. Please try again later. If the problem continues, contact your helpdesk
    Google won't help me in this instance. Where in the eventlog are OWA events logged?

    Hello,
    I am joining to the thread opener, however, we do not use exchange server. we are using the Cloud services through Microsoft and as far as I know, the version is 2013 wave 15 (again, through Microsoft's cloud).
    when I open the outlook, I can see the shared mailbox just fine.
    when I open the office web access, and I search the mailbox through the 'add another mailbox..' It finds it however when I press the add button I get the HTTP 500 error.
    when I tried to open a different mailbox (another shared mailbox I gave myself permissions for), it opens just fine.
    it seems (from what I can tell) it is this specific shared mailbox that I cannot open through OWA while others I can.
    when I try to open the mailbox in question through a different internet browser (Chrome) I get this Error:
    NegotiateSecurityContext failed with for host 'db3pr04mb138.eurprd04.prod.outlook.com' with status'LogonDenied'
    the error seems to be persistent on this specific mailbox only regardless to what browser I am trying to access with.
    I can only assume that the solutions you (Winnie) offered isn't relevant in my case.
    thanks in advance for any attempt to help me with this issue.

  • Error while opening the report or sheet in the desktop

    While opening the reports it gives error as " Failed to Connect Database".
    In Some reports it gives error as "Unable to Load EUL item".
    Then we check the Menu bar, Tool ----> Options --->EUL.
    We found, it is giving Default EUL as blank.
    Now it is not allowed to open any sheet as well as not allowed to create new report.
    Can any one tell how to resolve this problem?

    Hi,
    I am having the same issue. I am not able to import Crystal Report.
    the error is "No matching records found  'Queries' (OUQR) (ODBC -2028)  [Message 131-183]"
    I have previewed the report using Preview external crystal report option and is running perfect.
    please guide ASAP.
    Regards
    Sonil

  • Error while opening Crytal report

    Hi All ,
    I am receiving the below error while opening reports .I am not able to open the crystal report.Tried uninstalling and reinstalling.But it dint worked.Can any one help me with this issue.Please find the error file attached.I am using SAP B1 9.0 PL06 and crystal report 2008

    The best place to post your queries (and preferably it should be the developer posting the queries) will be: 
    SAP Business One Application SCN Space.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Error while opening PDF in mail attachment

    Hi All,
    In smartform i am sending a mail with attachemnt as PDF file,there is one more option like preview of smartform .
    issue is like i am able to see the preview of the same record but when it is sent in mail attachement,and while opening PDF its showing error that file can not be open it is corrupted.
    Please help.
    Mona Singh.

    Dear Sandra
    That was my problem: binary data was incorrectly converted (often because of Unicode systems).
    I returned
            bin_filesize          = v_len_in
            bin_file              = l_binfile
    from the function module CONVERT_OTF, then converted the xstring data (l_binfile) into an internal table (t_objbin) to send to the mail send function with the following function module:
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = l_binfile
          IMPORTING
            output_length = v_lines_bin
          TABLES
            binary_tab    = t_objbin.
    Many thanks for your help.
    Best regards
    Patricia

  • HTTP 500 error when opening "App Server Control" (EM) in OAS 10.1.3.5.0

    Hi,
    I have some (but not much) experience with OAS and am currently stuck. So hope to find someone who can help me further here.
    When i open Oracle Application Server Control from the SOA Suite 10.1.3.5.0 home page i get most of the times an HTTP 500 error.
    Initially i got this even when i opened the login page (/em) but worked around this by increasing the ThreadsPerChild from 100 > 250 in the httpd.conf and replacing the loopback adres 127.0.0.1 in the dms.conf for the virtual host configuration to the actual (fixed) ip-address.
    The current situation is that when i restart the environment (opmn stopall & opmn startall) i can open the the EM login page.
    After logging in om the Enterprise Manager, the page is partly loaded and a HTTP 500 error is shown when i refresh the page.
    The apache log files now still shows the following errors;
    [Tue Sep 07 15:46:19 2010] [error] [client 10.157.1.68] [ecid: 1283867060:10.150.50.110:10312:9568:5,0] mod_oc4j: Failed to find a failover oc4j process for session request for destination: application://ascontrol (no island or jgroup).
    [Tue Sep 07 15:51:20 2010] [error] [client 10.157.1.68] [ecid: 1283867060:10.150.50.110:10312:9568:5,0] mod_oc4j: request to OC4J SOA-WTST:12501 failed: Connect failed
    Any hints ?
    Kind regards,
    Peter

    If finally found the cause of the problem, lack of PermGen space for the home instance;
    When opening the EM Console most of the times i was able to open the login page, under stress opening this page failed most of the times.
    The ascontrol-application.log pointed me in the right direction;
    10/09/07 15:26:59.111 ascontrol: Servlet error
    java.lang.OutOfMemoryError: PermGen space
    When monitoring the PermGen of the home instance, is showed that the system was running out of PermGen space.
    Increasing the PermGen size for the home instance in opmn.xml did the trick
    <data id="java-options" value="-Xrs -server -XX:MaxPermSize=128M......"

  • HTTP 500 Error while login.

    Hi Friends,
    I have fresh installed R121.1 on 2003 server. just after instalation i checked my application was working fine.
    then i shut down my application using adstapal.cmd and did one reboot.
    Post reboot i started my DB with it's listner after this as expected DB is working fine. and then started all the services with adstrtal.cmd
    Every services are started.
    When i was trying to login to application i an getting HTTP 500 Error Below is my steps and services status.
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts>adstrtal.cmd apps/apps
    ECHO is off.
    ECHO is off.
    Thu 11/11/2010 10:21 PM
    ECHO is off.
    ECHO is off.
    Connected.
    The logfile for this session is located at D:\oracle\VIS\inst\apps\VIS_ora\logs\
    appl\admin\log\adstrtal.txt
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adopmnctl.cmd start
    script returned:
    Thu 11/11/2010 10:21 PM
    Starting Oracle Process Manager (OPMN) ...
    CALL D:\oracle\VIS\apps\tech_st\10.1.3\opmn\bin\opmnctl.exe start
    opmnctl: opmn started
            STATE              : 4  RUNNING
    exiting with status 0
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adalnctl.cmd start
    script returned:
    ECHO is off.
    ECHO is off.
    Thu 11/11/2010 10:23 PM
    ECHO is off.
    The environment settings are as follows ...
    ECHO is off.
           ORACLE_HOME : D:\oracle\VIS\apps\tech_st\10.1.2
                 LOCAL : VIS
            ORACLE_SID :
                  PATH : D:\oracle\VIS\apps\tech_st\10.1.2\bin;D:\oracle\VIS\apps\te
    ch_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre
    \bin;D:\oracle\VIS\apps\apps_st\appl\au\12.0.0\bin;D:\oracle\VIS\apps\apps_st\ap
    pl\fnd\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\ad\12.0.0\bin;D:\oracle\VIS\ap
    ps\tech_st\10.1.3\appsutil\jdk\jre\bin;D:\oracle\VIS\apps\tech_st\10.1.3\perl\5.
    8.3\bin\MSWin32-x86-multi-thread\;D:\oracle\VIS\apps\apps_st\comn\util\unzip\unz
    ip;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st
    \10.1.2\bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\app
    s\tech_st\10.1.3\appsutil\jdk\jre\bin;D:\oracle\VIS\apps\tech_st\10.1.3\bin;D:\o
    racle\VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3
    \bin;D:\oracle\VIS\apps\apps_st\appl\cz\12.0.0\bin;D:\oracle\VIS\apps\apps_st\ap
    pl\iby\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\pon\12.0.0\bin;D:\oracle\VIS\a
    pps\apps_st\appl\au\12.0.0\bin;D:\oracle\VIS\apps\tech_st\10.1.3\bin;D:\oracle\V
    IS\apps\apps_st\appl\cz\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\iby\12.0.0\bi
    n;D:\oracle\VIS\apps\apps_st\appl\pon\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl
    \au\12.0.0\bin;D:\oracle\VIS\apps\tech_st\10.1.3\bin;D:\oracle\VIS\apps\tech_st\
    10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.2\bin;D:\oracle\VIS\apps
    \tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\
    jre\bin;D:\oracle\VIS\apps\tech_st\10.1.3\bin;D:\oracle\VIS\apps\tech_st\10.1.3\
    appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3\bin;D:\oracle\VIS\apps\tech_s
    t\10.1.3\appsutil\jdk\bin;C:\Dot_Net_VC\Common7\IDE;C:\Dot_Net_VC\VC\BIN;C:\Dot_
    Net_VC\Common7\Tools;C:\Dot_Net_VC\Common7\Tools\bin;C:\Dot_Net_VC\VC\PlatformSD
    K\bin;C:\Dot_Net_VC\SDK\v2.0\bin;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727;C
    :\Dot_Net_VC\VC\VCPackages;D:\oracle\VIS\apps\apps_st\appl\au\12.0.0\bin;D:\orac
    le\VIS\apps\apps_st\appl\fnd\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\ad\12.0.
    0\bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre\bin;D:\oracle\VIS\apps\
    tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\;D:\oracle\VIS\apps\apps_
    st\comn\util\unzip\unzip;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\o
    racle\VIS\apps\tech_st\10.1.2\bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk
    \bin;D:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre\bin;C:\Dir\bin;C:\WINDOW
    S;C:\WINDOWS\system32;D:\oracle\VIS\apps\tech_st\10.1.3\ant\bin;D:\oracle\VIS\ap
    ps\tech_st\10.1.3\ant\bin
       LD_LIBRARY_PATH : D:\oracle\VIS\apps\tech_st\10.1.2\lib
    ECHO is off.
    The service "OracleVIS_ora_TOOLSTNSListenerAPPS_VIS" is already started
    adalnctl.cmd exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adapcctl.cmd start
    script returned:
    Thu 11/11/2010 10:23 PM
    Oracle Managed Process HTTP_Server is already running
    exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adoacorectl.cmd start
    script returned:
    Thu 11/11/2010 10:23 PM
    Oracle Managed Process oacore is already running
    exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adformsctl.cmd start
    script returned:
    Thu 11/11/2010 10:23 PM
    Oracle Managed Process forms is already running
    exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adoafmctl.cmd start
    script returned:
    Thu 11/11/2010 10:23 PM
    Oracle Managed Process oafm is already running
    exiting with status 2
    ERRORCODE = 2 ERRORCODE_END
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\adcmctl.cmd start
    script returned:
    ECHO is off.
    ECHO is off.
    Thu 11/11/2010 10:23 PM
    ECHO is off.
    ECHO is off.
    Thu 11/11/2010 10:23 PM
    ECHO is off.
    ECHO is off.
    Setting environment for using Microsoft Visual Studio 2005 x86 tools.
    APPSORA.cmd exiting with status 0
    Starting concurrent manager for VIS ...
    The OracleConcMgrVIS_ora service is starting...
    The OracleConcMgrVIS_ora service was started successfully.
    adcmctl.cmd exiting with status 0
    .end std out.
    .end err out.
    Executing service control script:
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts\jtffmctl.cmd start
    script returned:
    You are running jtffmctl.cmd
    Thu 11/11/2010
    10:23 PM
    "Starting Fulfillment Server for "VIS" on port "9300" ...\n"
    The Oracle Fulfillment Server VIS_ora service is starting.
    The Oracle Fulfillment Server VIS_ora service was started successfully.
    jtffmctl.cmd exiting with status 0
    ERRORCODE = 0  ERRORCODE_END
    .end std out.
    .end err out.
    All enabled services for this node are started.
    Check logfile D:\oracle\VIS\inst\apps\VIS_ora\logs\appl\admin\log\adstrtal.txt f
    or details
    adstrtal.cmd exiting with status 0
    ERRORCODE = 0 ERRORCODE_END
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts>adapcctl.cmd status
    Thu 11/11/2010 10:28 PM
    Checking status of OPMN managed processes...
    Processes in Instance: VIS_ora.ora.apps.com
    ---------------------------------+--------------------+---------+---------
    ias-component                    | process-type       |     pid | status
    ---------------------------------+--------------------+---------+---------
    OC4JGroup:default_group          | OC4J:oafm          |    7980 | Alive
    OC4JGroup:default_group          | OC4J:forms         |    1936 | Alive
    OC4JGroup:default_group          | OC4J:oacore        |    7884 | Alive
    HTTP_Server                      | HTTP_Server        |    7828 | Alive
    ASG                              | ASG                |     N/A | Down
    exiting with status 0
    ERRORCODE = 0 ERRORCODE_END
    D:\oracle\VIS\inst\apps\VIS_ora\admin\scripts>At the botom i have given status of adapcctl.cmd as well
    Please Suggest
    Bachan.

    Hi,
    [Fri Nov 12 13:22:04 2010] [error] [client 192.168.100.1] [ecid: 1289596924:192.168.100.1:3020:2668:1,0] Directory index forbidden by rule: c:/oracle/vis/apps/apps_st/comn/java/classes/
    [Fri Nov 12 04:08:42 2010] [error] [client 192.168.100.1] [ecid: 1289563722:192.168.100.5:3528:3312:2,0] File does not exist: c:/oracle/vis/inst/apps/vis_ora/portal/favicon.icoThese errors can be ignored.
    And Data base is running perfectly fine.
    I can query, compile n can do any thing on DB.Have you check the log file for any ORA-XXXXX errors?
    i am able to login and after few min it went to same status HTTP 500 Internal server errorAre you still above to access the forms? Is the issue with HTTP server only?
    Thanks,
    Hussein

Maybe you are looking for

  • Need help on witholdiong tax report

    I have a request to add some fields to the witholding tax for france report. the program is RFKQST80 and the t-code is S_ALR_87012132. I am going to copy RFKQST80 to a Z program and make the changes. I am not sure if there is anything else that has t

  • Passing array into resultset

    hi, is it possible to pass an array into a resultset? if yes please indicate how. thank you all in advance

  • What is tha latet version of Firefox compatile with MAC OS 10.4.11

    When I down load the latest version of firefox supposidly compatible with my compute I get a message it is not compatible and I should dowm load the latest version tha tis compatible with my system, 10.4.11 running on a G 5 based machine. NOT INTELL!

  • TechTool Pro 4.5.3 NOT compatible

    I had the latest version of Micromat's TechTool Pro installed on my MacPro with OSX10.4.10. I just upgraded my system to 10.5 and got an error message while trying to start TechTool. This is the first program incompatibility I have run accross. Micro

  • Disable Address Check

    Hi, I am trying to change the address of the Connection object through a Function Module using BDC of the transaction Code ES57. Issue is that on the screen of ES57 there is a subscreen which internally does the Address Validation and a pop up is dis