Adapter PLAINHTTP cannot process message packages

Hi,
I'm receiving 10 lines in one message from ERP and then PI splits them to individual messages. When PI tries to send messages using plain HTTP, I got error saying "Adapter PLAINHTTP cannot process message packages".
Message packaging is not on and SXI_MONITOR shows messages in separate payloads.
br,
Tapio

This is my assumption.
Multiple messages that result from mapping are sent as one bulk message (grouped together) in the Integration engine. The  messages are really split into  individual mesges only in the adapter engine. Since HTTP adapter live in Integration Engine and you use HTTP as receiver, you get this error.
Refer the conclusion portion of the link for further explanation.
/people/jin.shin/blog/2006/02/07/multi-mapping-without-bpm--yes-it146s-possible

Similar Messages

  • Outbound mails fails with error message number 826,Cannot process message,

    Hi
    We are in process of configuring outbound mail.
    Profile parmeteres adapted are icm/server_port_0= PROT=SMTP,PORT=0,
    is/SMTP/virt_host_0=:;and followed the notes 421359 for ICM Parameters
    when we give the SMTP port number as 25,SMTP serveice in SMIC is not working and when we changed to 0 SMTP service is working.
    Now the issue coming is we are not able to send the Mails to any domains and the error message in SOST is
    *message number 826,Cannot process message, no route from XXXXX to XXXXX.com.*
    Please suggest on how to over come the issue,are we missing any parameters or any other configurations.
    All your help is highly Appreciated.
    Regards
    Swetha

    HI
    Did you check in SCOT?
    SCOT>SMTP->Internet
    SCOT>Settings-->Default Domain.
    Please also check if you can telnet the SMTP server.
    Anindya
    Edited by: Anindya Bose on Mar 3, 2010 5:13 PM

  • Cannot process messages after applying BT 2010 CU6 if BAM tracking profile references BTAHL7 messaging payload schemas

    We are unable to process HL7 V2 messages after applying BizTalk 2010 CU 6 in a development environment when we have a BAM tracking profile deployed that references the BTAHL7 messaging payload schemas. The messages process with no issue if we remove the
    message payload schema field mappings and use only message context properties. We have replicated this issue using only the default BTAHL7 pipelines and microsoft.com HL7 V2.3 unedited schemas and a very simple BAM activity and tracking
    profile. In other words, we've eliminated our customization and still see the issue. The messages fail in the pipeline with the following error:
    A pipeline component in the receive pipeline:<BTAHL72XReceivePipeline>,Version=1.0.0.0, Culture=neutral, PublicKeyToken=75be5a91f43bf6c9" is using the message context
    properties "BTS.MessageDestination" or "BTS.SuspendMessageOnRoutingFailure" in a unsupported fashion. The pipeline processing is being terminated.
    Can anyone help us resolve this issue?
    Thanks.

    This seems to be a known bug please refer the below discussion-
    BizTalk Server 2010 Cumulative Update 6 - Compatibility with BTAHL7?
    I would suggest you to uninstall CU6 first, restart the VM, Install CU7 and restart again.
    CU 7 will have all the bug fixes for BizTalk 2010 till date.
    Cumulative
    update package 7 for BizTalk Server 2010
    Service Pack
    and Cumulative Update list for BizTalk Server 
    Please let me know if there is anything that I can do to help.
    Thanks,
    Prashant
    Please mark this post accordingly if it answers your query or is helpful.

  • File Adapter: Run OS command unix after processing message

    Hi,
    in file adapter configuaration, after processing message, I've configured the channel that it has to call an unix script.
    The sintax in configuration is:
    sh /XS0/usr/sap/XS0/DVEBMGS01/work/TEST_FILE_XI/OUT/rename_lib_contabili.sh <variable>.
    I tried also without the entire path and without the sh command at start of it.
    We have a XI 3.0 sp20.
    I don't understand, What other I have to do.
    Regards,
    Antonello

    Hi Carme,
    I found a warning that "describes" the error...
    2009-09-29 13:36:15     Success     Write to file "/XS0/usr/sap/XS0/DVEBMGS01/work/TEST_FILE_XI/OUT/LIBROGIORNALE_test_mov.zip" as binary, size 7248 bytes
    2009-09-29 13:36:15     Success     Execute OS command "/home/xs0adm/scripts/rename_lib_contabili.sh LIBROGIORNALE_test_mov.zip"
    2009-09-29 13:36:15     Warning     Error when executing OS command "/home/xs0adm/scripts/rename_lib_contabili.sh LIBROGIORNALE_test_mov.zip"
    2009-09-29 13:36:15     Success     File processing complete
    2009-09-29 13:36:15     Success     MP: Leaving module processor
    2009-09-29 13:36:15     Success     The message was successfully delivered to the application using connection
    File_http://sap.com/xi/XI/System.
    2009-09-29 13:36:15     Success     The message status set to DLVD.
    if I try to execute this script from Unix schell or ABAP OS shell this working fine.
    You have any idea?!
    Thanks,
    Antonello

  • Sender jms adapter-archiving before processing the message

    Hi,
    Do we have any option in Sender JMS adapter to archive the message before processing the message?
    I have searched in sender JMS adapter (XI7.0) settings, but couldn't find any option.
    My assumption is whether any option provided in configuration setting of adapter engine or any other alternatives.
    Thanks,
    Srini.

    Hi Srini.
    Here is the code. But you may prefer the EAR module, just for deploy. I need your email to send it to you.
    If you want to create it yourself follow the steps in this guide and paste the code:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f013e82c-e56e-2910-c3ae-c602a67b918e
    When you configure the module in the JMS sender communication channel you have to spedify 2 parameter for the log file location:
    "file.path" (XI server file system path) and "file.name"
    CODE:
    package com.bfa.af.modules;
    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.util.Date;
    import javax.ejb.CreateException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import com.sap.aii.af.mp.module.Module;
    import com.sap.aii.af.mp.module.ModuleContext;
    import com.sap.aii.af.mp.module.ModuleData;
    import com.sap.aii.af.mp.module.ModuleException;
    import com.sap.aii.af.ra.ms.api.Message;
    @author ibermatica
    public class BFATraceModule implements SessionBean, Module {
         private SessionContext myContext;
         public void ejbRemove() {
         public void ejbActivate() {
         public void ejbPassivate() {
         public void setSessionContext(SessionContext context) {
              myContext = context;
         public void ejbCreate() throws CreateException {
         public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException
              FileWriter outFile;
              try
                   Date date = new Date();
                   String filePath = moduleContext.getContextData("file.path");
                   String fileName = moduleContext.getContextData("file.name");
                   outFile = new FileWriter(filePath + System.getProperty("file.separator") + fileName, true);
              catch (IOException e)
                   e.printStackTrace();
                   throw new ModuleException(e);
              PrintWriter out = new PrintWriter(outFile, true);
              try
                   out.println("--- Start of message ---");
                   //Get message content.
                   Message data = (Message)inputModuleData.getPrincipalData();
                   if(data.getDocument() != null)
                        out.println(data.getDocument().getText());
                   else
                        out.println("Empty message.");
                   out.println("--- End of message ---");
                   out.println("Total characters: " + data.getDocument().getText().length());
              catch(Exception exc)
                   out.println(exc.toString());
              finally
                   if(out != null)
                        out.close();     
                   if(outFile != null)
                        try {
                             outFile.close();
                        } catch (IOException e1) {
                             throw new ModuleException(e1);
              return inputModuleData;

  • Cannot deploy process flow package specification from file

    Hi,
    we are using owb 11gr2 on linux. We successfully managed to deploy mappings and tables into a specification file, and then deploy from that file into the target database (RAC). But when we try to deploy a process flow package we run into an error:
    A process flow package can be deployed to a specification file. But a deployment from that specification file fails with the error: " OMB05623: Cannot deploy specification from file. Exception follows. nulll"
    ### SETUP
    set CONN_DESIGN "xxx"
    set CONN_TARGET_DESIGN "yyy"
    set CONN_TARGET_RT "xxx'"
    set DIR "D:\\tmp"
    set RELEASE "V0_2"
    set file "$DIR\\$RELEASE"
    set plan "FILE_DEPLOY_$RELEASE"
    ### Deployment via control center: works!
    OMBCONNECT $CONN_DESIGN
    OMBCONNECT CONTROL_CENTER $CONN_TARGET_RT
    OMBCC '/KLINGEL_DWH'
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN '$plan'
    OMBALTER DEPLOYMENT_ACTION_PLAN '$plan' ADD ACTION 'PF_TEST' SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE PROCESS_FLOW_PACKAGE '/KLINGEL_DWH/WF_DWH/PF_TEST'
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN '$plan'
    OMBDISCONNECT CONTROL_CENTER
    OMBCOMMIT
    OMBDISCONNECT
    ### Deployment via specificatin file: fails!
    OMBCONNECT $CONN_DESIGN
    OMBCONNECT CONTROL_CENTER $CONN_DESIGN
    OMBCC '/KLINGEL_DWH'
    OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN '$plan'
    OMBALTER DEPLOYMENT_ACTION_PLAN '$plan' ADD ACTION 'PF_TEST' SET PROPERTIES (OPERATION) VALUES ('REPLACE') SET REFERENCE PROCESS_FLOW_PACKAGE '/KLINGEL_DWH/WF_DWH/PF_TEST'
    OMBDEPLOY DEPLOYMENT_ACTION_PLAN '$plan' AS SPECIFICATION TO '$file.xml'
    OMBDROP DEPLOYMENT_ACTION_PLAN '$plan'
    OMBDISCONNECT CONTROL_CENTER
    OMBCOMMIT
    OMBDISCONNECT
    OMBCONNECT CONTROL_CENTER $CONN_TARGET_RT
    OMBDEPLOY SPECIFICATION FROM '$file.xml'
    ### OMB05623: Deployment von Spezifikation aus Datei nicht möglich. Exception folgt. null
    ###OMB05623: Cannot deploy specification from file. Exception follows. nullIf we use the operation DROP it works. But REPLACE and CREATE do not work.
    We get the error regardless whether the code is executed as an expert or on the command line at a windows client.
    Does anyone knows a workaround?
    Deployment via a specification file is a must due to license and architecture requirements.
    Thanks,
    Carsten.

    Its woked fine for me for OWB 10.2.0.4 .... some steps are missing from code like
    when you are connecting again it should be
    OMBDISCONNECT
    OMBCONNECT CONTROL_CENTER $CONN_TARGET_RT
    OMBDISCONNECT
    OMBCC '/KLINGEL_DWH'
    OMBCONNECT CONTROL_CENTER $CONN_TARGET_RTI think you can try the same on different system .
    Cheers
    Nawneet

  • Exception processing message error cannot open illustrator

    I have Illustrator CS4 running on a PC with double quad processor and 4 Gb or RAM, running on a XP-Professional platform.
    I have had a lot of problems with all sort of crashes, which have delayed my due date for these projects and no answers on any of the reports I have sent.
    Anyways, today I came and turn on my computer and when trying to launch illustrator this error appears.
    'Exception Processing Message c0000013 Parameters 7c7df5f8 9cc8b118 7c7df5f8 7c7df5f8
    It comes with 3 options Cancel Try Again and Continue
    If I select Try Again it continues poping up at forever basis.
    If I select Cancel just kills the opening of the program
    If I select Continue, the message repeats itself several times until the program opens, but then once I'm working on the file, another message appears saying, FILE NOT READABLE.
    I have more than 200 Gb free on disk and I have not moved any file from it's original location.
    I am just one step of getting fired if I cannot complete this task by the end of today and the program is killing me, please help how can I fix this problem?
    It is incredible that I have these many problems for one program.
    Thanks.

    It is running in a 64bit OS, not 32, and amazingly all the programs work just fine exce
    pt illustrator, not even photoshop, autocad, inventor, solidworks....
    Intel(R) Core(TM)2 Quad CPU
    Q8300 @ 2.50 GHz
    3.99 GB of RAM
    The CPU Usage  is about 24% Max.... when doing tasks
    And the PF Usage is no more than 1.13 GB RAM Which should be more than enough to handle the program don't you think?
    I wonder how the people using the minimum requirements work with way less problems than these?
    Yes, it should be a dll problem, I wonder how can I fix it.

  • Exporting processed messages from adapter engine monitoring to excel

    Hey experts,
    I have some messages that are processed successfully. I can see them in the message monitoring for adapter engine in the RWB. I want to know if there is a way to export these messages to excel file.
    Also we have a files archived by PI with a .001 extension attached to them. Is there a way to open these files and look at the processed messages?
    Any help would be greatly appreciated.
    Regards.

    I can see them in the message monitoring for adapter engine in the RWB. I want to know if there is a way to export these messages to excel file.
    I don't think so.But you can right click.Select View Source.And then save the message in a notepad.
    Also we have a files archived by PI with a .001 extension attached to them. Is there a way to open these files and look at the processed messages?
    I don't get this! You can open these files by doing a right click.Open with wordpad.

  • Material document cannot be processed ( Message no. M7130 )

    Hi all.
    Recurring inspection lot is created automatically through tcode QA07.
    But i will cancel the recurring inspection. it is stock relevant, because i cann't cancel directly from QA02> function> cacel inspection lot. So i was reversed the materials document which created when the inspection lot makes automatically through tcode MBST.
    And i make the error message.
    Material document cannot be processed
    Message no. M7130
    Diagnosis
    This material document was generated through the posting of a physical inventory document, a delivery via Shipping, or some other automatic movement (such as an order confirmation in PP or a usage decision in QM) and cannot be processed with this function.
    System Response
    In this transaction, the system can only cancel a material document if the latter was created using an Inventory Management transaction.
    Procedure
    Cancel the material document in the component that created the document.
    You can only reverse the goods movement created through the posting of a physical inventory document by carrying out a new physical inventory for the relevant material. You can reverse a delivery effected via Shipping using transaction VL09.
    How to reverse the materials document??

    what do you actually want to cancel? it looks like your inspection lot  and the usage decision is done. What was the result of this usage decision? and how do you want it to be?
    As you already know, a movement created from Q-module cannot be cancelled in MM with MBST.
    so you need another movement created from QM module to make a transfer posting into the opposite direction.
    Maybe it is easier for you to create a new inspection lot manually and process another usage decision, than going thru a cancellation process.

  • Cannot process your request error message!!!

    I am trying to block a certain number from our phone lines, and it will not let me do it!!!! it says we cannot process your request at this time, try again later! whats going on?????

    Hello rc1985,
    I can assist you with blocking the number. There is a possibility that the Call and Message block feature is not added to the account which will result in receiving this error message. If this issue has not been resolved, please send me a private message with your mobile number and I will ensure that the feature is added to your account.
    Thank you, 

  • MDB,MDB container or JMS adapter stops processing messages from JMS queue

    Hi guys,
    we have created a component using Enterprise Java Beans, let's say a product catalog, deployed it on a Glassfish v2 instance, and connected it to a legacy system using JMS and Sun MQ v4.1 as messaging system. The catalog component thus starts one MDB that listens on a JMS queue, let's say a queue named catalog_business_events_in, and waits for incoming messages, i.e. in our case update events. The problem is, that in general this approach works well, but sometimes the MDBs/JMS adapter stops for some reason fetching and processing messages from the JMS queue. We don't know why - no exceptions, etc.. Seems to be a Glassfish EJB container, JMS adapter or Sun MQ configuration issue. It seems to be that our component is not the problem.
    The messages are compressed/uncompressed by Sun MQ automatically. We actually have 2 Sun MQ instances in clustered mode running to have some kind of failover - no HA cluster, yet. Sun MQ instances are accessed from Glassfish instances running in different Glassfish clusters - so we have a dedicated Sun MQ cluster not a Sun MQ instance per Glassfish instance. Each Glassfish instance is configured such that it knows both Sun MQ instances to allow automatic failover.
    Has someone an idea, why the MDBs/ MDB container/ JMS adapter - stops processing messages? We are kind of puzzled as it happens more often now and apparently when traffic is (very) low not high!
    Thanks for your help.
    Cheers,
    Martin
    Edited by: east1979 on Jan 13, 2009 8:06 AM

    Hi Manoj,
    I have a very similar if not identical issue,
    Error while running realtime jobs that read from JMS tables via JMS MQ adapter:
    15/11/12 09:10:08  JMS GET OPERATION ERROR : TIMEOUT.UNABLE TO RECEIVE RESPONSE FROM THE INVOKED DATA SERVICES SERVICE.ADAPTER OPERA
    TION TO CONTINUE.
    15/11/12 09:10:15  Communication Error. See real time job log for details.
    Dump available:
    https://sapmats.wdf.sap.corp/download/download.cgi?id=5C0KZAHA3RSXBJW3ABLMUUT2P5UUKWO2TM3EJDM5W2HGDZUDID
    Version of DS:14.0.3.273
    Any comments?
    Thansk and kind Regards,
    Kenneth

  • Cannot abort event - A pending Events processing message

    Hi
    We have some pending events with 1360 try count that i cannot abort.
    when we try to abort them: A pending Events processing message is currently in progress
    current state: 10 : Waiting for policy paths to become accessible
    last error: 27 : File system path already exists.
    theses account seems to be ok (good homedir, roghts, quotas.)
    when we try to bypass, abort, we got the message: A pending Events processing message is currently in progress
    thanks

    On 8/28/2012 9:46 AM, phfournier csdl wrote:
    >
    > Hi
    >
    > We have some pending events with 1360 try count that i cannot abort.
    >
    > when we try to abort them: A pending Events processing message is
    > currently in progress
    >
    > current state: 10 : Waiting for policy paths to become accessible
    >
    > last error: 27 : File system path already exists.
    >
    > theses account seems to be ok (good homedir, roghts, quotas.)
    >
    > when we try to bypass, abort, we got the message: A pending Events
    > processing message is currently in progress
    >
    > thanks
    >
    >
    phfournier,
    This sounds like something we'd need to work with you directly on.
    Please send an email (if you haven't already) to
    [email protected] If you can, please attach your latest Engine
    log file (found in /var/opt/novell/storagemanager/engine/log by default)
    and a copy of a Runtime Config report from NSM to that email -- those
    are some basic troubleshooting things we'll need. Thanks!
    -- NFMS Support Team
    - NFMS Support Team

  • Exception caught by adapter framework: error while processing message to ..

    URGENT:
    <b>Legacy >XI>R3 interface</b>
    <b>SAP XI (file_adapter --> RFC_adapter)</b>
    Friends.
               I need your help for next problem above:
    Delivery of the message to the application using connection RFC_http://sap.com/xi/XI/System failed, due to: com.sap.aii.af.ra.ms.api.RecoverableException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>: com.sap.aii.af.rfc.afcommunication.RfcAFWException: error while processing message to remote system:com.sap.aii.af.rfc.core.client.RfcClientException: functiontemplate from repository was <null>.
    Thanks very much for your helps
    Nota: This error is XIPRO environment.
    Message was edited by:
            Cristian Alejandro Toro Salazar
    Message was edited by:
            Cristian Alejandro Toro Salazar

    Hi Cristian,
    >>>>functiontemplate from repository was
    this SAP note 730870 - describes your issue
    let me know if it helped
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Using ABAP Message Packaging in SAP PI 7.0 SP12

    Hi Experts -
    Client is running a SAP PI 7.0 on SP12.
    Question: Can turn on the ABAP message packaging (not for BPM) on the Integration Server and benefit from the performance feedback? Or is an upgrade to SP13 required?
    Please do not post any links - simple question, simple answer
    Thanks a lot.
    Best Regards
    Mathias

    Synchronous message, deleted message or already (successfully) processed message cannot be restarted.
    Regards,
    Abhishek.

  • How to Cancel Succesful Processed Messages

    Hi Experts,
    How to cancel the succesful processed messages which reached Integration Server and sender Adapter engine in XI.
    Thanks
    Venkat Anil

    We cannot cancel Successfully processed messages.
    However you can configure Archiving and/ or deletion of successfully processed messages to remove the entry from the DB
    Edited by: abhishek salvi on Jan 8, 2010 2:57 PM

Maybe you are looking for