Status 64 "No filters , No conversion .."  when receipt an Inbound Idoc

Hi expert,
I transfers an idoc from client 200 to client 700. At client 200 the outbound idoc is transfer ok but on client 700 when receipt inbound idoc I have status 64 "No filters , No conversion , No version change ." I have writen a FM to process this inbound I think I have this status because I have not true parameter in Tcode we57 we42 but I don't know what parameter on those Tcode. Please help me please!
Thank for reading!
Screen we42 and we57:
http://i612.photobucket.com/albums/tt203/talaai04071986/we57.png
http://i612.photobucket.com/albums/tt203/talaai04071986/we42.png

Hi Reddy,
I can't find any error on my function. Can you find it for me?
This is my code.
FUNCTION Z_IDOC_INPUT_ZRZSO_MTC .
""Local Interface:
*"  IMPORTING
*"     VALUE(INPUT_MET) LIKE  BDWFAP_PAR-INPUTMETHD
*"     VALUE(MASS_PROCESSING) LIKE  BDWFAP_PAR-MASS_PROC
*"  EXPORTING
*"     VALUE(WORKFLOW_RESULT) LIKE  BDWF_PARAM-RESULT
*"     VALUE(APPLICATION_VARIABLE) LIKE  BDWF_PARAM-APPL_VAR
*"     VALUE(IN_UPDATE_TASK) LIKE  BDWFAP_PAR-UPDATETASK
*"     VALUE(CALL_TRANSACTION_DONE) LIKE  BDWFAP_PAR-CALLTRANS
*"  TABLES
*"      IDOC_CONTRL STRUCTURE  EDIDC
*"      IDOC_DATA STRUCTURE  EDIDD
*"      IDOC_STATUS STRUCTURE  BDIDOCSTAT
*"      RETURN_VARIABLES STRUCTURE  BDWFRETVAR
*"      SERIALIZATION_INFO STRUCTURE  BDI_SER OPTIONAL
*"  EXCEPTIONS
*"      WRONG_FUNCTION_CALLED
Include File containing ALE constants
  INCLUDE MBDCONWF.
  TABLES : ZCUSTOMERS, "Cutomer Header
           ZSOHEADERS, "Sales Header
           ZSOITEMS. "Sales Items
***Data
  DATA : W_ZRZSEG1 LIKE ZRZSEG1,
  W_ZRZSEG2 LIKE ZRZSEG2,
  W_ZRZSEG3 LIKE ZRZSEG3.
  DATA : T_ZCUSTOMERS LIKE ZCUSTOMERS OCCURS 0 WITH HEADER LINE.
  DATA : T_ZSOHEADERS LIKE ZSOHEADERS OCCURS 0 WITH HEADER LINE.
  DATA : T_ZSOITEMS LIKE ZSOITEMS OCCURS 0 WITH HEADER LINE.
  WORKFLOW_RESULT = C_WF_RESULT_OK.
  LOOP AT IDOC_CONTRL.
    IF IDOC_CONTRL-MESTYP NE 'ZRZSO_MT'.
      RAISE WRONG_FUNCTION_CALLED.
    ENDIF.
Before reading a new entry, clear application buffer
    LOOP AT IDOC_DATA WHERE DOCNUM EQ IDOC_CONTRL-DOCNUM.
      CASE IDOC_DATA-SEGNAM.
        WHEN 'ZRZSEG1'.
          W_ZRZSEG1 = IDOC_DATA-SDATA.
          MOVE-CORRESPONDING W_ZRZSEG1 TO T_ZCUSTOMERS.
          INSERT INTO ZCUSTOMERS VALUES T_ZCUSTOMERS.
        WHEN 'ZRZSEG2'.
          W_ZRZSEG2 = IDOC_DATA-SDATA.
          MOVE-CORRESPONDING W_ZRZSEG2 TO T_ZSOHEADERS.
          INSERT INTO ZSOHEADERS VALUES T_ZSOHEADERS.
        WHEN 'ZRZSEG3'.
          W_ZRZSEG3 = IDOC_DATA-SDATA.
          MOVE-CORRESPONDING W_ZRZSEG3 TO T_ZSOITEMS.
          INSERT INTO ZSOITEMS VALUES T_ZSOITEMS.
      ENDCASE.
    ENDLOOP.
CUSTOMER HEADER *
   SELECT *
   FROM zcustomers.
   ENDSELECT.
   IF sy-subrc NE 0.
     INSERT INTO zcustomers VALUES t_zcustomers.
   ELSE.
      UPDATE ZCUSTOMERS FROM T_ZCUSTOMERS.
   ENDIF.
    IF SY-SUBRC EQ 0.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '53'.
      IDOC_STATUS-MSGTY = 'I'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '004'.
      IDOC_STATUS-MSGV1 = T_ZCUSTOMERS-KUNNR.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
    ELSE.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '51'.
      IDOC_STATUS-MSGTY = 'E'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '005'.
      IDOC_STATUS-MSGV1 = T_ZCUSTOMERS-KUNNR.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
      WORKFLOW_RESULT = C_WF_RESULT_ERROR.
      RETURN_VARIABLES-WF_PARAM = 'Error_Idocs'.
      RETURN_VARIABLES-DOC_NUMBER = IDOC_CONTRL-DOCNUM.
      APPEND RETURN_VARIABLES.
      CLEAR RETURN_VARIABLES.
    ENDIF.
SALES HEADER *
   SELECT *
   FROM zsoheaders.
   ENDSELECT.
   IF sy-subrc NE 0.
     INSERT INTO zsoheaders VALUES t_zsoheaders.
   ELSE.
      UPDATE ZSOHEADERS FROM T_ZSOHEADERS.
   ENDIF.
    IF SY-SUBRC EQ 0.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '53'.
      IDOC_STATUS-MSGTY = 'I'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '004'.
      IDOC_STATUS-MSGV1 = T_ZSOHEADERS-VBELN.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
    ELSE.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '51'.
      IDOC_STATUS-MSGTY = 'E'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '005'.
      IDOC_STATUS-MSGV1 = T_ZSOHEADERS-VBELN.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
      WORKFLOW_RESULT = C_WF_RESULT_ERROR.
      RETURN_VARIABLES-WF_PARAM = 'Error_Idocs'.
      RETURN_VARIABLES-DOC_NUMBER = IDOC_CONTRL-DOCNUM.
      APPEND RETURN_VARIABLES.
      CLEAR RETURN_VARIABLES.
    ENDIF.
SALES ITEM *
   SELECT *
   FROM zsoitems.
   ENDSELECT.
   IF sy-subrc NE 0.
     INSERT INTO zsoitems VALUES t_zsoitems.
   ELSE.
      UPDATE ZSOITEMS FROM T_ZSOITEMS.
   ENDIF.
    IF SY-SUBRC EQ 0.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '53'.
      IDOC_STATUS-MSGTY = 'I'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '004'.
      IDOC_STATUS-MSGV1 = T_ZSOITEMS-VBELN.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
    ELSE.
      IDOC_STATUS-DOCNUM = IDOC_CONTRL-DOCNUM.
      IDOC_STATUS-STATUS = '51'.
      IDOC_STATUS-MSGTY = 'E'.
      IDOC_STATUS-MSGID = 'YM'.
      IDOC_STATUS-MSGNO = '005'.
      IDOC_STATUS-MSGV1 = T_ZSOITEMS-VBELN.
      APPEND IDOC_STATUS.
      CLEAR IDOC_STATUS.
      WORKFLOW_RESULT = C_WF_RESULT_ERROR.
      RETURN_VARIABLES-WF_PARAM = 'Error_Idocs'.
      RETURN_VARIABLES-DOC_NUMBER = IDOC_CONTRL-DOCNUM.
      APPEND RETURN_VARIABLES.
      CLEAR RETURN_VARIABLES.
    ENDIF.
  ENDLOOP.
ENDFUNCTION.
Edited by: Cuong Nguyen Cao on Jun 2, 2010 6:51 AM

Similar Messages

  • Where to put break point when debugging the inbound IDOC processing

    Hi, Dear Experts,
    If IDOC has error and want to debug, which program or function module  to put break point when debugging the inbound IDOC processing
    Thank you so much!
    Helen

    It depends on if you have the custom FM or standard FM...Is it MM invoice or FI invoice? ... You can find out your FM by going to partner profile (WE20) for your sender partner and partner function.. Drill down to your partner and the message type and find the inbound process code.. Double clicking on the process code will help you find the FM...
    If you don't have access to WE20, You can also put BP into any of the IDOC_INPUT_INVOIC* FM and see if it is getting triggered (assuming your IDOC is standard FM)...

  • Problem when activate SAP Inbound IDOC Project

    hello,
    We are using the Fusion 11g and the SAP Adapter is the 11g P2 using the SAP JCO 3.0.
    I am getting the following error in the OSB server log when I import a project then activate it. I will send an IDOC from SAP and the SAP Adapter will except the message but will throw the message to the bite bucket. It will say No subscriber for this Channel. I believe this is do to the error when import and activate the project. Below is the error message I get in the osb server.log. I have checked the configure using the test tool and I can see everything just file. We exported this into another osb domain and the project work just fine. We are trying to figure out the issue with this osb domain before we just toss it.
    ####<Oct 29, 2010 5:43:05 PM PDT> <Error> <JCA_FRAMEWORK_AND_ADAPTER> <camintd9> <osb_server_dev1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <deytel> <> <da0648933571bbbb:49aa3b48:12bfa0af692:-7fe4-0000000000000130> <1288399385547> <BEA-000000> <Error while performing endpoint Activation: java.lang.NullPointerException
    java.lang.NullPointerException
    at com.iwaysoftware.afjca15.IWAFOracleResourceAdapter.endpointActivation(IWAFOracleResourceAdapter.java:266)
    at oracle.tip.adapter.sa.impl.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:498)
    at oracle.tip.adapter.sa.impl.inbound.JCABindingActivationAgent.activateEndpoint(JCABindingActivationAgent.java:325)
    at oracle.tip.adapter.sa.impl.JCABindingServiceImpl.activate(JCABindingServiceImpl.java:113)
    at com.bea.wli.sb.transports.jca.binding.JCATransportInboundOperationBindingServiceImpl.activateService(JCATransportInboundOperationBindingServiceImpl.java:325)
    at com.bea.wli.sb.transports.jca.JCATransportEndpoint.activateJCABindingService(JCATransportEndpoint.java:122)
    at com.bea.wli.sb.transports.jca.JCATransportProvider.activationComplete(JCATransportProvider.java:507)
    at sun.reflect.GeneratedMethodAccessor270.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
    at $Proxy134.activationComplete(Unknown Source)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl$EndPointOperationCommon.activationComplete(ResourceLifecycleListenerImpl.java:748)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.activationComplete(ResourceLifecycleListenerImpl.java:336)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.changesCommitted(ResourceLifecycleListenerImpl.java:153)
    at com.bea.wli.sb.transports.TransportManagerImpl.changesCommitted(TransportManagerImpl.java:1205)
    at com.bea.wli.sb.service.ServiceChangeListener.changesCommitted(ServiceChangeListener.java:146)
    at com.bea.wli.config.impl.ResourceListenerNotifier.afterEnd(ResourceListenerNotifier.java:120)
    at com.bea.wli.config.transaction.TransactionListenerWrapper.afterEnd(TransactionListenerWrapper.java:90)
    at com.bea.wli.config.transaction.TransactionManager.notifyAfterEnd(TransactionManager.java:1154)
    at com.bea.wli.config.transaction.TransactionManager.commit(TransactionManager.java:1519)
    at com.bea.wli.config.transaction.TransactionManager._endTransaction(TransactionManager.java:842)
    at com.bea.wli.config.transaction.TransactionManager.endTransaction(TransactionManager.java:783)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$2.run(ServerDeploymentReceiver.java:275)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.commit(ServerDeploymentReceiver.java:260)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    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)
    >
    ####<Oct 29, 2010 5:43:05 PM PDT> <Error> <JCATransport> <camintd9> <osb_server_dev1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <deytel> <> <da0648933571bbbb:49aa3b48:12bfa0af692:-7fe4-0000000000000130> <1288399385559> <BEA-381959> <Failed to activate JCABindingService for wsdl: servicebus:/WSDL/SAP_Inbound_IDOC/wsdls/Z_NIKE10_IDOC_receive, operation: Z_NIKE10_IDOC, exception: BINDING.JCA-12600
    Generic error.
    Generic error.
    Cause: {0}.
    Please create a Service Request with Oracle Support.
    BINDING.JCA-12600
    Generic error.
    Generic error.
    Cause: {0}.
    Please create a Service Request with Oracle Support.
    at oracle.tip.adapter.sa.impl.inbound.JCABindingActivationAgent.activateEndpoint(JCABindingActivationAgent.java:329)
    at oracle.tip.adapter.sa.impl.JCABindingServiceImpl.activate(JCABindingServiceImpl.java:113)
    at com.bea.wli.sb.transports.jca.binding.JCATransportInboundOperationBindingServiceImpl.activateService(JCATransportInboundOperationBindingServiceImpl.java:325)
    at com.bea.wli.sb.transports.jca.JCATransportEndpoint.activateJCABindingService(JCATransportEndpoint.java:122)
    at com.bea.wli.sb.transports.jca.JCATransportProvider.activationComplete(JCATransportProvider.java:507)
    at sun.reflect.GeneratedMethodAccessor270.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
    at $Proxy134.activationComplete(Unknown Source)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl$EndPointOperationCommon.activationComplete(ResourceLifecycleListenerImpl.java:748)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.activationComplete(ResourceLifecycleListenerImpl.java:336)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.changesCommitted(ResourceLifecycleListenerImpl.java:153)
    at com.bea.wli.sb.transports.TransportManagerImpl.changesCommitted(TransportManagerImpl.java:1205)
    at com.bea.wli.sb.service.ServiceChangeListener.changesCommitted(ServiceChangeListener.java:146)
    at com.bea.wli.config.impl.ResourceListenerNotifier.afterEnd(ResourceListenerNotifier.java:120)
    at com.bea.wli.config.transaction.TransactionListenerWrapper.afterEnd(TransactionListenerWrapper.java:90)
    at com.bea.wli.config.transaction.TransactionManager.notifyAfterEnd(TransactionManager.java:1154)
    at com.bea.wli.config.transaction.TransactionManager.commit(TransactionManager.java:1519)
    at com.bea.wli.config.transaction.TransactionManager._endTransaction(TransactionManager.java:842)
    at com.bea.wli.config.transaction.TransactionManager.endTransaction(TransactionManager.java:783)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$2.run(ServerDeploymentReceiver.java:275)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.commit(ServerDeploymentReceiver.java:260)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    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)
    Caused By: BINDING.JCA-12517
    Endpoint Activation Error.
    AdapterFrameworkImpl::endpointActivation - Endpoint Activation Error.
    The Resource Adapter IWAFOracleResourceAdapter was unable to activate the endpoint com.iwaysoftware.afjca15.IWAFOracleActivationSpec:{AdapterName=MySAP, ChannelName=IDOC_Inbound_ER1_110} due to the following reason: java.lang.NullPointerException
    Please correct the reported issue and redeploy the BPEL process.
    at oracle.tip.adapter.sa.impl.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:525)
    at oracle.tip.adapter.sa.impl.inbound.JCABindingActivationAgent.activateEndpoint(JCABindingActivationAgent.java:325)
    at oracle.tip.adapter.sa.impl.JCABindingServiceImpl.activate(JCABindingServiceImpl.java:113)
    at com.bea.wli.sb.transports.jca.binding.JCATransportInboundOperationBindingServiceImpl.activateService(JCATransportInboundOperationBindingServiceImpl.java:325)
    at com.bea.wli.sb.transports.jca.JCATransportEndpoint.activateJCABindingService(JCATransportEndpoint.java:122)
    at com.bea.wli.sb.transports.jca.JCATransportProvider.activationComplete(JCATransportProvider.java:507)
    at sun.reflect.GeneratedMethodAccessor270.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
    at $Proxy134.activationComplete(Unknown Source)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl$EndPointOperationCommon.activationComplete(ResourceLifecycleListenerImpl.java:748)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.activationComplete(ResourceLifecycleListenerImpl.java:336)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.changesCommitted(ResourceLifecycleListenerImpl.java:153)
    at com.bea.wli.sb.transports.TransportManagerImpl.changesCommitted(TransportManagerImpl.java:1205)
    at com.bea.wli.sb.service.ServiceChangeListener.changesCommitted(ServiceChangeListener.java:146)
    at com.bea.wli.config.impl.ResourceListenerNotifier.afterEnd(ResourceListenerNotifier.java:120)
    at com.bea.wli.config.transaction.TransactionListenerWrapper.afterEnd(TransactionListenerWrapper.java:90)
    at com.bea.wli.config.transaction.TransactionManager.notifyAfterEnd(TransactionManager.java:1154)
    at com.bea.wli.config.transaction.TransactionManager.commit(TransactionManager.java:1519)
    at com.bea.wli.config.transaction.TransactionManager._endTransaction(TransactionManager.java:842)
    at com.bea.wli.config.transaction.TransactionManager.endTransaction(TransactionManager.java:783)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$2.run(ServerDeploymentReceiver.java:275)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.commit(ServerDeploymentReceiver.java:260)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    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)
    Caused By: java.lang.NullPointerException
    at com.iwaysoftware.afjca15.IWAFOracleResourceAdapter.endpointActivation(IWAFOracleResourceAdapter.java:266)
    at oracle.tip.adapter.sa.impl.fw.jca.AdapterFrameworkImpl.endpointActivation(AdapterFrameworkImpl.java:498)
    at oracle.tip.adapter.sa.impl.inbound.JCABindingActivationAgent.activateEndpoint(JCABindingActivationAgent.java:325)
    at oracle.tip.adapter.sa.impl.JCABindingServiceImpl.activate(JCABindingServiceImpl.java:113)
    at com.bea.wli.sb.transports.jca.binding.JCATransportInboundOperationBindingServiceImpl.activateService(JCATransportInboundOperationBindingServiceImpl.java:325)
    at com.bea.wli.sb.transports.jca.JCATransportEndpoint.activateJCABindingService(JCATransportEndpoint.java:122)
    at com.bea.wli.sb.transports.jca.JCATransportProvider.activationComplete(JCATransportProvider.java:507)
    at sun.reflect.GeneratedMethodAccessor270.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.wli.sb.transports.Util$1.invoke(Util.java:83)
    at $Proxy134.activationComplete(Unknown Source)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl$EndPointOperationCommon.activationComplete(ResourceLifecycleListenerImpl.java:748)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.activationComplete(ResourceLifecycleListenerImpl.java:336)
    at com.bea.wli.sb.transports.ResourceLifecycleListenerImpl.changesCommitted(ResourceLifecycleListenerImpl.java:153)
    at com.bea.wli.sb.transports.TransportManagerImpl.changesCommitted(TransportManagerImpl.java:1205)
    at com.bea.wli.sb.service.ServiceChangeListener.changesCommitted(ServiceChangeListener.java:146)
    at com.bea.wli.config.impl.ResourceListenerNotifier.afterEnd(ResourceListenerNotifier.java:120)
    at com.bea.wli.config.transaction.TransactionListenerWrapper.afterEnd(TransactionListenerWrapper.java:90)
    at com.bea.wli.config.transaction.TransactionManager.notifyAfterEnd(TransactionManager.java:1154)
    at com.bea.wli.config.transaction.TransactionManager.commit(TransactionManager.java:1519)
    at com.bea.wli.config.transaction.TransactionManager._endTransaction(TransactionManager.java:842)
    at com.bea.wli.config.transaction.TransactionManager.endTransaction(TransactionManager.java:783)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver$2.run(ServerDeploymentReceiver.java:275)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at com.bea.wli.config.deployment.server.ServerDeploymentReceiver.commit(ServerDeploymentReceiver.java:260)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
    at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
    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)
    >
    ####<Oct 29, 2010 5:43:05 PM PDT> <Info> <Monitoring> <camintd9> <osb_server_dev1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <deytel> <> <da0648933571bbbb:49aa3b48:12bfa0af692:-7fe4-0000000000000130> <1288399385668> <BEA-000000> <New Metadata version is 7660978571157877258>

    Hello Julien,
    As per the the DOC:http://download.oracle.com/docs/cd/E14571_01/doc.1111/e17059.pdf (look for section "1.3 Configuring Oracle Application Adapters in a High Availability Cluster
    Environment for Oracle Service Bus")
    We should deploy the adapter to both the cluster and the admin server.
    So we can say that targeting iwafjca.rar to admin server (in addition to all cluster nodes) is the correct way to deploy SAP Adapter.
    HTH,
    DM

  • GLMAST01: Receiver exists , No filters , No conversion , No version change

    Hello All,
    I have explored forum for related messages and couldn't find the reason for IDOCs getting stuck in ECC with error as "GLMAST Receiver exists , No filters , No conversion , No version change" Status 30.
    We executed program RBDSEGLM and 1900 IDOcs were selected, 1100 went successfully to SAP PI system with status code as 03 but 800 got stck. When I run these IDOCs using BD87, WE19 or report RSEOUT00, they are sent successfully.
    Experts, please share views on reason behind IDOcs being stuck in ALE layer with status as 30 and the possible break-fix solution to avoid these.
    Thanks!
    Best Regards
    Prashant

    Hi Prashant,
    Idoc Status 30 means--IDoc ready for dispatch
    Also check in your partner profile under the outbound parameter for your message if the output mode is set as Transfer Idoc Immediately or Collect Idoc. your problem is certainly due to the fact that "collect idoc" option is set.
    All the idocs will get collected and sent once the report (RSEOUT00) is scheduled or manually triggered by transaction BD87.
    Change the option to "Transfer Idoc Immediately" or schedule the output program are your two solutions.
    Best regards,
    Laurent.
    (Remind Points if helpfull.)

  • IMessage beta loose all saved conversations when I open and close a window.

    iMessage beta looses all saved conversations when I open and close a window.
    Just reporting this bug... Could not find anyother place to do it.
    Jonathan

    I thought it was doing that also. But I found that if I start a new chat with someone I was messaging before, then the old messages re-appear in the messages window.

  • What happens to the conversation when you delete or move a message?

    I've always been a bit unclear what happens to other message in a thread/conversation when you delete or move the current message you are reading.
    Therre are 3 relevant view settings it seems:
    Organize by conversation (turned on).
    Display selected message only (not selected - why would one want to select this if organizing by conversation? Is there a use for that?)
    Show/Hide related messages (turned on so I can see replies I sent in the conversation).
    If I want to move the current message I'm reading, it seems to move the entire conversation to the target folder. But that's not what I want to do.
    Yet if I delete the current message I think it only deletes that one message.
    I'm a bit confused about how to think of this. Sometimes I see messages show up under "related messages" that are a year old that I thought I long deleted.
    Any easy way of thinking about how this is all working?
    Thanks,
    doug

    After using deauthorize all you need to authorize any computer that you wish to use to manage content on the device or unauthorized & protected content will be removed next time you make any changes to the content on the device.
    tt2

  • [AS][INDCC] How to set Color Conversion field to No Color Conversion when creating PDF Export preset

    How can i set Color Conversion field in Export to PDF dialog to No Color Conversion when creating PDF Export preset? i have done a bit of searching and have found where it has been recommended to set effective pdf destination profile to use no profile but it doesn't seem to be producting the expected results.

    Yes, it seems that i had to make the change after creation, not while creating the preset. thank you.
    tell application "Adobe InDesign CC"
         set newPreset to make new PDF export preset with properties ¬
              {name:"preset name", standards compliance:none, acrobat compatibility:acrobat 7}
         tell newPreset to set PDF color space to unchanged color space
    end tell

  • PhotoShop Filters grayed out when using Aperture

    I sent some photos from Aperture to PS to add some frames. Used the Texture filter and all went well for 3 photos. Then it quit working. Some of the filters are grayed out. I tried the same thing from Lightroom and it was the same. All worked fine with iPhoto. If I export the photos to another folder, desk top etc., then open them in PS, all the filters are working. But for some reason some of the filters will not work when opening a photo from Aperture to PS.
    Any suggestion why some filters would quit when they worked before?
    Thanks, Allie

    That's because you have ACR set to 8 bit and you have Aperture set to 16 bit. (Clicking the text that looks like a web link at the bottom of the ACR window is how you change it)
    You could change Aperture's external editor preferences to send 8 bit instead of 16 bit.
    Or
    Once in Photoshop you could change it: Image>> Mode >> 8 Bit as I think Steve was suggesting.
    DLS
    Message was edited by: MacDLS

  • Single Code Page Unicode conversion when source and target are the same

    Hi everyone.  We have recently upgraded our non-unicode 4.7 to ECC6 non-unicode.  Now we have begun researching the next step to convert to Unicode.  I know we could have done the Combined Upgrade and Unicode Conversion but I wanted to do thorough testing after the upgrade to eliminate too many variables if problems arose.
    So, my question is...has anyone done the Unicode conversion when source and target servers are the same?  Most documentation I've seen recommends a system copy to another box first.  I did find one forum thread that gave a high level approach to doing the conversion with just one server and listed this:
    Step 1:- Run Tcode SPUMG to scan
    Step 2:- Export Database
    Step 3:- Drop Database
    Step 4:- Create New Database
    Step 5:- Import database
    Step 6:- Chnage unicode Kernel
    What are your thoughts?  Is it supported?  Am I wasting my time and should I just bite the bullet and buy yet another system?  Thanks in advance.
    -Anthony

    Theoretically that's possible, yes. However...
    > Step 5:- Import database
    > Step 6:- Chnage unicode Kernel
    the import must be done using the Unicode kernel.
    So basically you can
    - export the old systm
    - uninstall system + database
    - start as if you were installing "from scratch" on a new box
    Markus

  • ALEAUDIT: No filters No conversion No version change

    Hi,
    I am getting following error while confirmation creation
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Technical Routing of Response
      -->
    - <SAP:Error SOAP:mustUnderstand="" xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SAP:Category>XIAdapter</SAP:Category>
      <SAP:Code area="IDOC_ADAPTER">ATTRIBUTE_ALEAUDIT</SAP:Code>
      <SAP:P1 />
      <SAP:P2>No filters</SAP:P2>
      <SAP:P3>No conversion</SAP:P3>
      <SAP:P4>No version change</SAP:P4>
      <SAP:AdditionalText>&amp; &amp;, &amp;, &amp;.</SAP:AdditionalText>
      <SAP:Stack>ALEAUDIT: No filters No conversion No version change</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Can anyone help?
    Thanks,
    PM

    Hi PM,
    Check if this related to table locks, go to SM12 and give EDDIC and see if there are any lock entries, if so delete them and reprocess the idoc...
    Thanks..
    Karna....

  • No filters , no conversion , no version change

    Hi ALL,
    I am geting for in bound idoc error has "" No filters , no conversion , no version change "
    can any body please help me .
    Thanks,
    venu.

    check this link for Error Analysis http://help.sap.com/saphelp_sm32/helpdata/en/52/16adef543311d1891c0000e8322f96/content.htm

  • Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time when trying to set custom property.

    Sharepoint 2013 webDAV PROPPATCH fails with status code 409 error every time, when trying to set custom property.
    anyone have any idea

    Hi
    Stumbled upon the resolution myself. The Bean Area item needs to be set to Visible=Yes in the property palette for the bean within Forms Builder, and also the implementation class also in the bean's properties must match exactly the package & class name specified in the PJC (my full implementation class string had to be set to oracle.forms.demos.runApplication).
    As this bean has no user interface component, and since the Visible property has to be set to Yes, to avoid having a random square shape for the bean sitting on the form's canvas, I also set the Width and Height properties for the bean to 0.001. This does show a very small dot on the form, but that will be acceptable.
    So in summary there has been a change for PJC / Bean Areas between 6i and 10g Forms, in 6i you could have the Bean Item to be set Visible=No, and the SET_CUSTOM_ PROPERTY built-in would work, however in 10g Forms the Bean Item must be set to Visible=Yes for the SET_CUSTOM_PROPERTY built-in to work.
    Daryl

  • Why am I getting two different conversations when the same person txts me and sends me an I message? I thought they should be in the same conversation?

    Why am I getting two different conversations when the same person txts me and sends me an I message? I thought they should be in the same conversation?

    I'm experiencing something similar. My conversations are kept together but if the screen is opened to a conversation and I receive a text from that person it doesn't show up on the screen. The message alert in the upper corner indicates a new text but I have to back out of the screen and go back in to read it.

  • Inbound IDoc MBGMCR02 Goods receipt for delivery status 51 Reference Docume

    Hello IDoc experts,
    I try to do a goods receipt for an inbound delivery using inbound IDOC MBGMCR02.
    The inbound delivery is linked to only one PO, and the bill of lading number in the delivery is unique.
    Still I get the following error message:
    Reference Document Number is existing at more then one Purchase Order!
    The inbound delivery is linked to only one PO, and the bill of lading number is unique
    These are the fields I fill:
    E1EBP2017_GM_HEAD01
            PSTNG_DATE:  '20100421
            DOC_DATE:   '20100421'
            REF_DOC_NO: 180000008 (number of the inbound delivery)
            BILL_OF_LADING: 4500001992 (I have put the PO number in the bill of lading number in the delivery)
    E1EBP2017_GM_ITEM_CREATE
            MATERIAL: CH0463COEUR\1 (material number of the first item of the delivery)
            PLANT: ST01
            STGE_LOC: 0001
            MOVE_TYPE: 101
            VENDOR: 100080
            ENTRY_QNT: 100
            ENTRY_UOM: PCE
            ENTRY_UOM_ISO: PCE
            PO_PR_QNT: 100
            ORDERPR_UN: PCE
            ORDERPR_UN_ISO: PCE
            PO_NUMBER: 4500001992
    E1EBP2017_GM_ITEM_CREATE1
            DELIV_NUMB: 180000008
            DELIV_ITEM: 10
    Do you guys have any idea where I go wrong?
    Kind regards,
    Rudy Zijp

    I hope you filled the moment typ indicatior E1BP2017_GM_ITEM_CREATE.MVT_IND to 'B'.
    and E1BP2017_GM_CODE-GM_CODE  to '01 and for Bill of lading field also pass delivery nymber.
    please try with these inputs.
    Regrds,
    Suresh
    Edited by: Suresh Reddy Avutu on Apr 29, 2010 4:40 PM

  • Goods receipt for inbound delivery

    Hi,
    I'm using idoc  DELVRY03 in order to post a goods issue. And It's working very well.
    I want to make a goods receipt for an inbound delivery using idoc DELVRY03. When I use this idoc for this (To make a goods receipt), my delivery can't be updated any more (Just like if the goods issue was done) and Its status are updated. And I can't to make the goods receipt manually. But the stock isn't updated, No item document is generated, and the quantity received is still equal to 0.
    Can any one please tell me if there is a special thing I need to do in order It works. And If It's not possible, to make the goods receipt using delvry03, what's the idoc type allowing to do this.
    Thanks in advance

    Hi
    Please try using idoc type DESADV01.
    Please award points if  you find this helpful
    rgds

Maybe you are looking for

  • How to use a event structure with a state machine

    First, I would like to inform you that I only work on LabView part time, and have much to learn.  Anything I do learn, I usually forget until I need it again, because I only work on it part time. Using your StopWhileLoopMOD[1].vi, I am trying to put

  • How do I change my thunderbird password?

    My email was comprimised and I was told to change my password; also it said it is helpful to also use a master password. I think someone is reading my email and I want to change my password again but have been unable to accomplish this. I have cancel

  • Applications will not open after 10.5.2

    Following install of 10.5.2 via Software Update, many applications (Office 2008, Photoshop, et al) hang and will not open. I downloaded and installed the 343 Meg Combo Updater and still have the same problem. Some applications work and others will no

  • BC4J Issuing Rollback to Savepoint

    Hi we are having a serious issue with BC4J in our production environment. It issues a Rollback to Savepoint command. The database session that performs the command still has a locks in the database, specifically on the rollback segment. When other us

  • How to see parameters in Watchlist

    Hi, The code module (TestComplete) returns a value.  I mapped the return value to a parameter name in TestStand (Parameter.CloseProjectResult),  see attached. But when I open the Watchlist (for debugging), This Parameter name does not exist.  So my q