Error Occured in EEWB Transaction

Hi
i have created a project in EEWB Transaction for a Custom field . i gave a Task wile saving that project i Got the Status is Valid For both Enhancement and Customization . But after Running the Wizard I am getting an Error Saing that Task could not be Read.
So please suggest me to Resolve this.
Rgds
Srinivas M

hi,
also an easy example
CALL TRANSACTION 'VD51' USING it_bdc MODE 'A' UPDATE 'S'
                        MESSAGES INTO it_messages.
IF NOT it_messages[] IS INITIAL.
  PERFORM format_message.
ENDIF.
      FORM FORMAT_MESSAGE                                           *
FORM format_message.
  DATA: l_msg(100).
  LOOP AT it_messages.
    READ TABLE it_customer INDEX l_index.
    CALL FUNCTION 'FORMAT_MESSAGE'
         EXPORTING
              id        = it_messages-msgid
              lang      = sy-langu
              no        = it_messages-msgnr
              v1        = it_messages-msgv1
              v2        = it_messages-msgv2
              v3        = it_messages-msgv3
              v4        = it_messages-msgv4
         IMPORTING
              msg       = l_msg
         EXCEPTIONS
              not_found = 1
              OTHERS    = 2.
    IF sy-subrc <> 0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    WRITE:/ l_msg.
  ENDLOOP.
ENDFORM. " FORMAT_MESSAGE

Similar Messages

  • Error occurred completing a transaction

    Hello people,
    Im using LCDS 3.1 with flash builder 4.5 and model driven development plugin.
    im getting this error everytime i Delete an item(record).
    Nothing happens when i Add (create), update items, everything works fine but when i Delete then i get this:
      Exception: flex.data.DataServiceException: Error occurred completing a transaction
            at flex.data.DataServiceTransaction.complete(DataServiceTransaction.java:1528)
            at flex.data.DataService.serviceTransactedMessage(DataService.java:970)
            at flex.data.DataService.serviceMessage(DataService.java:507)
            at flex.messaging.AsyncMessageBroker.in(AsyncMessageBroker.java:435)
            at flex.messaging.MessageContext.doIn(MessageContext.java:296)
            at flex.messaging.filters.AsyncMessageFilterChain.in(AsyncMessageFilterChain.java:206)
            at flex.messaging.MessageContext.doIn(MessageContext.java:296)
            at flex.messaging.AsyncMessageBroker$EndpointSplitter.in(AsyncMessageBroker.java:827)
            at flex.messaging.MessageContext.doIn(MessageContext.java:296)
            at flex.messaging.endpoints.BaseSocketServerEndpoint.in(BaseSocketServerEndpoint.java:463)
            at flex.messaging.MessageContext.doIn(MessageContext.java:296)
            at flex.messaging.endpoints.RTMPConnection.handleTCCommandIn(RTMPConnection.java:835)
            at flex.messaging.endpoints.RTMPConnection.in(RTMPConnection.java:985)
            at flex.messaging.endpoints.RTMPConnection.serviceTCMessage(RTMPConnection.java:1072)
            at flex.messaging.endpoints.RTMPConnection.doRead(RTMPConnection.java:610)
            at flex.messaging.endpoints.RTMPProtocolHandler.doRead(RTMPProtocolHandler.java:125)
            at flex.messaging.socketserver.Connection$ConnectionReader.run(Connection.java:864)
            at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
            at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
            at java.lang.Thread.run(Unknown Source)
    Caused by: flex.data.adapters.AdapterException: The fill-contains-method for class null returned an error: null
            at flex.data.adapters.JavaAdapter.handleAdapterException(JavaAdapter.java:1335)
            at flex.data.adapters.JavaAdapter.invokeRefreshFillOperation(JavaAdapter.java:969)
            at flex.data.adapters.JavaAdapter.invoke(JavaAdapter.java:628)
            at flex.data.DataServiceTransaction.rebuildSequenceIfNecessary(DataServiceTransaction.java:2 353)
            at flex.data.SequenceManager.getInterestedSubscribers(SequenceManager.java:3693)
            at flex.data.SequenceManager.getLeafInterestedSubscribers(SequenceManager.java:3608)
            at flex.data.SequenceManager.syncAndPushSequenceChanges(SequenceManager.java:3578)
            at flex.data.SequenceManager.manageSequence(SequenceManager.java:989)
            at flex.data.DataServiceTransaction.syncClients(DataServiceTransaction.java:1672)
            at flex.data.DataServiceTransaction.doCommit(DataServiceTransaction.java:1456)
            at flex.data.DataServiceTransaction.complete(DataServiceTransaction.java:1505)
            ... 19 more
    Caused by: java.lang.NullPointerException
            at fiber.core.impl.service.FilterFunctionsService.equals(FilterFunctionsService.java:154)
            at fiber.runtime.entity.TermEvaluator.visitInvocation(TermEvaluator.java:104)
            at fiber.core.impl.term.function.InvocationImpl.accept(InvocationImpl.java:164)
            at fiber.runtime.entity.TermEvaluator.evaluate(TermEvaluator.java:63)
            at fiber.data.assemblers.FiberAssembler.refreshFill(FiberAssembler.java:411)
            at flex.data.adapters.JavaAdapter.invokeRefreshFillOperation(JavaAdapter.java:918)
            ... 28 more
    regards
    Imraan

    Hello guys,
    any sugestion??? any solution for this?
    this is my view:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx"
       xmlns:sct="sct.*"
       xmlns:forms="sct.forms.*"
       width="100%" height="100%">
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.events.ListEvent;
    import spark.events.IndexChangeEvent;
    protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
    if(comboBox.selectedItem!=null)
    getByGrupoTreinamentoResult.token = treinamentoService.getByGrupoTreinamento( comboBox.selectedItem);
    protected function comboBox_creationCompleteHandler(event:FlexEvent):void
    getAllResult.token = grupoTreinamentoService.getAll();
    protected function comboBox_changeHandler(event:IndexChangeEvent):void
    if(comboBox.selectedItem!=null)
    getByGrupoTreinamentoResult.token = treinamentoService.getByGrupoTreinamento( comboBox.selectedItem);
    ]]>
    </fx:Script>
    <fx:Declarations>
    <s:CallResponder id="getByGrupoTreinamentoResult"/>
    <sct:TreinamentoService id="treinamentoService"
    fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"/>
    <s:CallResponder id="getAllResult"/>
    <sct:GrupoTreinamentoService id="grupoTreinamentoService"
    fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"/>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <s:HGroup width="100%" height="100%">
    <s:VGroup>
    <s:HGroup>
    <s:Label text="Grupo de Treinamentos" />
    <s:ComboBox id="comboBox" change="comboBox_changeHandler(event)"
    creationComplete="comboBox_creationCompleteHandler(event)"
    labelField="nome">
    <s:AsyncListView list="{getAllResult.lastResult}"/>
    </s:ComboBox>
    </s:HGroup>
    <mx:DataGrid id="dataGrid"
    creationComplete="dataGrid_creationCompleteHandler(event)"
    dataProvider="{getByGrupoTreinamentoResult.lastResult}">
    <mx:columns>
    <mx:DataGridColumn dataField="codigo" headerText="codigo"/>
    <mx:DataGridColumn dataField="nome" headerText="nome"/>
    <mx:DataGridColumn dataField="descricao" headerText="descricao"/>
    <mx:DataGridColumn dataField="duracao" headerText="duracao"/>
    <mx:DataGridColumn dataField="validade" headerText="validade"/>
    </mx:columns>
    </mx:DataGrid>
    </s:VGroup>
    <forms:TreinamentoForm id="TreinamentoForm1"
       valueObject="{dataGrid.selectedItem as Treinamento}">
    </forms:TreinamentoForm>
    </s:HGroup>
    </mx:Canvas>
    I get this TRANSACTION error when i delete an record.
    BUT THE RECORD IS DELETED.
    Imraan

  • "Error occurs when loading transaction data from other model" - BW loading into BPC

    Hi Experts,
    I'm having a problem with my data loading from BW, using the standard Load InfoProvider Selections data manager package.
    If I run for a period without data it succeeds (with warning) but if there is data to be extracted I get the following error:
    Task name CONVERT:
    No 1 Round:
    Error occurs when loading transaction data from other model
    model: AIACONS. Package status: ERROR
    As it runs ok when there isn't data it appears there is something preventing the movements of data out of the cube itself, rather then a validation issue.
    Has anyone encountered similar or have any ideas as to the problem?
    Best,
    Chris

    Hi Vadim,
    It's not specific to the transformation file as I have tried with others for the same BW cube and get the same result.
    We get a warning when we try and validate the transformation file:
    "Error occurs when loading transaction data from other model".
    This only appears in the validation pop up and doesn't throw up any warnings about the transformation file itself.  The validation log says:
    Validate  and Process Transformation File Log
    Log creation time
    3/7/2014 16:09
    The result of validation of the
      conversion file
    SUCCESS
    The result of validation of the
      conversion file with the data file
    FAIL
    Validation Result
    Validation Option
    ValidateRecords = NO
    Message
    Error occurs when loading transaction data from other model
    Reject List
    I can't find any errors anywhere else.
    Best,
    Chris

  • Error occurs when loading transaction data from other model

    Hello Experts, I am trying to validate my transformation file and I can see peculiar behaviour of the transformation file. Even though the transformation file is not complete/  complete with all the mappings, i am getting the same error as above.
         I can see options, mapping and conversion sections are validating successfully and throwing the above error.
    Incomplete Transformation File
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ,
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT= 10
    ROUNDAMOUNT=
    *MAPPING
    CUSTOMER = *NEWCOL (NO_CUST)
    Validating the transformation files
    Validating options...
    Validation of options was successful.
    Validating mappings...
    Validation of mappings was successful.
    Validating conversions...
    Validation of the conversion was successful
    Creating the transformation xml file. Please wait...
    Transformation xml file has been saved successfully.
    Begin validate transformation file with data file...
    [Start test transformation file]
    Validate has successfully completed
    ValidateRecords = YES
    Error occurs when loading transaction data from other model
    Validation with data file failed
                           I am getting the same error with complete transformation file also. Please let me know where I am doing the mistake or is it a system error?
    Thanking you
    Praveen

    Hi,
    By
    *MAPPING
    CUSTOMER = *NEWCOL (NO_CUST)
    you want CUSTOMER to receive a fixed string "NO_CUST"?
    If so use,
    *MAPPING
    CUSTOMER = *STR (NO_CUST)

  • Error occurs when loading transaction data from other cube

    Hi Gurus,
    I'm currently working on a Transformation File for loading Transactional Data from BW to BPC but a error message is displayed "Error occurs when loading transaction data from other cube". I have already checked permissions for my user, double checked my transformation file and the dimensions, made all conversion files needed and the message has not changed.
    Can anybody help me to solve this problem?!
    Thanks a lot & Best Regards,
    HH

    Hi,
    Here, the Transformation File & Conversion File. I have already tested both with another different InfoCube and they work but no for the one needed.
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ,
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    *MAPPING
    Category=*NEWCOL(ACTUAL)
    P_0BASE_UOM=0BASE_UOM
    P_0BUS_AREA=0BUS_AREA
    P_0COSTCENTER=0COSTCENTER
    P_0FUNDS_CTR=*NEWCOL(null)
    P_0GL_ACCOUNT=0ACCOUNT
    P_0LOC_CURRCY=*NEWCOL(MXN)
    P_0MATL_TYPE=*NEWCOL(null)
    P_0VENDOR=0VENDOR
    P_DataSrc=*NEWCOL(UPLOAD)
    P_ZMATERIAL1=0MATERIAL
    P_ZMATERIAL2=*NEWCOL(null)
    P_ZMATL_CLASS=*NEWCOL(null)
    P_ZMATL_TESP=*NEWCOL(null)
    P_ZRATIO=*NEWCOL(KF_inpmdInt)
    Time=0CALMONTH
    SIGNEDDATA=0TOTALSTCK
    *CONVERSION
    Time=Time_conv.xls
    EXTERNAL     INTERNAL
    201101          2011.JAN
    201102          2011.FEB
    201103          2011.MAR
    201104          2011.APR
    201105          2011.MAY
    201106          2011.JUN
    201107          2011.JUL
    201108          2011.AUG
    201109          2011.SEP
    201110          2011.OCT
    201111          2011.NOV
    201112          2011.DEC
    Thank you for taking at glance to the files.
    Best Regards,
    HH

  • Randomly occurring error while starting MDB transaction

    We have been seeing a strange intermittent problem with MDBs in a clustered WLS 9.1 environment. Our cluster consists of two managed servers, each of which runs on a separate Windows machine, and our application is targeted to both. We use container managed transactions. From time to time, one of the MDBs on the second managed server runs into a problem where it is unable to start a transaction, and the message is automatically transferred to the appropriate JMS error destination before the logic within the onMessage method is even invoked. This results in a situation where our app logs have no record that the message was ever received, so we continually have to go out to the error destinations to see if there are any messages. This problem does not appear to follow any pattern, and occurs randomly with pretty much all of our MDBs on the second server. The stack trace from the log is below. Any help in tracking down the cause of this problem would be greatly appreciated.
    Regards,
    Sabrina
    <Jun 12, 2006 2:02:47 PM EDT> <Error> <JMSClientExceptions> <BEA-055165> <The following exception has occurred:
    java.lang.RuntimeException: [EJB:010166]Error occurred while starting transaction: weblogic.jms.common.JMSException: Unexpected remote responsenull.
    java.lang.RuntimeException: [EJB:010166].
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:282)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:3824)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:3738)
         at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:4228)
         at weblogic.work.ServerWorkManagerImpl$WorkAdapterImpl.run(ServerWorkManagerImpl.java:518)
         Truncated. see log file for complete stacktrace
    weblogic.jms.common.JMSException: Unexpected remote responsenull
         at weblogic.jms.dispatcher.DispatcherAdapter.convertToJMSExceptionAndThrow(DispatcherAdapter.java:110)
         at weblogic.jms.dispatcher.DispatcherAdapter.dispatchSyncTran(DispatcherAdapter.java:53)
         at weblogic.jms.client.JMSSession.acknowledge(JMSSession.java:1775)
         at weblogic.jms.client.JMSSession.associateTransaction(JMSSession.java:1854)
         at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:269)
         Truncated. see log file for complete stacktrace
    weblogic.jms.common.JMSException: Unexpected remote responsenull
         at weblogic.jms.dispatcher.Request.handleThrowable(Request.java:63)
         at weblogic.jms.dispatcher.Request.getResult(Request.java:51)
         at weblogic.messaging.dispatcher.Request.wrappedFiniteStateMachine(Request.java:803)
         at weblogic.messaging.dispatcher.DispatcherImpl.dispatchSyncTran(DispatcherImpl.java:197)
         at weblogic.jms.dispatcher.DispatcherAdapter.dispatchSyncTran(DispatcherAdapter.java:51)
         Truncated. see log file for complete stacktrace
    weblogic.jms.common.JMSException: Unexpected remote responsenull
         at weblogic.messaging.dispatcher.Request.wrappedFiniteStateMachine(Request.java:758)
         at weblogic.messaging.dispatcher.DispatcherImpl.dispatchSyncTran(DispatcherImpl.java:197)
         at weblogic.jms.dispatcher.DispatcherAdapter.dispatchSyncTran(DispatcherAdapter.java:51)
         at weblogic.jms.client.JMSSession.acknowledge(JMSSession.java:1775)
         at weblogic.jms.client.JMSSession.associateTransaction(JMSSession.java:1854)
         Truncated. see log file for complete stacktrace
    weblogic.jms.common.JMSException: Unexpected remote responsenull
         at weblogic.jms.dispatcher.Request.getAppException(Request.java:42)
         at weblogic.messaging.dispatcher.Request.handleResult(Request.java:529)
         at weblogic.rmi.extensions.AsyncResultFactory$CallbackableResultImpl.setInboundResponse(AsyncResultFactory.java:75)
         at weblogic.rjvm.BasicOutboundRequest$BasicResponseListener.response(BasicOutboundRequest.java:217)
         at weblogic.rjvm.ResponseWithListener.notify(ResponseWithListener.java:25)
         Truncated. see log file for complete stacktrace
    java.lang.ClassCastException: weblogic.rjvm.ClassTableEntry
         at weblogic.rjvm.MsgAbbrevInputStream.readExtendedContexts(MsgAbbrevInputStream.java:216)
         at weblogic.rjvm.ResponseImpl.retrieveThreadLocalContext(ResponseImpl.java:126)
         at weblogic.rjvm.ResponseWithListener.unmarshalReturn(ResponseWithListener.java:43)
         at weblogic.rmi.internal.AsyncResultImpl.getResults(AsyncResultImpl.java:48)
         at weblogic.rmi.internal.AsyncResultImpl.getObject(AsyncResultImpl.java:98)
         Truncated. see log file for complete stacktrace
    >

    Hi Sabrina,
    Did you ever get a solution to this problem?
    We are seeing the same thing on WebLogic 9.1. It started happening in the past week.
    We have the same originating error ..
    java.lang.ClassCastException: weblogic.rjvm.ClassTableEntry
    Many thanks,
    Shane

  • Create RFx Response: An error occurred in the PD Layer transaction terminated

    Hello Experts,
    Currently we are in SRM 7.02 implemenation: we are facing below problem while creating RFx response with popup screen.
                             "An error occurred in the PD Layer transaction terminated"
    For this we have checked below
    1. http://scn.sap.com/thread/1912966    ----> it didn't help
    2. We have assigned SAP_ALL role to bidder also ----> Facing same issue
    3. Check Number ranges ---> everything is fine.
    there is no clue from above points.
    Thanks & Regards
    Sandeep.

    Hello Sandeep,
    I am facing the same problem while creating the RFx response in SUS side. Same error occurred while i am creating the Rfx response with bidder.
    error: An error occurred in the PD Layer transaction terminated
    Could you please let me know, did you find any solution for this issue?
    Thanks in advance!!
    Thanks,
    Anil

  • An error occurred in the PD layer; transaction terminated in SC

    Hi experts,
    I have an issue like this "An error occurred in the PD layer; transaction terminated". This error came when i save Shopping Cart.
    Just for the information, I have maintained number range assignment for BUS2121 - Shopping Carts also.
    And I am working on SRM 7.0
    Do you have any idea to solve this issue?
    Thanks,
    Rhesa Syahrial

    Hi Sam,
    Thanks for your fast reply.
    Below is the error analysis from st22.
    An exception occurred which is explained in detail below.
    The exception, which is assigned to class 'CX_BBP_PD_ABORT', was not caught and
    therefore caused a runtime error.
    The reason for the exception is:
    Buffer table not up-to-date
    I have checked in sapnote also about this issue. but still not resolved.
    Regards,
    Rhesa Syahrial

  • A fatal error occured in the PD Layer. The transaction needs to be terminat

    Hi experts,
    Do you know these error message?
    A fatal error occured in the PD Layer. The transaction needs to be terminated
    We applied note 1174283, but it didn't work.
    The problem is related to users that don´t belong to SRM structure anymore, but their shopping carts are still in sourcing process.
    Thanks
    Juliana

    Hi PM,
    Note 1269719 - display a more detailled message in abort popup
    Symptom
    In some cases, the SRM application cannot continue and must be aborted.
    Then a popup is displayed with an error message "A fatal error occured in
    the PD layer. The transaction needs to be terminated.".
    The error message is quite general, it is displayed even if a more specific
    error message is available.
    Note 1174283 - SOCO: SC data will not be saved correctly in secend step
    Symptom
    You saved some data in the second step of Sourcing Cockpit using the button
    'Save'. You closed the application and started it again.
    You selected data in the first step of SOCO or went directly to the second
    step. The system display a message: "A fatal error occured in the PD layer.
    The transaction needs to be terminated".
    regards
    Muthu

  • [SEND_REPLY(9)] [C4036]: A server error occurred. : transaction failed:

    Anyone know why I'm getting this error? On the client side I'm getting the following exception:
    [SEND_REPLY(9)] [C4036]: A server error occurred. : transaction failed: Unexpected Broker
    Exception: [received message with Unknown Transaction ID -1: ignoring message] user=guest, broker=localhost:7676(3243)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.throwServerErrorException(ProtocolHandler.java:3059)
    at com.sun.messaging.jmq.jmsclient.ProtocolHandler.writeJMSMessage(ProtocolHandler.java:1555)
    at com.sun.messaging.jmq.jmsclient.WriteChannel.sendWithFlowControl(WriteChannel.java:123)
    at com.sun.messaging.jmq.jmsclient.WriteChannel.writeJMSMessage(WriteChannel.java:76)
    at com.sun.messaging.jmq.jmsclient.Transaction.send(Transaction.java:128)
    at com.sun.messaging.jmq.jmsclient.SessionImpl.writeJMSMessage(SessionImpl.java:683)
    at com.sun.messaging.jmq.jmsclient.MessageProducerImpl.writeJMSMessage(MessageProducerImpl.java:155)
    at com.sun.messaging.jmq.jmsclient.MessageProducerImpl.writeJMSMessage(MessageProducerImpl.java:145)
    at com.sun.messaging.jmq.jmsclient.MessageProducerImpl.send(MessageProducerImpl.java:499)
    In the broker log, I'm getting this:
    [03/Nov/2005:11:13:24 PST] WARNING [B3100]: Unexpected Broker Internal Error : [transaction failed] :
    com.sun.messaging.jmq.jmsserver.util.BrokerException: Unexpected Broker Exception: [received message with Unknown Transaction ID -1: ignoring message]
         at com.sun.messaging.jmq.jmsserver.data.TransactionList.addMessage(TransactionList.java:216)
         at com.sun.messaging.jmq.jmsserver.data.handlers.DataHandler.handle(DataHandler.java:141)
         at com.sun.messaging.jmq.jmsserver.data.handlers.DataHandler.handle(DataHandler.java:59)
         at com.sun.messaging.jmq.jmsserver.data.PacketRouter.handleMessage(PacketRouter.java:146)
         at com.sun.messaging.jmq.jmsserver.service.imq.IMQConnection.readData(IMQConnection.java:1847)
         at com.sun.messaging.jmq.jmsserver.service.imq.IMQConnection.process(IMQConnection.java:816)
         at com.sun.messaging.jmq.jmsserver.service.imq.OperationRunnable.process(OperationRunnable.java:141)
         at com.sun.messaging.jmq.jmsserver.util.pool.BasicRunnable.run(BasicRunnable.java:459)
         at java.lang.Thread.run(Thread.java:595)
    [03/Nov/2005:11:13:24 PST] ERROR [B3100]: Unexpected Broker Internal Error : [Unknown transaction: -1(-1) broker will  not notify the client Ignoring ROLLBACK_TRANSACTION(48)
          Packet: ROLLBACK_TRANSACTION(48):117-192.168.0.2(e7:cb:48:e:43:5d)-4127-1131045204302
      Magic/Version: 469754818/301     Size: 112      Type: ROLLBACK_TRANSACTION(48)
         Expiration: 0                 Timestamp: 1131045204302
          Source IP: 192.168.0.2(e7:cb:48:e:43:5d)  Port: 4127     Sequence: 117
    Property Offset: 76               Property Size: 36
         Encryption: 0     Priority: 5
              Flags:                   consumerID: 0
         TransactionID: 0
           MessageID: 117-192.168.0.2(e7:cb:48:e:43:5d)-4127-1131045204302
         Properties: {JMQTransactionID=-1}
    Message Body: 0 bytes
    Internal Buffers (useDirect=false):
    Fixed Header Buffer:java.nio.HeapByteBuffer[pos=0 lim=72 cap=72]
    ]

    Please provide more information,
    . what is the version of MQ you are using ?
    (see top of the broker log)
    . are you using MQ cluster ?
    . describe your application
    amy

  • A jdbc transaction error occur

    Hi Everybody
    A jdbc transaction error occur when I deploy the application on the server .
    Below is the stack trace
    #SAP J2EE Engine JTA Transaction : [03bfffffffd3a000ffffffc0]####Application [13]##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.dbpool.exceptions.BaseSQLException: Cannot commit transaction from this connection of "YTSQLS2K" DataSource. This resource participates in a local or distributed transaction.
    #SAP J2EE Engine JTA Transaction : [03bfffffffd3a000ffffffc0]####Application [13]##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.dbpool.exceptions.BaseSQLException: Cannot initiate transaction from a connection of "YTSQLS2K" DataSource. Local or distributed transaction has already started.
    #SAP J2EE Engine JTA Transaction : [03bfffffffd3a000ffffffc0]####Application [13]##0#0#Error#1#/System/Audit#Java###Exception #1#com.sap.engine.services.dbpool.exceptions.BaseSQLException: Cannot commit transaction from this connection of "YTSQLS2K" DataSource. This resource participates in a local or distributed transaction.
    Any idea about it
    I use the jdbc version in datasource <jdbc-1.x>
    is there a need to replace it with <jdbc-2.0>
    Thank You
    Syed Saifuddin

    Hibernate allows you to choose transaction manager. As Nikolay pointed out, in a JEE envirnment it's prefferable to use JTA transactions. All you need to do is to configure hibernate to use a JTA transaction manager. It is all written in the Hibernate documentations. See
    http://www.hibernate.org/hib_docs/v3/reference/en/html_single/#configuration-j2ee
    and
    http://www.hibernate.org/42.html#A5 .
    The relevant properties that need to be set in the configuration are:
    hibernate.transaction.factory_class=org.hibernate.transaction.JTATransactionFactory
    and
    hibernate.transaction.manager_lookup_class=<Class that knows how to lookup>
    You need to implement a class that knows how to lookup user transaction in SAP J2EE Egnine.
    The class must extend org.hibernate.transaction.JNDITransactionManagerLookup and only override its abstract method getName (simply returning the lookup string). Then provide the fully qualified name as value of the property and make sure that Hibernate can load the class.
    That should work.
    HTH
    -Georgi
    Message was edited by:
            Georgi Pavlov

  • Error -2038: Record locked by another transaction / Internal error occured

    Hi, sometimes when I'm trying to update a SO via DI API, I got this error -2038. The error message varies, either: "Internal error occured" or "Record locked by another transaction". Ffor 'record locked' error, the table/field names varies, eg.
    [RDR1.ItemCode][line: 7]
    [RDR12.TaxId8][line: 1]
    [WTR1.ItemCode][line: 1]
    [RDR1.ItemCode][line: 9]
    [RDR1.ItemCode][line: 3]
    [RDR12.TaxId2][line: 1]
    [RDR12.CityS][line: 1]
    Any idea what the problem might be? FYI I'm using PL41, and this DI calls are from a centralized 'handler' VB.NET program. I've also released the instantiated BO objects via System.Runtime.InteropServices.Marshal.ReleaseComObject() (http://support.microsoft.com/kb/317109)
    Thanks.

    David: what do you mean by 'S-User for the Marketplace'? I think I'm not an S-User, so I still can't login... How can I be an S-User?
    Anyway, I'll close this question, even though it's not really solved. I can't find any other user updating the same document, but that -2038 errors still pop up.
    Currently I'm using John's approach to retry whenever I got -2038. As long as it works and everybody's happy I guess...
    Thanks everybody.

  • Revert Back to the old status from newif error occurs in ServiceDesk Ticket

    Go to transaction CRM_DNO_MONITOR. Select a ticket for display. Let the status of the selected ticket be NEW. Now input all information in standard and screen Enhancement(By EEWB) input fields. Now make an action 'assign' After saving the status will change to Assign. But at the same time there is a screen validation dependant on the status change from New to assign. According to that the validation happens in PBO event of the Screen enhancement where we are getting Old as well as new status. Here it is found that remarks in long text is to be entered while this perticular status change is happening. but the same is not done. So there is a error message that 'you have not entered remarks general'.
       When the error occurs the status should change back from assign to New. Since user may go out of ticket without saving Or the error pop up will throw you out of ticket. When the user again opens the same ticket, the status of the ticket is Assign. So there should be a BADI or open routine available after before the update to database happens for the new status. Also this enhancement should happen after Screen Enhancement(By EEWB)'s PBO event. So validation of screen enhancement can be carried out.
       In short please provide enhancement or routine or function module which can revert back to old status.

    Although it might be manifesting itself slightly differently in LP8, I just wanted to chime in here and say that I've had that problem with LP7 as well. I import a lot of mp3's, and most of them work, but every once in a while it would get confused and I'd see that message. It's been a while so I don't remember specifically what I did, but I do know that with a little tweaking of the name it will work fine. If memory serves, when the file in question had the suffix actually in the name itself (filename.mp3), I'd just take the suffix out and it would recognize it. Although it could have been the other way around, adding the suffix to an mp3 file that DIDN'T have it in the name. Point is, it was an easy fix, and with a little name tweaking LP7 was able to understand. Hopefully that's all it will take with LP8 too.
    Good Luck!

  • Error while comitting a transaction in oSB. The following is the error stack

    Error while comitting a transaction in OSB. The following is the error stack
    <Apr 20, 2015 12:00:15 AM MDT> <Error> <EJB> <BEA-010026> <Exception occurred during commit of transaction Xid=BEA1-1AE41F1CAE45F2B146FD(296700848),Status=Rolled back. [Reason=Unknown],numRepliesOwedMe=0,numRepliesOwedOthers=0,seconds since begin=2,seconds left=120,XAServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(ServerResourceInfo[WLStore_SOA_PRDKS_DOMAIN_FileStore_SOA_MS2]=(state=new,assigned=none),xar=null,re-Registered = false),XAServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(ServerResourceInfo[WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1]=(state=rolledback,assigned=OSB_MS1),xar=WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_11603460297,re-Registered = false),XAServerResourceInfo[weblogic.jdbc.jta.DataSource]=(ServerResourceInfo[weblogic.jdbc.jta.DataSource]=(state=ended,assigned=none),xar=CMSDS,re-Registered = false),SCInfo[OSB_PRDKS_DOMAIN+OSB_MS1]=(state=rolledback),SCInfo[SOA_PRDKS_DOMAIN+SOA_MS2]=(state=pre-prepared),properties=({}),local properties=({weblogic.jdbc.jta.CMSDS=[ No XAConnection is attached to this TxInfo ]}),OwnerTransactionManager=ServerTM[ServerCoordinatorDescriptor=(CoordinatorURL=OSB_MS1+soaprd-vip-osb-ms1.cos.is.keysight.com:8001+OSB_PRDKS_DOMAIN+t3+, XAResources={eis/wls/Queue, WEDB_EVEREST_OSB_PRDKS_DOMAIN, XREFDS_OSB_PRDKS_DOMAIN, eis/activemq/Queue, CustomSchemaDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS1_OSB_PRDKS_DOMAIN, eis/tibjmsDirect/Queue, eis/jbossmq/Queue, eis/Apps/Apps, MobileApps_AOS_MDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_DRDS_OSB_PRDKS_DOMAIN, WSATGatewayRM_OSB_MS1_OSB_PRDKS_DOMAIN, eis/webspheremq/Queue, eis/AQ/aqSample, SBLPROD_OSB_PRDKS_DOMAIN, wlsbjmsrpDataSource_OSB_PRDKS_DOMAIN, eis/aqjms/Queue, CMSDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_WseeFileStore_auto_1, FAP_OSB_PRDKS_DOMAIN, eis/sunmq/Queue, eis/pramati/Queue, FMWAPPDS_OSB_PRDKS_DOMAIN, weblogic.jdbc.jta.DataSource, GSDC_OSB_PRDKS_DOMAIN, eis/tibjms/Topic, eis/fioranomq/Topic, WLStore_OSB_PRDKS_DOMAIN_FileStore_MS1, PresidioOracleAppsDS_OSB_PRDKS_DOMAIN, GSDCDS_OSB_PRDKS_DOMAIN, eis/aqjms/Topic, CustOutDS_OSB_PRDKS_DOMAIN, OFMW/Logging/BAM, MobileAppsDS_OSB_PRDKS_DOMAIN, FIDDS_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN__WLS_OSB_MS1, HRMSDS_OSB_PRDKS_DOMAIN, WEDB_OSB_PRDKS_DOMAIN, OracleAppsDS_OSB_PRDKS_DOMAIN, eis/wls/Topic, eis/tibjms/Queue, eis/tibjmsDirect/Topic, IntrastatDS_OSB_PRDKS_DOMAIN, MobileApps_AOS_COSDS_OSB_PRDKS_DOMAIN, MobileApps_CIA_DS2_OSB_PRDKS_DOMAIN, EVEREST_WEDB_OSB_PRDKS_DOMAIN, WLStore_OSB_PRDKS_DOMAIN_FileStore_auto_1, Everest_OSB_PRDKS_DOMAIN},NonXAResources={})],CoordinatorURL=SOA_MS2+soaprd-vip-soa-ms2.cos.is.keysight.com:8002+SOA_PRDKS_DOMAIN+t3+): javax.transaction.SystemException: Lost connection to server while commit was in progress, ignoring because initiating server is not coordinating server. Remote Exception received=weblogic.rjvm.PeerGoneException: ; nested exception is:
            java.rmi.UnmarshalException: Incoming message header or abbreviation processing failed ; nested exception is:
            java.io.InvalidClassException: oracle.jdbc.xa.OracleXAException; local class incompatible: stream classdesc serialVersionUID = -2542408691177300269, local class serialVersionUID = -4551795881821760665
            at weblogic.transaction.internal.TransactionImpl.commit(TransactionImpl.java:376)
            at weblogic.transaction.internal.ServerTransactionImpl.internalCommit(ServerTransactionImpl.java:237)
            at weblogic.transaction.internal.ServerTransactionImpl.commit(ServerTransactionImpl.java:224)
            at weblogic.ejb.container.internal.MDListener.execute(MDListener.java:552)
            at weblogic.ejb.container.internal.MDListener.transactionalOnMessage(MDListener.java:423)
            at weblogic.ejb.container.internal.MDListener.onMessage(MDListener.java:325)
            at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:4659)
            at weblogic.jms.client.JMSSession.execute(JMSSession.java:4345)
            at weblogic.jms.client.JMSSession.executeMessage(JMSSession.java:3821)
            at weblogic.jms.client.JMSSession.access$000(JMSSession.java:115)
            at weblogic.jms.client.JMSSession$UseForRunnable.run(JMSSession.java:5170)
            at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
            at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
            at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

    Hi,
    Have you tried Cancelling the release before adding the version?
    Select the active version of the IDOC Segment and cancel its release first. Only then you will be able to add a version.
    Please let me know if it worked!
    Vijay

  • Runtime Error in MMBE- s yntax error occurred in program "SAPLMBBS " in inc

    Hi Gurus,
    Runtime Error in "MMBE" Transaction -
    The following syntax error occurred in program "SAPLMBBS " in include "LMBBSU07
    " in
    line 76:
    "The column name "MATNR" has two meanings . ."
    Any Input is Highly appreciated.
    Thanks and Regards,
    Selva

    Hi,
    This looks like an ABAP runtime error and the program concerned is a standard program. Please check the include and try debugging, suggest a breakpoint in line 76.
    Thanks

Maybe you are looking for