ERROR: FWM 01005

Finding solutions for this error, i found that the cause "Unable to open a socket to talk to the CMS" and the suggested "Ensure that the CMS is running" .
I went to task manager to check on the processes CMS but not found so restart my SIA thus restart my CMS and 10 seconds later appeared in my task manager CMS.exe process but disappeared 10 seconds  later.
Please help me to solve this problem.
psd: this is the last CMS.log
.\apsserver.cpp:1302: TraceLog message 1
2010/06/30 19:11:44.930|>>|A| | 3460|3384| |||||||||||||||assert failure: (.\apsserver.cpp:1302). (0 : An unexpected problem (exception) happened.  Reason given: The port number specified for the server is already in use., The server has problems using TCP/IP. The port number you are using is probably already in use..Port is in use: 6400).

Hi,
Tim is right - looks like something is using port 6400. Check also SAP Note - 1298586
https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=69765F6D6F64653D3030312669765F7361706E6F7465735F6E756D6265723D3132393835383626
Regards
-Seb.

Similar Messages

  • Unable to open a socket to talk to CMS (FWM 01005)

    Hi,
    I am running the monitoring probes every 15 minutes or so and once in while, the probes return this error message:
    Unable to open a socket to talk to CMS (FWM 01005) {/quote}
    Can anybody tell me what this error means and what I can do to avoid it?
    Or is there a place where I can find definitions of error message in BusinessObjects.
    PS: BO XI 3.1 SP3 .net
    Thanks,
    Aude Freeman

    The error message(s) is mainly seen when trying to authenticate a user during login into BusinessObjects Enterprise. The error can be seen under following different actions:
    Login to InfoView or
    From CCM panel, click on "Manage Servers" and try to login or
    Preview a Xcelsius Dashboard based on QaaWS or Live Office connection that is set to refresh on load and try to login in the authentication box that comes up.
    Looks like once in a while you have either CMS too busy to answer or some network issues.

  • Create a External Table in Oracle 10g:== ERROR: KUP-01005

    Hello.
    I have a problem working with external tables, hope someone can help me with this problem. Thanks.
    This is the code of the external table
    ========================
    CREATE TABLE SIAFI.RNP_IDS
    NUMERO_ID VARCHAR2(30 BYTE),
    PRIMER_NOMBRE VARCHAR2(300 BYTE),
    SEGUNDO_NOMBRE VARCHAR2(300 BYTE),
    APELLIDO_PATERNO VARCHAR2(300 BYTE),
    APELLIDO_MATERNO VARCHAR2(300 BYTE),
    DEPARTAMENTO VARCHAR2(300 BYTE),
    CORRELATIVO VARCHAR2(300 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY SEG_DIRECTORIO
    ACCESS PARAMETERS
    ( records delimited by NEWLINE
    badfile SEG_DIRECTORIO:'censo.bad'
    logfile SEG_DIRECTORIO:'censo.log'
    FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM
    REJECT ROWS WITH ALL NULL FIELDS
    (NUMERO_ID VARCHAR(30) NULLIF NUMERO_ID=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    PRIMER_NOMBRE VARCHAR(300) NULLIF PRIMER_NOMBRE=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    SEGUNDO_NOMBRE VARCHAR(300) NULLIF SEGUNDO_NOMBRE=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    APELLIDO_PATERNO VARCHAR(300) NULLIF APELLIDO_PATERNO=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    APELLIDO_MATERNO VARCHAR(300) NULLIF APELLIDO_MATERNO=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    DEPARTAMENTO VARCHAR(300) NULLIF DEPARTAMENTO=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    CORRELATIVO VARCHAR(300) NULLIF CORRELATIVO=BLANKS
    TERMINATED BY "," OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM,
    LOCATION (SEG_DIRECTORIO:'censo.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    When executing the stament select from RNP_IDS* it returns the following error message:
    ===========================================================
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-00554: error encountered while parsing access parameters
    KUP-01005: syntax error: found "terminated": expecting one of: "and, comma, defaultif, not, nullif, or, )"
    KUP-01007: at line 6 column 56
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    ORA-06512: at line 1
    This is the example of the file I'm using:
    ==========================
    "0","DOUGLAS","AUGUSTO","ABBOTT","","1","3672097"
    "0101190600010","MARIA","URBANA","GOMEZ","URBINA","2","1949122"
    "0101190600076","ENRIQUETA","","GARCIA","","2","1162025"
    "0101190800106","LUCILA","","FLORES","","2","1658013"

    Hi
    Here we go...
    I reduced the 300 length of varcahr t o30 for testing purpose...
    SQL> CREATE TABLE RNP_IDS
    2 (
    3 NUMERO_ID VARCHAR2(30),
    4 PRIMER_NOMBRE VARCHAR2(30),
    5 SEGUNDO_NOMBRE VARCHAR2(30),
    6 APELLIDO_PATERNO VARCHAR2(30),
    7 APELLIDO_MATERNO VARCHAR2(30),
    8 DEPARTAMENTO VARCHAR2(30),
    9 CORRELATIVO VARCHAR2(30)
    10 )
    11 ORGANIZATION EXTERNAL
    12 ( TYPE ORACLE_LOADER
    13 DEFAULT DIRECTORY LOG
    14 ACCESS PARAMETERS
    15 ( records delimited by NEWLINE
    16 badfile LOG:'censo.bad'
    17 logfile LOg:'censo.log'
    18 FIELDS TERMINATED BY ','
    19 OPTIONALLY ENCLOSED BY '"' and '"'LDRTRIM
    20 REJECT ROWS WITH ALL NULL FIELDS
    21 (
    22 NUMERO_ID ,
    23 PRIMER_NOMBRE ,
    24 SEGUNDO_NOMBRE ,
    25 APELLIDO_PATERNO,
    26 APELLIDO_MATERNO ,
    27 DEPARTAMENTO,
    28 CORRELATIVO
    29 )
    30 )
    31 LOCATION ('sample1.txt')
    32 )
    33 REJECT LIMIT UNLIMITED
    34 NOPARALLEL
    35 NOMONITORING;
    Table created.
    SQL> desc rnp_ids
    Name Null? Type
    NUMERO_ID VARCHAR2(30)
    PRIMER_NOMBRE VARCHAR2(30)
    SEGUNDO_NOMBRE VARCHAR2(30)
    APELLIDO_PATERNO VARCHAR2(30)
    APELLIDO_MATERNO VARCHAR2(30)
    DEPARTAMENTO VARCHAR2(30)
    CORRELATIVO VARCHAR2(30)
    SQL> select numero_id from rnp_ids;
    NUMERO_ID
    0
    0101190600010
    0101190600076
    0101190800106
    - Pavan Kumar N

  • Error FWM 00001 DeskI and Designer

    Hello,
    I have a problem with BO XI3 Desktop Intelligence and Designer.
    I can't log in, I have the following error :
    [repo_proxy 13] SessionFacade::openSessionLogon with user info has failed(Transport error: Communication failure.(FWM 00001)
    (hr=#0x80042a01)
    Connection with J2EE Portal works
    How can I fix it ?
    Firewall is disabled.
    thanks

    Hi Vincent, ,
    I have the same problem... I change my host file but nothing change...
    Thanks
    Cedric

  • XI3.1 Error -  (FWM 01002)

    We are getting the following error after applying the changes listed below to reduce the session timeout. I had opened an incident with SAP and instructed to make these changes. This error is also making scheduled Webi reports fail.
    An error has occurred: Unable to reconnect to the CMS scfbi0p0boefrm1.scfbins1.com:6400. The session has been logged off or has expired. (FWM 01002)
    Changes made to reduce the session timeout:
      Changed the session-timeout to 5 (Default was 20) in the following web.xml files:
          CmcApp, CmcAppActions, InfoviewApp and InfoviewAppActions
      Changed the logontoken.enable to false in the following web.xml files:
          CmcApp and InfoviewApp
      Added " -failovertimeout 1" to the command line parameter of CMS server in the CMC.
      Set the IdleSessionTimeout = Decimal 60000 (1 Min) located in the registry.
    After the changes were made I restarted the CMS server and Tomcat.
    I would appreciate any ideas on what might be causing this.
    Mike

    SAP released note 1422296 about this on 15.10.2010 15:24:14.
    1422296 - Error:' Unable to reconnect to CMS <servername>:6400. The session has been logged off or has expired.(FWM 01002)' with BusinessObjects XI 3.1.
    Symptom
    Not able to schedule WebIntelligence reports.
    Reports fail with error:'Unable to reconnect to CMS <servername>:6400. The session has been logged off or has expired.(FWM 01002)'
    Environment
    BusinessObjects XI 3.1.
    Reproducing the Issue
    Schedule a WebIntelligence report to run now.
    Reports fails with error:u2018Unable to reconnect to CMS <servername>:6400. The session has been logged off or has expired.(FWM 01002)'
    Resolution
    1. From Central Configuration Manager, disable all the services and re-enable them.
    2. Log into Central Management Console and go to the server area.
    3. Go to the properties of Central Management Server, in command line parameters type -requesttimeout 3600000.
    4. Save the changes and restart the server.
    5. Follow the same steps for WebIntelligence Processing Server and Adapter Job Server.
    6. Go to the connection server properties and increase "Ideal connection timeout" to 120, restart the server
    Keywords
    reconnect, FWM 01002, schedule, WebI.
    Header Data
    Released on  15.10.2010 15:24:14 
    Release status  Released to Customer 
    Component  BI-BIP-PUB Publishing and scheduling in InfoView/BI launch pad 
    Priority  Normal 
    Category  Problem

  • Crystal Report Viewer Session Time out error ( FWM 01002)

    Hi,
    We are using java 1.4 and Teradata base with BO XI 3.0
    I am getting the following error when click on icons (Export, Print, Paging) within Crystal Report Viewer.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Unable to
    reconnect to the CMS [servername]. The session has been logged off or has expired. (FWM 01002) [RASLIB9038]---- Error code:-2147215357
    Error code name:internal at
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source) at
    com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.a(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ps.internal.f.getLastPageNumber(Unknown Source) at com.businessobjects.report.web.b.a.do(Unknown Source) at
    com.businessobjects.report.web.event.q.a(Unknown Source) at com.businessobjects.report.web.event.q.a(Unknown Source) at com.businessobjects.report.web.event.k.a(Unknown Source) at com.businessobjects.report.web.event.bt.broadcast(Unknown Source) at com.businessobjects.report.web.event.ak.a(Unknown Source) at com.businessobjects.report.web.a.q.if(Unknown Source) at com.businessobjects.report.web.e.a(Unknown Source) at com.businessobjects.report.web.e.a(Unknown Source) at com.businessobjects.report.web.e.if(Unknown Source) at
    com.crystaldecisions.report.web.viewer.CrystalReportViewerUpdater.a(Unknown Source) at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source) at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.if(Unknown Source) at com.crystaldecisions.report.web.viewer.CrystalReportViewerServlet.doPost(Unknown Source) at javax.servlet.http.HttpServlet.service(HttpServlet.java:709) at javax.servlet.http.HttpServlet.service(HttpServlet.java:802) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173) at
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213) at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178) at
    If I let the report sit for 30 minutes or so, the icons will work. The u201Csession
    timeout error messageu201D is kind of misleading. I have updated the JDBC drivers to version 13.0 for Teradata (terajdbc4.jar and tdgssconfig.jar) and did not see improvement.
    Can anyone please help?
    Thanks!
    Edited by: Yingchiu Ou on May 12, 2010 12:42 AM

    I see the viewer, but not the attendant EnterpriseSession nor what the ReportSource is connected to.
    Since the error message explicitly states issues with EnterpriseSession lifetime, it'll be good to give the above info.
    Sincerely,
    Ted Ueda

  • Error FWM 01014

    I just installed Crystal Reports Server 2008 on a server and to make the installation easy I choose the install Tomcat & deploy to it and install MySQL options. The installation was done on Windows 2003 and I use SQL 2005 as the database for report data.
    The installation completes without any error messages and most thing work after the installation. I can logon onto CMC, I can publish reports, I can logon to infoview. But when I try to view a report I get error messages. I also tried running the sample reports that came with the installation but got the same results. When I run a sample report from CMC I get the following error message:
    *An unexpected error has occurred. The exception originally thrown was: Unable to find servers in CMS crdevserver.kilic.local:6400 and cluster @crdevserver.kilic.local:6400 with kind fileserver and service FileStoreV2. All such servers could be down or disabled by the administrator. (FWM 01014)
    When I try to run the same sample report from infoview it gives the error:*
    invalid report object.
    When I try to run 1 of our own reports from infoview it gives the error:
    The database logon information is incomplete or incorrect.
    I am sure it is correct, I also tried having the user enter these values but got the same result.
    I also tried reinstalling with diffrent configurations but got the same results, I have been searching the internet for a solution for the last week but I am pretty much stuck.
    Any assistance would be much appreciated.  thanks
    Tuncer
    Edited by: tuncer64 on Oct 22, 2010 9:04 AM

    When I reinstalled with he regional settings on the server set to US everything starting working fine.

  • Error FWM 01003 infoView

    Hello,
    I have problem when i try access to infoView says
    "u2022Error: Server cundisrv119:6400 not found or server may be down (FWM 01003) null"
    I have tried everything but i cant solve this problem when i enter the cmc my system name is
    cundisrv119:6409 and i can join without any problem but i dont know how i can change the port for infoView
    I guess this is the problem.
    Thaks a lot
    Att
    Cesar Agudelo
    Pd: I work in BOE XI 3.1

    Hi
      You need to update default value of "CMS.default" in web.xml of InfoViewApp.
    Solution
    1.  Update the default value of u201Ccms.defaultu201D in web.xml of InfoViewApp.war file & redeploy
        <context-param>
            <param-name>cms.default</param-name>
            <param-value>cundisrv119:6409</param-value>
        </context-param>
    2. restart Application server
    If you are using default Tomcat then, you can go for Temporary Solution (works till you re-deploy infoviewapp.war).
    1. Go to C:\Program Files\Business Objects\Tomcat55\webapps\InfoViewApp\WEB-INF & Update the web.xml of InfoViewApp.war file & redeploy
    If you are not using tomcat, Go for first solution.
    Regards
    Ashwini

  • ORA-01005 error when running app on standalone server

    Hello All:
    When I run an application on stand alone weblogic 10.3 server, I am getting error:
    ORA-01005: null password given; logon denied.
    In IDE it is running well and password field is filled checkboxes Save Password, Deploy Password checked in Database Connection.
    Thanks,
    SNikiforov

    Try searching the forum for ORA-01005...

  • ORA-01005 error when starting OBIEE

    Hi All,
          I am having error ORA-01005 when I try to start OBIEE (bi_server1) from WLST.  However this server was working fine an hour ago and  I don't know how, but the schema DEV_BIPLATFORM returns the following error when I query as SYSTEM.
    DEV_BIPLATFORM LOGON 17/10/13 12:13:35,715827000 1005
         Does someone knows how can I recreate the password for this schema ?
    Thanks in advance

    I've found the issue. THe archive area from databse server has reached 100%. After it was cleaned up the services started without any error.
    Thanks

  • KUP-01005 error in external table definition

    Hello,
    I'm facing an issue that I found it has been rose in the past but that never had an answer.
    I'm using an external table to load a file on the database.
    This file format is CSV (actually using ";" as delimiter) and it has header and trailer records that has the same format of data records, but contain field names in it.
    E.g.:
    FIELD_NAME1;FIELD_NAME2;...
    I want to discard this records (for the header is easy, I can use SKIP 1 parameter) and the way I was trying to do this was using the following condition:
    LOAD WHEN ( FIELD_NAME1 != "FIELD_NAME1" )
    The problem arises when a record has the first field empty (hence NULL): the record is discarded.
    Therefore I tried modifing the condition in this way:
    LOAD WHEN ( ( FIELD_NAME1 != "FIELD_NAME1" ) OR ( ( FIELD_NAME1 = NULL ) )
    but in this case I get the following error:
    KUP-01005 : syntax error : found "null": expecting on of "blanks, double-quoted-string, hexprefix, identifier, single-quoted-string"
    I've doublechecked Oracle reference and the NULL keyword is admitted - morover it is stated that a NULL value can be tested only against NULL value, otherwise the comparison returns false.
    Can anyone help me solving this issue? Is it a bug in SQLLOADER Driver used by External Tables or an error in Oracle Reference?
    Regards

    It's an other option that I've already tried, but it doesn't work - and it is correct because in External Table statement I've specified to trim fields (LRTRIM), so there's no fields containing blanks (they're simply empty).
    However, my main concern is that I tried to use a statement that should be correct - according to Oracle reference.
    Instead I get an error regarding the syntax of the statement...
    I think that I can workaround this problem - but it is a workaround, not a real solution... :-|

  • ERROR INFO VIEW FWM 01003

    Hi all members,
    I installed BO XI 3.1 on a machine SO WS2003 . After the installation everythings works perfectly.
    After a few months I got an error while attempting to connect to the CMC (error FWM 01003 server not found or may be down).
    When I remove BO and reinstalled it, it works fine, but again after a few days I got the same error message.
    I checked that the CMS is started.
    I can fix this problem change the port (6400) of my CMS  to port 5230 so when i try connect to the CMC perfect but
    when i try connect to the InfoView (Error: Server cundisrv119:6400 not found or server may be down (FWM 01003) null)
    Anyone have a suggestion?
    Regards,
    Cesar Agudelo
    Edited by: Agudelo Cesar Enrique on Aug 11, 2010 6:51 PM

    Hello,
    I have exactly the same problem.
    I met this problem 3 times in 2 months. Every case, I reinstall Oracle Database and BO, but the problem came back.
    At final I'd like to know if you know the cause of this problem ? And how have you resolve it ?
    Thanks !

  • Error while Refreshing Dashboard

    Hi Experts,
    I have created a Dashboard from a Webi report using Live Office... The reports consists of prompts for year which is bounded with an excel cell.
    Now in the Preview mode when i am trying to select another Year Value, The dashboard is showing an error as follows
    "unable to open socket to talk to CMS ####:8080 (FWM 01005)"
    Referring to some other posts in SDN i figured out that exporting the Dashboard to CMS might solve the issue.
    After exporting the Dashboard to CMS when i try to change the Year Value, i am facing the error below:
    "Failed to fetch data provider data. (LO 26306)"
    What might be the possible cause to this error?
    Please Help,
    Thanks & regards,
    NRR

    Hi NRR,
    Xcelsius changes the Data values into String format. You might want to change the format and then pass the date values. Try using the "Datevalue" function in excel to pass the values.
    You could also try checking with the Calendar component.
    Thanks,
    Amit

  • Error -Job scheduling

    Hi
    I am getting the following error while scheduling job using OEM:
    SQL*Plus: Release 9.2.0.1.0 - Production on Wed Jun 8 12:22:36 2005
    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
    Enter user-name: ERROR:
    ORA-28009: connection to sys should be as sysdba or sysoper
    Enter user-name: Enter password: ERROR:
    ORA-01005: null password given; logon denied
    Enter user-name:
    ora-28009: connection to sys should be as sysdba or sysoper
    Can anybody help me in resolving this issue.
    TIA
    Aqueel.

    Don't connect as SYS, it should not be used for such daily tasks. Use a non-SYSDBA user, if you use SYS it must be a connection as SYSDBA (9i and higher), this is not possible in all OEM areas, so this error message occurs.

  • Crystal Report scheduling error in 3.0, intermittently!

    Has anyone gotten this error while scheduling reports on 3.0?  My client is experiencing very frustrating issue with cr2008 and xi3.0
    When reports are schedule, sometimes they would get errors such as:
    An error has occurred: The object with ID 234211, Title "Test Report", Kind "CrystalReport" has changed since last query (FWM 02050)
    To replicate this, locate a report that has prompts (LOV).  Go to InfoView and View the report on demand (or click on schedule) so it brings up the prompt page.  Leave the prmopt page up, open another instance of InfOView or go to CMC, and schedule this report to run now.  let it finish. the implication of this is that it will update the parent's last runtime property.
    Then return back to the original browser (the one with the prompt page opened), click to select some of the prompts.  it will error out while you are selectin the prompt
    When we receive this error in Infoview, the java error when i "view source" is as follow;
    <!--ERROR: The object with ID 125843 , Title &#034;Test Report&#034;, Kind &#034;CrystalReport&#034; has changed since last query (FWM 02050)-->
    <!--com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.applyDelta(InfoObject.java:1627)
    com.crystaldecisions.sdk.occa.infostore.internal.InfoObject.applyDelta(InfoObject.java:1530)
    com.businessobjects.clientaction.crystalreport.shared.AbstractReportAction.applyDelta(AbstractReportAction.java:114)
    com.businessobjects.clientaction.crystalreport.parameters.ReportScheduleParamAction.autoWrapPerform(ReportScheduleParamAction.java:132)
    com.businessobjects.webutil.struts.CheckSessionAction.process(CheckSessionAction.java:79)
    com.businessobjects.webutil.struts.CheckSessionAction.perform(CheckSessionAction.java:59)
    org.apache.struts.action.ActionServlet.processActionPerform(ActionServlet.java:1787)
    org.apache.struts.action.ActionServlet.process(ActionServlet.java:1586)
    com.businessobjects.webutil.struts.CrystalUTF8InputActionServlet.process(CrystalUTF8InputActionServlet.java:32)
    org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:510)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    java.lang.Thread.run(Thread.java:595)
    -->
    Once the above issue happens a few times, the CrystalReportProcessing Server would lock up and users will start to experience this error:
    Error - Unable to create report page
    Once this happens no one is able to view the report again unless we restart the Crystal Report Processing Servers
    has anyone experienced this?
    thanks
    Simon

    Morning Simon,
    The source doesn't seem to be showing any error message or explaining anything however the error FWM 02050 might say something. Have you searched the Wiki or Articles about this?
    Personally I have not seen this type of error before however it seems that either the source or the layout of the report gets changed and hence it errors out as it does not match with the source.
    For example, in the report maybe there is a dynamic parameter which gets changed occasionally or any other report object which has a source linked gets changed.
    Does this happen only with one report or all the reports?
    Does anyone change the reports?
    How many dynamic or static params are there in the report?
    How is the report connected (odbc or any other means?)
    Does the server react like this with other reports as well?
    Here is the list for error message from BO you might it find handy
    [help.sap.com/businessobject/product_guides/boexir3/en/xi3_error_message_guide_en.pdf]
    I think we need to investigate first where the problem is generating from and then find out about this error.
    Regards
    Jehanzeb
    Edited by: Jehanzeb Navid on Oct 15, 2008 8:48 AM
    Here what error given above says
    The object with ID , Title "", Kind "" has changed since last query
    (FWM 02050)
    Cause
    The required object has changed since the last query.
    Action
    Query the InfoObject again.
    Maybe the end user is not query the report properly?

Maybe you are looking for

  • No face time in ipad air form UAE

    Recently i purchased iPad air 128GB from du store Dubai. I couldn't find facetime application in my iPad and many web forums saying it is not possible to use facetime even out side UAE. Is it like that? Apple store in UAE site cleary showing face tim

  • SAP B1 2007A PL05 on 64 bit  OS & SQL2005 Interfaces don't work

    We have installed SAP B1 2007 PL05 on 64 bit windows with 64 bit SQL2005 SP2. We have an interface to a Warehouse management system (Radio Beacon) and a custom interface to a legacy system.  The interfaces don't work.  We can not connect to the DIAPI

  • How to build labview global variable into dll?And how to use it in vc++ program?

    Hi!    I want to build labview application into dll and use vc++ to call it.The labview program is a little complex,for it has many interface to vc++ and has while loop in it.When I use vc++ to call it,I must use vc++ to do other things.That is to sa

  • Why is InDeisgn so (memory) hungry?

    Hi there. I am working on a document that is 16 pages long, with only text- no graphics, but Task manager says that Indesign is eating up 421MBs of Memory. I have 2 other documents open, but they are both one page long, with only a bit of text. Whene

  • Dreamweaver error DW051 and  Media DB Error : 12

    Im using windows 8 asus laptop with slight less resolution  and trying to download adobe dreamweaver cs6 . This shows up Exit Code: 15 Please see specific errors and warnings below for troubleshooting. For example,  ERROR: DW051 ... -----------------