Open MQ 4.3 "Bad transaction state transition"

We have Open MQ 4.3 in remote, enhanced cluster. We are seeing ERRORs and WARNINGs in broker log file. They occur sporadically, once every couple hours or so. I think they might be related. Anyone have an idea what the problems may be?
1) "Bad transaction state transition"
[30/Jun/2009:00:48:12 EDT] ERROR com.sun.messaging.jmq.jmsserver.util.BrokerException: Bad transaction state transition. Cannot perform operation PREPARE_TRANSACTION(56) (XAFlag=null) on a transaction in state STARTED(1).: TUID=8284690576893811200 Xid=62726970706C303130302E6263627372692E6F72672C7365727665722C5032363137332C00E11C0000CD99242E62726970706C303130302E6263627372692E6F72672C7365727665722C503236313733:
com.sun.messaging.jmq.jmsserver.util.BrokerException: Bad transaction state transition. Cannot perform operation PREPARE_TRANSACTION(56) (XAFlag=null) on a transaction in state STARTED(1).
at com.sun.messaging.jmq.jmsserver.data.TransactionState.nextState(TransactionState.java:440)
at com.sun.messaging.jmq.jmsserver.data.handlers.TransactionHandler.doPrepare(TransactionHandler.java:1625)
at com.sun.messaging.jmq.jmsserver.data.handlers.TransactionHandler.handle(TransactionHandler.java:551)
at com.sun.messaging.jmq.jmsserver.data.PacketRouter.handleMessage(PacketRouter.java:181)
at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.readData(IMQIPConnection.java:1489)
at com.sun.messaging.jmq.jmsserver.service.imq.IMQIPConnection.process(IMQIPConnection.java:644)
at com.sun.messaging.jmq.jmsserver.service.imq.OperationRunnable.process(OperationRunnable.java:170)
at com.sun.messaging.jmq.jmsserver.util.pool.BasicRunnable.run(BasicRunnable.java:493)
at java.lang.Thread.run(Thread.java:595)
2) "ROLLBACK_TRANSACTION(48): Ignoring unknown XID"
[29/Jun/2009:22:54:34 EDT] WARNING ROLLBACK_TRANSACTION(48): Ignoring unknown XID=62726970706C303130302E6263627372692E6F72672C7365727665722C5032363137332C0006140000CD99242E62726970706C303130302E6263627372692E6F72672C7365727665722C503236313733 broker will notify the client
3) "Heartbeat timeout"
[29/Jun/2009:22:54:14 EDT] WARNING [B2122]: Heartbeat timeout from /192.168.106.192:32000 [brokerID=jmsnode_brippl0301, brokerSession=8155493556708599552] (seq#=7856, ts=1246330447089, interval=2, len=231) sender=/192.168.106.192:57964
Steve

Your question has also been posted to mq-interest alias with broker/appserver log files. The following is based on the log files:
1) "Bad transaction state transition"
The server.log you provided shows that right before this exception, there was appserver exception as below. It appears that something was wrong with the application/appserver state:
[#|2009-06-29T19:03:32.253-0400|WARNING|sun-appserver9.1|javax.enterprise.system.core.transaction|_ThreadID=22;_ThreadName=JMSJCA sync #0(queRouterRequest);Context=RouterJMS_ESB_R1_0032_PPMO_090626/queRouterRequest_svcBpRouterJMS_ejb;_RequestID=f92d8d20-1abb-4c0b-b6eb-cd205eabcd37;|JTS5041: The resource manager is doing work outside a global transaction
javax.transaction.xa.XAException
2) "ROLLBACK_TRANSACTION(48): Ignoring unknown XID"
This can be ignored. By looking at a couple of such WARNING messages in the broker log you provided
- The transaction was cleaned up on client connection closing and then the client reconnects, appserver attempts to rollback the old transaction.
3) "Heartbeat timeout"
This will be logged if the broker didn't receive heartbeat from the other broker for configured timeout period. This can happen occasionally due to network fluctuation. The heartbeat timeout values can be adjusted by broker "Failure Detection Properties"
http://docs.sun.com/app/docs/doc/820-6740/gguju?a=view

Similar Messages

  • How can I open a cursor for dynamic sql statement

    Hi,
    I'm facing issues opening a cursor for dynamic sql statement : PLS-00455: cursor 'RESULT1' cannot be used in dynamic SQL OPEN statement.
    CREATE OR REPLACE FUNCTION DEMO
    (MN_I in VARCHAR)
    return AB_OWNER.ABC_Type.NonCurTyp is
    RESULT1 AB_OWNER.ABC_Type.NonCurTyp;
    sql_stmt VARCHAR2(4000);
    BEGIN
    sql_stmt := 'SELECT * FROM AB_OWNER.DUN WHERE JZ_I in ('||mn_i||') ORDER BY app.ACC_I';
    OPEN RESULT1 FOR sql_stmt;
    END IF;
    return RESULT1;
    END DEMO;
    What changes should I make in the code so that it doesn't fail? I can't change the definition of RESULT1 cursor though.

    Gangadhar Reddy wrote:
    I used SYS REFCURSOR and was able to implement successfully.How many times did you run this successful implementation that does not use bind variables?
    Because this is what will happen when it runs a lot.
    http://download.oracle.com/docs/cd/E11882_01/server.112/e17766/e2100.htm#sthref1874
    http://forums.oracle.com/forums/search.jspa?q=%2BORA-04031%20%2Bbind&objID=c84&dateRange=all&rankBy=10001&start=30
    And you will have to regularly restart the server, or possibly slightly less invasive, flush the shared pool.
    Flushing Shared Pool regularly
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1516005546092
    >
    Ok, this is an easy one to diagnose.
    You are not using bind variables. This is terrible. Flushing the shared pool is a bad
    solution -- you are literally killing the performance on your box by not using them.
    If I was to write a book on how to build “non scalable applications in Oracle”, this
    would be the first and last chapter. This is a major cause of performance issues and a
    major inhibitor of scalability in Oracle. The way the Oracle shared pool (a very
    important shared memory data structure) operates is predicated on developers using bind
    variables. If you want to make Oracle run slowly, even grind to a total halt – just
    refuse to use them.
    >
    But, please feel free to go ahead with this successful implementation.
    I just hope anyone else who reads this doesn't make the same mistake.

  • No JDBC connection can be made (transaction state is Committing)

     

    Hi. This seems to be a case where your EJB transaction has obtained a jts
    JDBC connection, but done no JDBC at all by the time the transaction is committing.
    Is this possible? Nevertheless our EJB code is calling commit on on the jts
    connection. Any first JDBC call on a jts connection is the one which actually
    obtains the underlying pool connection, but this is being disallowed because
    the tx is already being committed. I remember this being fixed a while ago,
    so this may be a regression. Do file an official tech support case. Meanwhile,
    I'll look into it.
    Joe
    Chetan Desai wrote:
    >
    Even we get these messages after a while the WL server is up and running. We are
    using ver.6.1
    Any help/suggestions?
    -Chetan.
    Joseph Weinstein <[email protected]> wrote:
    Hi Roman. What version of our product are you using?
    Joe
    Roman Puttkammer wrote:
    after some (presumably unrelated?) code changes, the weblogic server
    seems to be
    unable to open a connection to the database while calling an EJB method.
    Even though
    previously established connections already exist.
    The exact error message text is
    java.sql.SQLException: No JDBC connection can be made because the
    transaction
    state is Committing
    The complete stack trace follows below. Does anybody have an idea what
    we're
    doing wrong?
    any help is appreciated!
    roman
    java.sql.SQLException: No JDBC connection can be made because the
    transaction state is Committing
    at
    weblogic.jdbcbase.jts.Connection.openConnectionIfNecessary(Connection.java:536)
    at weblogic.jdbcbase.jts.Connection.commit(Connection.java:465)
    at
    weblogic.jdbcbase.jts.TxConnection.commitOnePhase(TxConnection.java:53)
    at
    weblogic.jts.internal.CoordinatorImpl.commitSecondPhase(CoordinatorImpl.java:403)
    at
    weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:306)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:228)
    at
    weblogic.ejb.internal.StatefulEJBObject.postInvokeOurTx(StatefulEJBObject.java:204)
    at
    weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:285)
    at
    com.multex.EJB.security.ListedSecurityEJBEOImpl.getSecurityTypeCode(ListedSecurityEJBEOImpl.java:198)
    at
    com.multex.EJB.security.FinancialInstrumentFacade.getSecurityTypeCode(FinancialInstrumentFacade.java:88)
    at
    com.multex.beans.security.FinancialInstrumentFunctorBuilder.createFinancialInstrumentFunctor(FinancialInstrumentFunctorBuilder.ja
    va:43)
    at
    com.multex.beans.security.FinancialInstrumentFunctorBuilder.createFinancialInstrumentFunctor(FinancialInstrumentFunctorBuilder.ja
    va:73)
    at
    com.multex.beans.portfolio.HoldingFunctorBuilder.createHoldingFunctor(HoldingFunctorBuilder.java:86)
    at
    com.multex.beans.portfolio.HoldingFunctorBuilder.createHoldingFunctors(HoldingFunctorBuilder.java:140)
    at
    com.multex.beans.portfolio.AccountFunctorBuilder.setUpHoldingFunctors(AccountFunctorBuilder.java:46)
    at
    com.multex.beans.portfolio.AccountFunctorBuilder.createAccountFunctor(AccountFunctorBuilder.java:67)
    at
    com.multex.beans.portfolio.AccountFunctorBuilder.createAccountFunctors(AccountFunctorBuilder.java:93)
    at
    com.multex.beans.portfolio.PortfolioFunctorBuilder.setUpAccountFunctors(PortfolioFunctorBuilder.java:78)
    at
    com.multex.beans.portfolio.PortfolioFunctorBuilder.createPortfolioFunctor(PortfolioFunctorBuilder.java:100)
    at
    com.multex.beans.portfolio.PortfolioFunctorBuilder.createPortfolioFunctors(PortfolioFunctorBuilder.java:61)
    at
    com.multex.beans.portfolio.PortfolioUserFunctorBuilder.createPortfolioUserFunctor(PortfolioUserFunctorBuilder.java:90)
    at
    com.multex.beans.portfolio.PortfolioApp.createPortfolioUserFunctor(PortfolioApp.java:208)
    at
    com.multex.beans.portfolio.PortfolioApp.setUserId(PortfolioApp.java:41)
    at
    com.multex.beans.portfolio.MinPortfolioApp.setUserId(MinPortfolioApp.java:94)
    at
    com.multex.beans.session.UserSession.init(UserSession.java:168)
    at
    com.multex.beans.session.UserSession.<init>(UserSession.java:51)
    at
    com.multex.EJB.session.UserSessionEJB.createSession(UserSessionEJB.java:226)
    at
    com.multex.EJB.session.UserSessionEJB.ejbLoad(UserSessionEJB.java:157)
    at
    weblogic.ejb.internal.EntityEJBContext.load(EntityEJBContext.java:130)
    at
    weblogic.ejb.internal.EntityEJBContext.afterBegin(EntityEJBContext.java:165)
    at
    weblogic.ejb.internal.StatefulEJBObject.getContextForInvoke(StatefulEJBObject.java:115)
    at
    weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:174)
    at
    com.multex.EJB.session.UserSessionEJBEOImpl.isNew(UserSessionEJBEOImpl.java:196)
    at
    com.multex.EJB.session.UserSessionFacadeEJB.isNew(UserSessionFacadeEJB.java:128)
    at com.multex.servlets.session.Servlet.doGet(Servlet.java:158)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:715)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:840)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:75)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:286)
    at
    weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:238)
    at
    weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:501)
    at
    weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:260)
    at weblogic.t3.srvr.ExecuteThread.run(ExecuteThread.java:106)--
    The Weblogic Application Server from BEA
    JavaWorld Editor's Choice Award: Best Web Application Server
    Java Developer's Journal Editor's Choice Award: Best Web Application
    Server
    Crossroads A-List Award: Rapid Application Development Tools for
    Java
    Intelligent Enterprise RealWare: Best Application Using a Component Architecture
    http://weblogic.beasys.com/press/awards/index.htm

  • CLI0116E  Invalid transaction state

    Using IBM DB2 7.2 Type 4 driver with kodo 2.5.3
    ( same source code, same configuration, if swich to type 3 driver, no
    exception but performance drops )
    <config-property>
    <config-property-name>ConnectionDriverName</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>COM.ibm.db2.jdbc.app.DB2Driver</config-property-value>
    </config-property>
    <config-property>
    <config-property-name>ConnectionRetainMode</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>transaction</config-property-value>
    </config-property>
    Receiving exception every time closing PM
    08:47:32,777 WARN [JDBC] [ C:null; T:20911989; D:32017535 ] exception
    when closing connection
    COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver] CLI0116E Invalid
    transaction state. SQLSTATE=25000
    at
    COM.ibm.db2.jdbc.app.SQLExceptionGenerator.throw_SQLException(SQLExceptionGenerator.java:183)
    at
    COM.ibm.db2.jdbc.app.SQLExceptionGenerator.check_return_code(SQLExceptionGenerator.java:428)
    at
    COM.ibm.db2.jdbc.app.DB2Connection.close2(DB2Connection.java:846)
    at COM.ibm.db2.jdbc.app.DB2Connection.close(DB2Connection.java:812)
    at
    com.solarmetric.datasource.ConnectionWrapper.close(ConnectionWrapper.java:288)
    at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.close(DataSourceImpl.java:769)
    at
    com.solarmetric.datasource.DataSourceImpl.close(DataSourceImpl.java:398)
    at
    com.solarmetric.datasource.DataSourceImpl.close(DataSourceImpl.java:372)
    at
    com.solarmetric.datasource.PoolConnection.close(PoolConnection.java:70)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.close(SQLExecutionManagerImpl.java:832)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.release(JDBCStoreManager.java:877)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.release(JDBCStoreManager.java:842)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.releaseDatastoreConnection(JDBCStoreManager.java:298)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.releaseDatastoreConnection(DataCacheStoreManager.java:471)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.load(DataCacheStoreManager.java:656)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadField(StateManagerImpl.java:2248)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.isLoaded(StateManagerImpl.java:899)
    at
    com.stercomm.UPCAP.biztier.persistence.ProposalPriceObjectDAO.jdoGetsalesManager(ProposalPriceObjectDAO.java)
    at
    com.stercomm.UPCAP.biztier.persistence.ProposalPriceObjectDAO.getSalesManager(ProposalPriceObjectDAO.java:400)
    at
    com.stercomm.UPCAP.biztier.ejb.impl.ProposalBean.getProposalDetails(ProposalBean.java:3186)
    at sun.reflect.GeneratedMethodAccessor297.invoke(Unknown Source)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:660)
    at
    org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:186)
    at
    org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:77)
    at
    org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:107)
    at
    org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:210)
    at
    org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:98)
    at
    org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:130)
    at
    org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:208)
    at
    org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.java:313)
    at org.jboss.ejb.Container.invoke(Container.java:738)
    at
    org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
    at
    org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:383)
    at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at
    sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:536)

    Zhiqiang-
    If you increase your MaxPool size to something high, does this still
    happen? If you use JBoss' own DataSource, does it happen?
    In article <[email protected]>, Zhiqiang wrote:
    The system locks on some tables after a while. -- can not search/update
    The App server is JBOSS 3.0.7
    Marc Prud'hommeaux wrote:
    Zhiqiang-
    Odd, I haven't seen that one before. However, since this is just a
    warning message, you should be able to ignore it (you can decrease the
    logging verbosity of the JDBC channel if you don't want to see it). The
    error shouldn't cause any serious problems; if you are seeing bad
    behavior because of it, please let us know.
    Also, I bet that increasing your MaxSize for the connection pool will
    help reduce the frequency in which this occurs (since it only looks like
    it is happening when the connection is getting booted out of the pool).
    In article <[email protected]>, Zhiqiang wrote:
    Using IBM DB2 7.2 Type 4 driver with kodo 2.5.3
    ( same source code, same configuration, if swich to type 3 driver, no
    exception but performance drops )
    <config-property>
    <config-property-name>ConnectionDriverName</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>COM.ibm.db2.jdbc.app.DB2Driver</config-property-value>
    </config-property>
    <config-property>
    <config-property-name>ConnectionRetainMode</config-property-name>
    <config-property-type>java.lang.String</config-property-type>
    <config-property-value>transaction</config-property-value>
    </config-property>
    Receiving exception every time closing PM
    08:47:32,777 WARN [JDBC] [ C:null; T:20911989; D:32017535 ] exception
    when closing connection
    COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver] CLI0116E Invalid
    transaction state. SQLSTATE=25000
    at
    COM.ibm.db2.jdbc.app.SQLExceptionGenerator.throw_SQLException(SQLExceptionGenerator.java:183)
    at
    COM.ibm.db2.jdbc.app.SQLExceptionGenerator.check_return_code(SQLExceptionGenerator.java:428)
    at
    COM.ibm.db2.jdbc.app.DB2Connection.close2(DB2Connection.java:846)
    at COM.ibm.db2.jdbc.app.DB2Connection.close(DB2Connection.java:812)
    at
    com.solarmetric.datasource.ConnectionWrapper.close(ConnectionWrapper.java:288)
    at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.close(DataSourceImpl.java:769)
    at
    com.solarmetric.datasource.DataSourceImpl.close(DataSourceImpl.java:398)
    at
    com.solarmetric.datasource.DataSourceImpl.close(DataSourceImpl.java:372)
    at
    com.solarmetric.datasource.PoolConnection.close(PoolConnection.java:70)
    at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.close(SQLExecutionManagerImpl.java:832)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.release(JDBCStoreManager.java:877)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.release(JDBCStoreManager.java:842)
    at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.releaseDatastoreConnection(JDBCStoreManager.java:298)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.releaseDatastoreConnection(DataCacheStoreManager.java:471)
    at
    com.solarmetric.kodo.runtime.datacache.DataCacheStoreManager.load(DataCacheStoreManager.java:656)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadField(StateManagerImpl.java:2248)
    at
    com.solarmetric.kodo.runtime.StateManagerImpl.isLoaded(StateManagerImpl.java:899)
    at
    com.stercomm.UPCAP.biztier.persistence.ProposalPriceObjectDAO.jdoGetsalesManager(ProposalPriceObjectDAO.java)
    at
    com.stercomm.UPCAP.biztier.persistence.ProposalPriceObjectDAO.getSalesManager(ProposalPriceObjectDAO.java:400)
    at
    com.stercomm.UPCAP.biztier.ejb.impl.ProposalBean.getProposalDetails(ProposalBean.java:3186)
    at sun.reflect.GeneratedMethodAccessor297.invoke(Unknown Source)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    org.jboss.ejb.StatelessSessionContainer$ContainerInterceptor.invoke(StatelessSessionContainer.java:660)
    at
    org.jboss.resource.connectionmanager.CachedConnectionInterceptor.invoke(CachedConnectionInterceptor.java:186)
    at
    org.jboss.ejb.plugins.StatelessSessionInstanceInterceptor.invoke(StatelessSessionInstanceInterceptor.java:77)
    at
    org.jboss.ejb.plugins.AbstractTxInterceptor.invokeNext(AbstractTxInterceptor.java:107)
    at
    org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.java:210)
    at
    org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:98)
    at
    org.jboss.ejb.plugins.SecurityInterceptor.invoke(SecurityInterceptor.java:130)
    at
    org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:208)
    at
    org.jboss.ejb.StatelessSessionContainer.invoke(StatelessSessionContainer.java:313)
    at org.jboss.ejb.Container.invoke(Container.java:738)
    at
    org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:517)
    at
    org.jboss.invocation.jrmp.server.JRMPInvoker.invoke(JRMPInvoker.java:383)
    at sun.reflect.GeneratedMethodAccessor42.invoke(Unknown Source)
    at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at
    sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:261)
    at sun.rmi.transport.Transport$1.run(Transport.java:148)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.rmi.transport.Transport.serviceCall(Transport.java:144)
    at
    sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:460)
    at
    sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:701)
    at java.lang.Thread.run(Thread.java:536)
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com
    Marc Prud'hommeaux [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Cannot open Payment Usage in FBL5N transaction as FI document is archived

    Hi,
    I can't open Payment Usage in FBL5N transaction (from Environment - Payment Usage)  to drilldown from the document to its related invoices as this payment/clearing document has been archived . Is there any other way to find this relationship between the payment/clearing document and invoices? Can we find this information from SARA, archiving object FI_DOCYMNT? Please advise.
    Thanks.

    Hi,
    In order to find that information you can use transaction SARI. For archiving object FI_DOCUMNT, you need to have one of its related infostructures (SAP_FI_DOC_002 or SAP_FI_DOC_DRB1) activated and filled in order to access the archived data.
    In SARI, click on "Archive Explorer" button and then enter the data for archiving object and archive infostructure, then execute and look for the archived data you are interested (you'll have access to archive data from table BSAD for example).
    Hope this helps.

  • "Bad page state in process swapper" with Oracle Linux 5.9

    Dear All,
    We got "localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e" when booting Oracle Linux 5.9.
    The system is installed with -
    1. CPU: 2 x Xeon E5-2690
    2. Mem: 384 GB
    3. QLE 2562 FC
    4. Oracle Linux 5.9 (64-bit) (2.6.39-300.26.1.el5uek)
    5. mutlipath enabled
    6. kernel created with (mkinitrd -v -f --with=sd-mod with=dm-multipath /boot/initrd-2.6.39-300.06.1.el5uek.img $(uname -r))
    Below is part of the log file.
    Did you have the idea what cause the issue?
    Regards,
    CL
    Nov  1 11:03:04 localhost syslogd 1.4.1: restart.
    Nov  1 11:03:04 localhost kernel: klogd 1.4.1, log source = /proc/kmsg started.
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpuset
    Nov  1 11:03:04 localhost kernel: Initializing cgroup subsys cpu
    Nov  1 11:03:04 localhost kernel: Linux version 2.6.39-300.26.1.el5uek ([email protected]) (gcc version 4.1.2 20080704 (Red Hat 4.1.2-52)) #1 SMP Thu Jan 3 18:31:38 PST 2013
    Nov  1 11:03:04 localhost kernel: Command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:04 localhost kernel: BIOS-provided physical RAM map:
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000000000 - 000000000009a400 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000000009a400 - 00000000000a0000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 0000000000100000 - 000000007df4c000 (usable)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df4c000 - 000000007df89000 (reserved)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007df89000 - 000000007e01c000 (ACPI data)
    Nov  1 11:03:04 localhost kernel:  BIOS-e820: 000000007e01c000 - 000000007e240000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007e240000 - 000000007f34c000 (reserved)
    Nov  1 11:03:05 localhost cpuspeed: Enabling ondemand cpu frequency scaling governor
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 000000007f34c000 - 000000007f800000 (ACPI NVS)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000080000000 - 0000000090000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000fed1c000 - 00000000fed40000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    Nov  1 11:03:05 localhost kernel:  BIOS-e820: 0000000100000000 - 0000006080000000 (usable)
    Nov  1 11:03:06 localhost kernel: NX (Execute Disable) protection: active
    Nov  1 11:03:06 localhost kernel: SMBIOS 2.7 present.
    Nov  1 11:03:06 localhost rpc.statd[5742]: Version 1.0.9 Starting
    Nov  1 11:03:06 localhost kernel: No AGP bridge found
    Nov  1 11:03:06 localhost kernel: last_pfn = 0x6080000 max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost hcid[5810]: Bluetooth HCI daemon
    Nov  1 11:03:07 localhost hcid[5810]: Register path:/org/bluez fallback:1
    Nov  1 11:03:07 localhost sdpd[5814]: Bluetooth SDP daemon
    Nov  1 11:03:07 localhost kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    Nov  1 11:03:07 localhost kernel: total RAM covered: 393216M
    Nov  1 11:03:07 localhost kernel: Found optimal setting for mtrr clean up
    Nov  1 11:03:07 localhost kernel:  gran_size: 64K chunk_size: 64K num_reg: 9   lose cover RAM: 0G
    Nov  1 11:03:07 localhost kernel: last_pfn = 0x7df4c max_arch_pfn = 0x400000000
    Nov  1 11:03:07 localhost pcscd: pcscdaemon.c:507:main() pcsc-lite 1.4.4 daemon ready.
    Nov  1 11:03:07 localhost kernel: found SMP MP-table at [ffff8800000fdb60] fdb60
    Nov  1 11:03:07 localhost kernel: Using GB pages for direct mapping
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000000000000-000000007df4c000
    Nov  1 11:03:07 localhost kernel: init_memory_mapping: 0000000100000000-0000006080000000
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:402:HPEstablishUSBNotifications() Driver ifd-egate.bundle does not support IFD_GENERATE_HOTPLUG. Using active polling instead.
    Nov  1 11:03:08 localhost pcscd: hotplug_libusb.c:411:HPEstablishUSBNotifications() Polling forced every 1 second(s)
    Nov  1 11:03:07 localhost kernel: RAMDISK: 3795a000 - 37ff0000
    Nov  1 11:03:08 localhost kernel: ACPI: RSDP 00000000000f0490 00024 (v02 ACRSYS)
    Nov  1 11:03:08 localhost kernel: ACPI: XSDT 000000007dfa6090 0009C (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FACP 000000007dfafb10 000F4 (v04 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: DSDT 000000007dfa61b8 09956 (v02 ACRSYS ACRPRDCT 00000000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: FACS 000000007e23df80 00040
    Nov  1 11:03:08 localhost kernel: ACPI: APIC 000000007dfafc08 00224 (v03 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: FPDT 000000007dfafe30 00044 (v01 ACRSYS ACRPRDCT 00000001 AMI  00010013)
    Nov  1 11:03:08 localhost kernel: ACPI: SRAT 000000007dfafe78 004B0 (v01 A M I  AMI SRAT 00000001 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SLIT 000000007dfb0328 00030 (v01 A M I  AMI SLIT 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HPET 000000007dfb0358 00038 (v01 ACRSYS ACRPRDCT 00000001 AMI. 00000005)
    Nov  1 11:03:08 localhost kernel: ACPI: PRAD 000000007dfb0390 000BE (v02 PRADID  PRADTID 00000001 MSFT 04000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SPMI 000000007dfb0450 00040 (v05 A M I   OEMSPMI 00000000 AMI. 00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: SSDT 000000007dfb0490 6B344 (v02  INTEL    CpuPm 00004000 INTL 20091112)
    Nov  1 11:03:08 localhost kernel: ACPI: EINJ 000000007e01b7d8 00130 (v01    AMI AMI EINJ 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: ERST 000000007e01b908 00230 (v01  AMIER AMI ERST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: HEST 000000007e01bb38 000A8 (v01    AMI AMI HEST 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: BERT 000000007e01bbe0 00030 (v01    AMI AMI BERT 00000000      00000000)
    Nov  1 11:03:08 localhost kernel: ACPI: DMAR 000000007e01bc10 00178 (v01 A M I   OEMDMAR 00000001 INTL 00000001)
    Nov  1 11:03:08 localhost kernel: ACPI: MCFG 000000007e01bd88 0003C (v01 ACRSYS ACRPRDCT 00000001 MSFT 00000097)
    Nov  1 11:03:08 localhost kernel: NUMA turned off
    Nov  1 11:03:09 localhost kernel: Faking a node at 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel: Initmem setup node 0 0000000000000000-0000006080000000
    Nov  1 11:03:09 localhost kernel:   NODE_DATA [000000607ffd9000 - 000000607fffffff]
    Nov  1 11:03:09 localhost kernel: Zone PFN ranges:
    Nov  1 11:03:09 localhost kernel:   DMA      0x00000010 -> 0x00001000
    Nov  1 11:03:09 localhost kernel:   DMA32    0x00001000 -> 0x00100000
    Nov  1 11:03:09 localhost kernel:   Normal   0x00100000 -> 0x06080000
    Nov  1 11:03:09 localhost kernel: Movable zone start PFN for each node
    Nov  1 11:03:09 localhost kernel: early_node_map[3] active PFN ranges
    Nov  1 11:03:09 localhost kernel:     0: 0x00000010 -> 0x0000009a
    Nov  1 11:03:09 localhost kernel:     0: 0x00000100 -> 0x0007df4c
    Nov  1 11:03:09 localhost kernel:     0: 0x00100000 -> 0x06080000
    Nov  1 11:03:10 localhost kernel: ACPI: PM-Timer IO Port: 0x408
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x04] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x06] lapic_id[0x06] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x10] lapic_id[0x20] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x12] lapic_id[0x22] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x14] lapic_id[0x24] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x16] lapic_id[0x26] enabled)
    Nov  1 11:03:10 localhost kernel: ACPI: LAPIC (acpi_id[0x18] lapic_id[0x28] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1a] lapic_id[0x2a] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1c] lapic_id[0x2c] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x1e] lapic_id[0x2e] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
    Nov  1 11:03:11 localhost kernel: ACPI: LAPIC (acpi_id[0x05] lapic_id[0x05] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] enabled)
    Nov  1 11:03:12 localhost kernel: ACPI: LAPIC (acpi_id[0x11] lapic_id[0x21] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x13] lapic_id[0x23] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x15] lapic_id[0x25] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x17] lapic_id[0x27] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x19] lapic_id[0x29] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1b] lapic_id[0x2b] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1d] lapic_id[0x2d] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC (acpi_id[0x1f] lapic_id[0x2f] enabled)
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
    Nov  1 11:03:13 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
    Nov  1 11:03:14 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
    Nov  1 11:03:15 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
    Nov  1 11:03:15 localhost hidd[5960]: Bluetooth HID daemon
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    Nov  1 11:03:15 localhost kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x02] address[0xfec01000] gsi_base[24])
    Nov  1 11:03:15 localhost kernel: IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
    Nov  1 11:03:15 localhost kernel: ACPI: IOAPIC (id[0x03] address[0xfec40000] gsi_base[48])
    Nov  1 11:03:15 localhost kernel: IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    Nov  1 11:03:15 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    Nov  1 11:03:15 localhost kernel: Using ACPI (MADT) for SMP configuration information
    Nov  1 11:03:15 localhost kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
    Nov  1 11:03:15 localhost kernel: SMP: Allowing 32 CPUs, 0 hotplug CPUs
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009a000 - 000000000009b000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000000009b000 - 00000000000a0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df4c000 - 000000007df89000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007df89000 - 000000007e01c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e01c000 - 000000007e240000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007e240000 - 000000007f34c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f34c000 - 000000007f800000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 000000007f800000 - 0000000080000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000080000000 - 0000000090000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 0000000090000000 - 00000000fed1c000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed1c000 - 00000000fed40000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000fed40000 - 00000000ff000000
    Nov  1 11:03:16 localhost kernel: PM: Registered nosave memory: 00000000ff000000 - 0000000100000000
    Nov  1 11:03:16 localhost automount[5994]: lookup_read_master: lookup(nisplus): couldn't locate nis+ table auto.master
    Nov  1 11:03:16 localhost kernel: Allocating PCI resources starting at 90000000 (gap: 90000000:6ed1c000)
    Nov  1 11:03:16 localhost kernel: Booting paravirtualized kernel on bare hardware
    Nov  1 11:03:17 localhost kernel: setup_percpu: NR_CPUS:4096 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
    Nov  1 11:03:17 localhost kernel: PERCPU: Embedded 26 pages/cpu @ffff88607f200000 s77440 r8192 d20864 u131072
    Nov  1 11:03:17 localhost kernel: Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 99271377
    Nov  1 11:03:17 localhost kernel: Policy zone: Normal
    Nov  1 11:03:17 localhost kernel: Kernel command line: ro root=/dev/mapper/lun_osp3 rhgb  quiet numa=off
    Nov  1 11:03:17 localhost kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
    Nov  1 11:03:17 localhost kernel: xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    Nov  1 11:03:17 localhost kernel: Checking aperture...
    Nov  1 11:03:17 localhost kernel: No AGP bridge found
    Nov  1 11:03:17 localhost kernel: Queued invalidation will be enabled to support x2apic and Intr-remapping.
    Nov  1 11:03:17 localhost kernel: BUG: Bad page state in process swapper  pfn:5e13c2e
    Nov  1 11:03:18 localhost kernel: page:ffffea0149452a10 count:0 mapcount:0 mapping:          (null) index:0x0
    Nov  1 11:03:18 localhost kernel: page flags: 0x20000000000080(slab)
    Nov  1 11:03:18 localhost kernel: Pid: 0, comm: swapper Not tainted 2.6.39-300.26.1.el5uek #1
    Nov  1 11:03:19 localhost kernel: Call Trace:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff811147dd>] bad_page+0x9d/0x120
    Nov  1 11:03:19 localhost gpm[6080]: *** info [startup.c(95)]:
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81114923>] free_pages_prepare+0xc3/0x100
    Nov  1 11:03:19 localhost gpm[6080]: Started gpm successfully. Entered daemon mode.
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118a82>] __free_pages_ok+0x32/0xf0
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81118b60>] __free_pages+0x20/0x30
    Nov  1 11:03:19 localhost kernel:  [<ffffffff815045b6>] __free_pages_bootmem+0x66/0x90
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f13c1>] __free_pages_memory+0x101/0x170
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819f1487>] free_all_memory_core_early+0x57/0x70
    Nov  1 11:03:19 localhost kernel:  [<ffffffff81514605>] ? bad_to_user+0x76f/0x76f
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Found user 'avahi' (UID 70) and group 'avahi' (GID 70).
    Nov  1 11:03:19 localhost kernel:  [<ffffffff819e41a7>] numa_free_all_bootmem+0x87/0xa0
    Nov  1 11:03:19 localhost avahi-daemon[6171]: Successfully dropped root privileges.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819e227b>] mem_init+0x3b/0x110
    Nov  1 11:03:20 localhost avahi-daemon[6171]: avahi-daemon 0.6.16 starting up.
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost avahi-daemon[6171]: WARNING: No NSS support for mDNS detected, consider installing nss-mdns!
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4140>] ? early_idt_handlers+0x140/0x140
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4779>] mm_init+0x9/0x20
    Nov  1 11:03:20 localhost avahi-daemon[6171]: Successfully called chroot().
    Nov  1 11:03:20 localhost kernel:  [<ffffffff819c4ec5>] start_kernel+0x145/0x390

    It could be a hardware issue. I suggest to run Memtest. You can download a free stand-alone disk image, which you can burn to CD from here:
    http://www.memtest86.com/download.htm
    Then burn the iso disk image and restart the computer from the appropriate media. Be sure to follow the instructions of your CD/DVD software to properly burn .ISO images. There is plenty of info on the web.

  • Is there a way to make state transitions/animations of a fl.control states - button for example ?

    Is there a way to make state transitions/animations of a fl.control states - button for example ?
    All I can do now is change the skin design and that's it, I can't animate between states like I can with Flash Builder skins. So is there a way to do that, any technique or I have to create a button component from scratch?
    Thanks!

    simplebuttons have upState etc properties you can use to assign movieclips to the 3 states.  you can use the currentFrame property of movieclps to (appear to) smoothly transition from one state to another.

  • PPP Dialup cnx fails - Mica modem never completes state transitions

    I have a NAS (LAC) serving PPP calls over PSTN for multiple customers and for this particular connection, the call always drops at the 'State Transition to Ranging". I have another CE router succesfully calling the NAS and usingeaxctly the same external modem, so it proves the NAS works correctly.
    What's the 'Ranging state'? What happens here? What causes the Mica modem to go into that state?   Any help to solve this problem will be very much appreciated.
    NAS Details:
    Cisco Internetwork Operating System Software
    IOS (tm) 5300 Software (C5300-J-M), Version 12.3(22), RELEASE SOFTWARE (fc2)
    cisco AS5300 (R4K) processor (revision A.32) with 65536K/16384K bytes of memory.
    NAS Debugging output:
    Mar  1 17:05:22 UTC: VDEV_ALLOCATE: 1/33 is allocated
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x1, cause=0x0
    Mar  1 17:05:22 UTC:  dev in call to isdn : set dnis_collected & fap_notify
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN:(2E41): DEV_INCALL at slot 1, port 33
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: decode:calling oct3 0x21, called oct3 0xA1, oct3a 0x83,mask 0x3F
    Mar  1 17:05:22 UTC: EVENT_FROM_ISDN: csm_call_info:calling oct3 0x21, called oct3 0xA1, oct3a 0x83,mask 0x3F
    Mar  1 17:05:22 UTC: CSM_PROC_IDLE: CSM_EVENT_ISDN_CALL at slot 1, port 33
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Configure(0x1 = 0x0)
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Configure(0x23 = 0x0)
    Mar  1 17:05:22 UTC: Mica Modem(1/33): Call Setup
    Mar  1 17:05:22 UTC: csm_connect_pri_vdev: TS allocated at bp_stream 1, bp_Ch 3, vdev_common 0x61D53E9C 1/33
    Mar  1 17:05:23 UTC: Mica Modem(1/33): State Transition to Call Setup
    Mar  1 17:05:23 UTC: Mica Modem(1/33): Went offhook
    Mar  1 17:05:23 UTC: CSM_PROC_IC2_RING: CSM_EVENT_MODEM_OFFHOOK at slot 1, port 33
    Mar  1 17:05:23 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x4, cause=0x0
    Mar  1 17:05:23 UTC: EVENT_FROM_ISDN:(2E41): DEV_CONNECTED at slot 1, port 33
    Mar  1 17:05:23 UTC: CSM_PROC_IC6_WAIT_FOR_CONNECT: CSM_EVENT_ISDN_CONNECTED at slot 1, port 33
    Mar  1 17:05:23 UTC: Mica Modem(1/33): Link Initiate
    Mar  1 17:05:23 UTC: %ISDN-6-CONNECT: Interface Serial0:13 is now connected to 02155915479 N/A
    Mar  1 17:05:24 UTC: Mica Modem(1/33): State Transition to Connect
    Mar  1 17:05:24 UTC: Mica Modem(1/33): State Transition to V8bis Exchange
    Mar  1 17:05:28 UTC: Mica Modem(1/33): State Transition to Link
    Mar  1 17:05:32 UTC: Mica Modem(1/33): State Transition to Ranging <- !!!!!! Call drops here *******
    Mar  1 17:05:59 UTC: %ISDN-6-DISCONNECT: Interface Serial0:13  disconnected from 02155915479 , call lasted 36 seconds
    Mar  1 17:05:59 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x0, cause=0x10
    Mar  1 17:05:59 UTC: EVENT_FROM_ISDN:(2E41): DEV_IDLE at slot 1, port 33
    Mar  1 17:05:59 UTC: CSM_PROC_IC7_OC6_CONNECTED: CSM_EVENT_ISDN_DISCONNECTED at slot 1, port 33
    Mar  1 17:05:59 UTC: Mica Modem(1/33): Link Terminate(0x6)
    Mar  1 17:05:59 UTC: CSM(1/33): Enter csm_enter_disconnecting_state
    Mar  1 17:06:00 UTC: EVENT_FROM_ISDN: dchan_idb=0x623BA450, call_id=0x2E41, ces=0x1
       bchan=0xD, event=0x0, cause=0x0
    Mar  1 17:06:00 UTC: VDEV_DEALLOCATE: slot 1, port 33 is deallocated
    Mar  1 17:06:00 UTC: Mica Modem(1/33): State Transition to Terminating
    Mar  1 17:06:00 UTC: Mica Modem(1/33): State Transition to Idle
    Mar  1 17:06:00 UTC: Mica Modem(1/33): Went onhook
    Mar  1 17:06:00 UTC: CSM_PROC_IC8_OC8_DISCONNECTING: CSM_EVENT_MODEM_ONHOOK at slot 1, port 33
    Mar  1 17:06:00 UTC: CSM(1/33): Enter csm_enter_idle_state
    CE Router Details:
    Cisco IOS Software, 2800 Software (C2800NM-ADVENTERPRISEK9-M), Version 12.4(25a), RELEASE SOFTWARE (fc2)
    CE External Modem: Paradyne3920
    chat-script:
    ABORT ERROR ABORT BUSY ABORT "NO ANSWER" "" AT&F\\D1\\Q3M0&D2&R0&S1S55=1S0=2&W OK "ATDT \T" TIMEOUT 60 CONNECT \c

  • TS1368 Cannot connect to/open application to ITune.  Message states "because another user has it open.  Ask them to quit and retry."  However, there is no other user.  Help!

    Cannot connect to/open application to ITune.  Messages states that it cannot open "because another user has it open.  Ask them to quite and retry."  However there is no other user???  Thanks for any help.

    You Windows must have different user profile where iTunes is open in that profile.  Switch windows user and close the iTunes, then return to your own user profile to open again.

  • My iBooks will not open, I receive a message that states: "Failed to load book because t he requested resource is missing." How can this be repaired/resolved?

    My iBooks will not open, I receive a message that states: "Failed to load book because the requested resource is missing." How can this be repaired/resolved?

    If you can't open a particular ibook then try deleting it from the bookshelf via the Edit button at the top right of the bookshelf, and (assuming that it's still in your country's store) redownload it via the Purchased tab in the ibookstore in the app (or if you have a copy of it on your computer's iTunes library sync it back from there).

  • FM to clear open items like F-28 Transaction

    Hi,
    Need to clear the open invoice amount against open advances(Like F-28) Transaction.
    Please kindly provide your valuable suggestion to achieve this ....
    If you ned any more information,please let me know
    Thanks,
    Ragav
    Moderator message : Duplicate post locked.
    Edited by: Vinod Kumar on Jan 19, 2012 5:27 PM

    Hi Manasi,
    As the name suggest, F-04 allows you to POST to one account by CLEARING another account.
    For example you have a provision account which needs to be adjusted when the actual expense is paid -  this how it will be done -
    Give the document header details, select "Transfer posting with clearing", enter the posting key (40), give the GL account (expense account as per the example) and go to the next screen.
    Give the amount and other details for the line items and then select "choose open item" from the menu. The new screen will ask you to give an account where you will give the provision account (the account from which the open item needs to be cleared).
    Press enter and you will get the list of open items for the GL account from where you can proceed like any other clearing.
    Hope this clarifies. Do revert in case of any further queries.
    Thanks and Regards,
    anit

  • Encountering transaction statement from within a PL/SQL block

    Hi All,
    i would like to know what will be the transaction status if we use an commit or a rollback statement inside a PL/SQL procedure called from within an PL/SQL package.
    For example
    BEGIN
    select statement
    insert statement 1
    .... call to <xyz> procedure
    end;
    xyz procedure
    insert statement 2
    commit/rollback
    end of procedure
    will the insert statement 1 be commited/rollbacked when the session encounters the transaction statement inside the procedure.

    Welcome to the forum!
    Unless the procedure xyz is an autonomous transaction, then yes Insert statement 1 will be committed.

  • State transitions across components?

    Hi,
    I've been using Catalyst for a few days now to put together a "clickable mockup" of an app. Instead of working based on a comp, I'm creating the UI in Catalyst directly, using it's built-in components and creating a "wireframe" look. Works fine. I anticipate to work with more hi-fi comps.
    One thing I'm having trouble with, is making deep transitions between states from subcomponents.
    Imagine this setup:
    The app has two states/pages, "1" and "2". Inside each page, I have one component to represent all the states of that page. So for the first page, the internal component states would be 1-1, 1-2 and 1-3. Ditto for 2.
    So, now, let's say that in state 1-3, I have a button inside the component, where I want to transition to 2-2. Currently, it appears that there is no way for me to do that. When I click on the options in "Play transition to state" of the button, it shows me states 1 and 2, as well as 1-1 through 1-3, but it does not show the "child" states of "2".
    Is there any way to accomplish the transition from 1-3 to 2-2?
    Another version on the same problem: let's say I can somehow get from 1-3 to 2-2. Now, inside 2-2, I have a button that jumps back to "1". Currently, when I jump to "1", it jumps to whatever state 1 was in, which is 1-3 in my case, which is undesirable. It would be nice if I could somehow reset the component state on some event (showing, hiding, ...) to its default state, so that when people later jump back to it, it would start in its default state.
    I am familiar with ActionScript and XML and did poke around a bit. I see that in components, there is this kind of code:
      protected function Button_click_1_1():void
        mx.core.FlexGlobals.topLevelApplication.currentState='AppHome';
    I speculate that this lets me do what I need by editing code, and instead of topLevelApplication.currentState using topLevelApplication.someComponent.currentState... but I wanted to see if there is/will be another friendlier way of accomplishing this?

    Hi,
    Just my, hopefully helpful thoughts about how to render complex state transition much easier to understand, design and debug ...............
    Perhaps, initially for coders with a solid background in conditional logic, the inclusion of one or two design windows/panels providing the ability to design and display at least state transition diagrams and preferably also state transition tables, could be very helpful when trying to either design or understand complex, inter-related state transitions - actually, even relatively simple state-transitions with only five to seven objects, each with only three or four states to track concurrently, can be difficult to design, debug and test using just a mental model and memory to retain knowledge of the desired vs. actual state transition paths.
    Although I say "initially for coders", many years ago I taught both of these techniques successfully during software "design principles" courses that addressed software developers who's function was to prepare "design specifications" rather than actually write the code which, in those days, was the job of programmers rather than designers.  In fact many of my students were not programmers at all - for example analysts who used state transition diagramming techniques to design functions regardless of whether those functions would become implemented as code, or as a set of human actions, or mechanical machine operations (think pinball!).
    It should be possible using today's technoloy to be able to
        (a) generate code from a state transition table or a state transition diagram and
        (b) generate both forms of diagram from existing code (including the code autogenerated during visual design and
        (c) consistency check existing code automatically.
    It should be possible, using state transition table and diagram functions, to highlight structural logic errors.  How such highlighting should be done, for example:
        (a) using a classic state transition table or diagram or
        (b) generating some form of structured text report or
        (c) inserting colour-highlighted error messages in-line in the code or
        (c) some other more visual-designer-oriented signalling technique or
        (d) a combination of several of the above
    would be a design issue for Adobe.  This would not be a trivial exercise for Adobe, but the functionality would be reusable, i.e. transferable into other products.
    After all, the only reason for such tables or diagrams is to render complex state transitions understandable by humans, and these two techniques have proved extremely useful for many decades in many areas of design - programming, electronic circuit design, machine design, business process design......
    Re. Catalys, it's just a classic program design application, with some whizzy UI graphics that need to display, disappear, change colour, glow, shimmer, move, .... in predictable and desirable ways.
    The original pinball machines used mechanical relays to implement their underlying state transition diagrams; pinball designers needed to understand at least two things (a) complex state transitions and (b) a well designed UI. From this point of view, Catalyst looks like a pinball design panel!

  • Transaction state BUG in TP3?

    Hello,
    I'm trying to make a backing bean that I have used in some Jdev 10.1.3.2 ADF Faces applications to retrieve the transaction state from an EL expression in a jspx page. I use it to disable some functions in the page when there are pending changes, and so force the user to save or discard them before making anything else.
    The bean declaration int adfc-config.xml is:
    <managed-bean>
    <managed-bean-name>transaccion</managed-bean-name>
    <managed-bean-class>viewcontroller.backing.Transaccion</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
    <property-name>bindings</property-name>
    <value>#{bindings}</value>
    </managed-property>
    </managed-bean>
    and the bean implementation is:
    package viewcontroller.backing;
    import oracle.adf.model.binding.DCBindingContainer;
    public class Transaccion
    private DCBindingContainer bindings;
    public void setBindings(DCBindingContainer bindings) {
    this.bindings = bindings;
    public DCBindingContainer getBindings() {
    return bindings;
    public boolean getIsDirty()
    boolean dirty = getBindings().getBindingContext().getDefaultDataControl()
    .getApplicationModule().getTransaction().isDirty();
    return dirty;
    I have put the following element in a JSF page to test it:
    <af:outputText value="#{transaccion.isDirty}" />
    and I always get a false value.
    I have also tried the following code in the bean class:
    public boolean getIsDirty()
    boolean dirty = getBindings().getBindingContext().getDefaultDataControl()
    .isTransactionDirty();
    return dirty;
    with the same result.
    Is it a bug?
    Thanks,
    Marc

    Hi,
    I don't think it is a partial submit. I submit the form with normal command buttons like these ones:
    <af:commandButton text="Submit"
    binding="#{backing_marcas.commandButton1}"
    id="commandButton1"/>
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
    text="CreateInsert"
    disabled="#{!bindings.CreateInsert.enabled}"
    binding="#{backing_marcas.commandButton6}"
    id="commandButton6"/>
    Furthermore, these commit and rollback buttons activate and deactivate correctly without need of using PPR refresh:
    <af:commandButton actionListener="#{bindings.Commit.execute}"
    text="Commit"
    disabled="#{!bindings.Commit.enabled}"
    binding="#{backing_marcas.commandButton7}"
    id="commandButton7"/>
    <af:commandButton actionListener="#{bindings.Rollback.execute}"
    text="Rollback"
    disabled="#{!bindings.Rollback.enabled}"
    immediate="true"
    binding="#{backing_marcas.commandToolbarButton1}"
    id="commandToolbarButton1">
    <af:resetActionListener/>
    </af:commandButton>
    And if I print the value of the dirty variable in the getIsDirty function of the bean class, I also get a false value.
    Thanks,
    Marc

  • How to verify transaction state under a tab in Dynamic Tabs UI Shell?

    Hi,
    I'm using Dynamic Tabs UI Shell to load taskflows under dynamic tabs. If a particular taskflow under a tab becomes dirty, upon close I should warn the user. What is the best way I could check if this particular taskflow has become dirty?
    Thanks,
    Pramod Gujjeti
    Edited by: pramod gujjeti on Jun 16, 2010 1:28 AM
    Edited by: pramod gujjeti on Jun 16, 2010 1:29 AM

    Hi Pino,
    Thanks for the reply.
    The given URL only handles scenarios assuming a region from a flow has no flow embedded within it. And it seems to be not a generic approach to handle dynamic tab close.
    I'd worked on a similar but more generic approach which could of use to this thread watchers, hence posting the code:
    In the method that is invoked on tab close:
    boolean isTransDirty = false; // holds the transaction state of the dynamic tab content for which close event is fired
    try{
    DCBindingContainer dcBindingContainer = (DCBindingContainer) AdfUtils.resolveExpression("#{bindings}");
    dcBindingContainer = (DCBindingContainer)dcBindingContainer.getExecutableBindings().get(this.getSelectedTabIndex());
    if(dcBindingContainer != null){
    for( Object exeBinding : dcBindingContainer.getExecutableBindings() ) {
    isTransDirty = isTransDirty(exeBinding);
    if(isTransDirty){
    break;
    System.out.println(" is Trans Dirty : " + isTransDirty);
    }catch(Exception e){
    e.printStackTrace();
    // method isTransDirty(Object ..)
    private boolean isTransDirty(Object exeBinding){
    boolean isDirty = false;
    try{
    if(exeBinding instanceof JUIteratorBinding ){
    JUIteratorBinding juIteratorBinding = (JUIteratorBinding) exeBinding;
    System.out.println(" Iterator : " juIteratorBinding.getName() "\t" + "D.C : " + juIteratorBinding.getDataControl().getName());
    isDirty = juIteratorBinding.getDataControl().isTransactionDirty();
    if(isDirty){
    System.out.println(" Dirty because of " + juIteratorBinding.getName());
    return isDirty;
    }else if(exeBinding instanceof DCTaskFlowBinding){
    DCTaskFlowBinding dcTaskFlowBinding = (DCTaskFlowBinding) exeBinding;
    for( Object taskflowExeBinding : dcTaskFlowBinding.getExecutableBindings() ) {
    isDirty = isTransDirty(taskflowExeBinding);
    if(isDirty){
    return isDirty;
    }else if(exeBinding instanceof JUFormBinding){
    JUFormBinding jUFormBinding = (JUFormBinding) exeBinding;
    for( Object juFormIterBind : jUFormBinding.getIterBindingList() ) {
    isDirty = isTransDirty(juFormIterBind);
    if(isDirty){
    return isDirty;
    for( Object juFormExeBinding : jUFormBinding.getExecutableBindings() ) {
    isDirty = isTransDirty(juFormExeBinding);
    if(isDirty){
    return isDirty;
    }catch(Exception e){
    e.printStackTrace();
    return false;
    }

Maybe you are looking for

  • JDev 10.1.3 : Error running my first ADF application.

    I compiled and runned my first JDev application and I cound the following error during the connection : java.sql.SQLException: ORA-00604: error occurred at recursive SQL level 1 ORA-12705: invalid or unknown NLS parameter value specified I found the

  • Tips and Tricks for Telecom projects (General thread)

    Hi All, I am working for a Telecom domain project.We are using Java,Oracle,Abinitio,DW,BO,CRM applications . Can any one please let me know tips we have .( Means if it's a retail domain project there are some retail tips ...). which helps to the proj

  • In Oracle 11.5.10.2 Advance Pricing, quantity discount in ranges

    In Oracle 11.5.10.2 Advance Pricing, we have a requirement. free item promotion based on range of items ordered. Eg: If customer buy 10 qty then 2 free, else, if customer buy 20 qty. then 5 qty free, else, if if customer buy 30 then get 8 qty free. H

  • Can you provide descriptions for a Windows Computer in SCOM 2012?

    I have a customer who uses a very generic naming scheme for their desktops which makes it hard to know which machine is which.  The naming scheme basically uses a 3 letter acronym for the departments followed by a set of 4 numbers.  So it looks somet

  • CS6 Sprite Sheet animation alignment puzzle

    Hey all, I greatly enjoy using Flash CS6's Generate Sprite Sheet tool since it's much much quicker than exporting all the sprites and using TexturePacker (though I wager TP would provide far better optimization). One problem I seem to have is alignin