Message is inserting multiple times in target system

Dear Experts,
We are using MDM to JDBC system. we are sending 2 sales Org and multiple plants in sender XML message we had done a mapping by spliting 2 sales Org x No.of Plants (Eg: 2 sales Org x 5 Plants = Total 10 records to be inserted at target system).
But we observed all the 10 records are inserted 4 times with the time interval of every 5 mins in target system.
Pls let us know the solution if you have come across this kind of issues.
Thanks & Regards
Soumya

Dear Greg,
Thanks for your reply
Data is inserting in target system and we are getting error in RWB communication channel monitoring.The message is processed 4 times and failed all the times and the time interval between each processing is 5min.
In adapter engine the message status is successful for 1time and system error in other time.
Thanks & Regards
Soumya

Similar Messages

  • Orchestration Instance - message data being inserted multiple times to database

    Hello,
    I have a Transactional Scope orchestration which has an expression shape which writes unique messages to a custom database using helper - ADO.Net. We are noticing that when the BizTalk server (BTS 2009) is under stress few messages are
    getting inserted multiple times. On further researching we have narrowed down the cause to be that when there is a delay in ADO.NET insert command completion, the orchestration engine wait threshhold is met and decides to dehydrate. But if around
    the same time the ADO.NET insert completes and then after some time orchestration rehydrates and resumes from last persistence point, it inserts the message again causing the duplicates. Has anyone seen such behavior?
    Thanks in Advance!

    Yeah, we knew only other alternative is to use the WCF-SQL Adapter and include in Orchestration transaction - saw this pattern somewhere, do not want to use atomic scopes as it could lead to blocking. I'm sure there are several implementations out there
    that user helper classes to do DB insert/updates and should have seen a similar issue.
    I just want to make sure we are not missing something here. I strongly feel Microsoft BizTalk team should clearly state in their documentation that helper DB insert/updates should be avoided or put it in their best practices so that developers
    dont have to figure this out the hard way.
    Thanks!
    You may try to call helper class from map inside Receive/send port using XSLT templates. Then you don't have to worry about orch. And in send port advanced properties you can set re-try to '0' so it doesn't try again 3 times. Either it fails first go and completes
    once.

  • I get a JavaScript Application error message that appears multiple times on most webpages and I don't know what the problem is.

    Here is the error message:
    [JavaScript Application]
    evalInSandbox:Error: Premission denied for
    <https://www.facebook.com> to create wrapper for
    object of class UnnamedClass
    The message pops up multiple times whenever I reload certain pages.
    The problem does not happen in Safari or Chrome.
    I've restarted Firefox but it does not help.
    Let me know if there is anything I can do to make the error stop.
    Thanks!

    hello flabs, this is likely caused by an outdated extension. in case you have the social fixer addon installed, please update it to the latest version that is available at http://socialfixer.com/blog/category/releasenotes/.

  • InfoCube Error Message: Choose a change request with target system BWQ

    Hi experts,
    I have a problem when I want to edit an InfoCube created by other developer. The error message received is as follow:
    "<b>Choose a change request with target system BWQ</b>".
    When I click on the Documentation (F9) button, the detailed message is:
    "Message no. TK511
    Diagnosis
    The selected change request BWDK901086 has target system .
    However, the objects you edit can only be recorded in change requests with the target system BWQ.
    The correct target system is determined from the package and transport layer to which the object concerned belongs.
    System response
    The selected change request BWDK901086 is not used to record the objects.
    Procedure
    Either choose a different change request or change the target system of the change request BWDK901086.
    From the prompt window for change requests, you can display all requests you can use by choosing Own requests.
    Alternatively, you can create a new request by choosing Create request.
    For more information, see the SAP Library under BC - Basis Components -> Change and Transport System ."
    Can someone helps me to solve this problem?
    Thanks!

    hi Fullham,
    try se09/10 and find request BWDK901086 (use binocular icon) or se03. then double click that request, go to tab 'properties', hope you will see 'Target System' system there, click 'edit'/pencil icon and change it to BWQ.
    you may need to change the owner (which may not authorized), ask basis help if necessary.
    hope this helps

  • ORA-01654 error message when inserting multiple records

    Hello all,
    I have a Test table with attributes TEST_ID, TEST_NAME, TEST_DATE, STATUS, and want to insert multiple records into this table based on user input form. If user select a value from the drop down list, and the number of records to insert into the Test table, the application should insert that many into the Test table with the same TEST_DATE, STATUS, but TEST_NAME should be the drop down list value + i (1....the number of inserted records). I manually created the form, and wrote a sql for the process.
    For example if the user select MUSIC, 3 then data should look like this
    TEST_ID TEST_NAME TEST_DATE STATUS
    1 MUSIC1 04/06/2010 Y
    2 MUSIC2 04/06/2010 Y
    3 MUSIC3 04/06/2010 Y
    I got the error ORA-01654: unable to extend index TEST_TOOL_ID.TEST_PK by 128 in table space FLOW_13120862905990037739.
    The process query
    DECLARE IDTEST NUMBER := 1;
    BEGIN
    WHILE (IDTEST < :P1_COUNT + 1) LOOP
    INSERT INTO TEST ( TEST_NAME, TEST_DATE, STATUS )
    VALUES ((:P1_TEST_NAME || ' ' ||IDTEST), SYSDATE, 'Y');
    END LOOP;
    END;
    Here is the link to this application
    http://apex.oracle.com/pls/apex/f?p=4000:1:3173416575551580::NO:RP:FB_FLOW_ID,F4000_P1_FLOW:32828,32828
    Any help would be appreciated.
    Thanks,
    Karoline

    This is the output i get when i change the getMessage with printStackTrace.
    String getMessage() replaced with printStackTrace:
    G:\studies\Chapter11\MakeDB.java:33: 'void' type not allowed here
                   System.out.println("Could not drop primary key on UserStocks table: "
    ^
    G:\studies\Chapter11\MakeDB.java:43: 'void' type not allowed here
                   System.out.println("Could not drop UserStocks table: "
    ^
    G:\studies\Chapter11\MakeDB.java:54: 'void' type not allowed here
                   System.out.println("Could not drop Users table: "
    ^
    G:\studies\Chapter11\MakeDB.java:64: 'void' type not allowed here
                   System.out.println("Could not drop Stocks table: "
    ^
    G:\studies\Chapter11\MakeDB.java:83: 'void' type not allowed here
                   System.out.println("Exception creating Stocks table: "
    ^
    G:\studies\Chapter11\MakeDB.java:102: 'void' type not allowed here
                   System.out.println("Exception creating Users table: "
    ^
    G:\studies\Chapter11\MakeDB.java:119: 'void' type not allowed here
                   System.out.println("Exception creating UserStocks table: "
    ^
    G:\studies\Chapter11\MakeDB.java:133: 'void' type not allowed here
                   System.out.println("Exception creating UserStocks index: "
    ^
    G:\studies\Chapter11\MakeDB.java:159: 'void' type not allowed here
                   System.out.println("Exception inserting user: "
    ^
    9 errors
    Tool completed with exit code 1

  • Will a message be consumed multiple times?

    Hello all:
    I guess this question was asked before, for that I apologize, but I did a search and found nothing so far.
    I am actually using solace as the message broker in my project. When a response is published on a topic, there are several waiting client instances listening to that topic. Are these consumers competing for whatever message published on this topic? Say, if instance#1 get the message first but this is not what it wants, will this message get lost in a black hole, or other instances still have a chance to get hold of it?
    I guess this is a common scenario, so sorry for the naive question.
    Thanks,
    John

    sorry for the late response.
    As I metioned I use solace systems, (http://www.solacesystems.com), I should have looked for a more relevant forum but unfortunately I couldn't find one.
    I noticed something new in my latest tests, this is what I did:
    - start the server;
    - start the client;
    - client sends request to run a stored proc;
    - server runs the stored proc and sends 16 packages back to solace;
    - first time, client receives all 16 pkgs;
    - the same client sends the same request again, the 2nd time and the following attempts get fewer packages;
    - the server log shows all packages are still emitted each time.
    When the client sends the request, it publishes it to a topic. When the server sends back, it directly "reply" to the client.
    I am quite puzzled that how come some packages could even get lost.
    Could it be that the server sends the packages faster than the client can consume therefore some get lost? But in the 1st time of receiving all packages were received.
    Thanks for your thoughts,
    John

  • Same error message getting added multiple times on clicking of row.

    I have an application table where I can add an employee. At EO level, I have kept the unique key validator so that user cannot add the same employee again in the table.
    So, now if user try to add the same employee which is already added in the table, then when I click on some other row (i.e on row change), an error message comes (which we have set at the EO level).
    Now if you keep on clicking this row, the same error messages will keep on adding in the error box which is displayed. So, its like if you click the same row 5 times, the same error message will be shown 5 times in the error dialog box.
    But the moment you click on some other row, it works fine i.e it shows you the error message only once which is what I want. So, is there any way to solve this issue?

    my jdev version is 11.1.1.6.0
    And sorry but I didnt get your 2nd question regarding af:message tag! The message is coming from some bundle and we have set the message at EO level.

  • Skype error message but billed multiple times

    I added money to my skype account using my mobile phone _kept getting error ' transaction failed'. I tried the times before giving up then noticed I got charged for ask those tries even though error message appeared after each trial.
    I would like to know what refund process is for this glitch that ended up costing $45 instead of $15
    Please advise asap

    my jdev version is 11.1.1.6.0
    And sorry but I didnt get your 2nd question regarding af:message tag! The message is coming from some bundle and we have set the message at EO level.

  • Mail blocked on imac. Same message keeps appearing multiple times in the Recovered Messages folder but no new email gets through. Fine on ipad. Any help appreciated....

    Haven't received any new emails on imac since 4 Sept (all received fine on ipad) and online gmail account. We sent an oversized message on that date and it keeps appearing continually (literally hundreds of times) in the Recovered Messages folder. I'm assuming this is causing some sort of blockage?? Seem to be able to send mail OK, just not receive (apart from new versions of the 4th September message). Any help gratefully received. Thanks

    Hi,
    Since Outlook running on Windows works well, it seems an issue on the Mac side. I suggest ask Mac for help so that you can get more professional suggestions.
    More information for your reference:
    Please try to verify whether there is any expired certificate from the computer personal store.
    If it is the case, please remove them.
    Thanks
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Mavis Huang
    TechNet Community Support

  • Bapi_po_create1 is giving same system messages  multiple time in the joblog

    Hi Experts,
    Bapi_po_create1 is giving same system messages multiple times in the job log when we ran the program in the background
    can u plz suggest how to prevent these multiple appearances of same messages.
    I am pasting the code below whn i ran this program in backgorund job log is having the messages.
    Date       Time     Message text                                                                 Message class Message no. Message type
    08/06/2009 08:11:53 Job started                                                                       00           516          S
    08/06/2009 08:11:53 Step 001 started (program ZZZTEST, variant &0000000000008, user ID BREDDY)        00           550          S
    08/06/2009 08:11:54 Commitment plan contains no account assignment data                              MECP          020          S
    08/06/2009 08:11:54 Commitment plan contains no account assignment data                              MECP          020          S
    08/06/2009 08:11:54 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:54 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:54 Source not included in list despite source list requirement                       06           722          E
    08/06/2009 08:11:55 Pricing/euro: Attention: Euro Customizing not maintained                          VH           777          S
    08/06/2009 08:11:55 Pricing/euro: Attention: Euro Customizing not maintained                          VH           777          S
    08/06/2009 08:11:55 Status "Initial Block" of material 20111 does not allow external procurement      ME           053          E
    08/06/2009 08:11:55 Purchase order still contains faulty items                                       MEPO          000          E
    08/06/2009 08:11:55 Job finished                                                                      00           517          S
    Edited by: bhavani prasad kotharu on Aug 6, 2009 3:09 PM

    HERE IS THE CODE OF THE PROGRAM, WE R JUST PASSING SOME PO DATA TO THE BAPI_PO_CREATE1,ON RUNNING THIS PROGRAM IN BACKGROUND SAME SYSTEM MESSAGES ARE APPEARED MULTIPLE TIMES,----
    REPORT zzztest.
    DATA :    lwa_bapimepoheader TYPE bapimepoheader
             ,lwa_bapimepoheaderx TYPE bapimepoheaderx
             ,li_bapimepoitem TYPE STANDARD TABLE OF bapimepoitem
             ,lwa_bapimepoitem TYPE  bapimepoitem
             ,li_bapimepoitemx TYPE STANDARD TABLE OF bapimepoitemx
             ,lwa_bapimepoitemx TYPE bapimepoitemx
             ,li_conditions TYPE STANDARD TABLE OF komv
             ,li_return TYPE STANDARD TABLE OF bapiret2
             , n TYPE c
    PARAMETERS: p1 TYPE c AS CHECKBOX.
    IF p1 = 'X'.
      lwa_bapimepoheader-doc_type = 'NB'.
      lwa_bapimepoheader-purch_org = 'NA00'.
      lwa_bapimepoheader-pur_group = 'C02'.
      lwa_bapimepoheaderx-doc_type = 'X'.
      lwa_bapimepoheaderx-purch_org = 'X'.
      lwa_bapimepoheaderx-pur_group = 'X'.
      lwa_bapimepoitem-po_item = '10'.
      lwa_bapimepoitem-material = '000000000000020111'.
      lwa_bapimepoitem-plant = 'CA01'.
      lwa_bapimepoitem-vend_mat = '1000'.
      lwa_bapimepoitem-quantity = '10'.
      lwa_bapimepoitem-orderpr_un = 'M'.
      lwa_bapimepoitem-no_more_gr = 'K'.
      lwa_bapimepoitem-agreement = '4600000095'.
      lwa_bapimepoitem-agmt_item = '10'.
      lwa_bapimepoitem-pricedate = 'X'.
      lwa_bapimepoitem-price_date = '20071030'.
      lwa_bapimepoitem-no_rounding = 'X'.
      APPEND lwa_bapimepoitem TO li_bapimepoitem.
      lwa_bapimepoitemx-po_item = '10'.
      lwa_bapimepoitemx-po_itemx = 'X'.
      lwa_bapimepoitemx-po_itemx = 'X'.
      lwa_bapimepoitemx-material = 'X'.
      lwa_bapimepoitemx-plant = 'X'.
      lwa_bapimepoitemx-quantity = 'X'.
      lwa_bapimepoitemx-po_unit = 'X'.
      lwa_bapimepoitemx-orderpr_un = 'X'.
      lwa_bapimepoitemx-acctasscat = 'X'.
      lwa_bapimepoitemx-agreement = 'X'.
      lwa_bapimepoitemx-agmt_item = 'X'.
      lwa_bapimepoitemx-pricedate = 'X'.
      lwa_bapimepoitemx-price_date = 'X'.
      lwa_bapimepoitemx-preq_no = 'X'.
      lwa_bapimepoitemx-preq_item = 'X'.
      lwa_bapimepoitemx-no_rounding = 'X'.
      APPEND lwa_bapimepoitemx TO li_bapimepoitemx.
    DATA: lo_msg_handler  TYPE REF TO cl_message_handler_mm.
      CALL METHOD cl_message_handler_mm=>get_handler
        IMPORTING
          ex_handler = lo_msg_handler.
      lo_msg_handler->remove_all( ).
      lo_msg_handler->cleanup( ).
      CALL FUNCTION 'BAPI_PO_CREATE1' "in background task
           EXPORTING
             poheader   = lwa_bapimepoheader
             poheaderx  = lwa_bapimepoheaderx
             testrun    = 'X'
           NO_MESSAGING = c_x
           NO_MESSAGE_REQ = c_x
             no_authority = 'X'
           IMPORTING
             expheader  = lwa_bapimepoheader
           TABLES
             return     = li_return
             poitem     = li_bapimepoitem
             poitemx    = li_bapimepoitemx
             conditions = li_conditions.
    ENDIF.
    Edited by: bhavani prasad kotharu on Aug 6, 2009 3:38 PM

  • I Keep Receiving The Same Text Messages Multiple Times

    Every single time someone texts me, it doesn't matter who, I will receive the same message from them multiple times. At first I thought it was just them resending their message but I asked and they said no. After a few days it started happening with all my contacts that I text. Sometimes it's every other text message and sometimes it only happens a couple of times but it's extremely annoying. It got so bad that I had to bump up my plan to Unlimited Messaging just so that I wouldn't go over my limit because I think that it's counting the multiple messages! Also, I've tried updating my phone and that didn't work.
    Does anyone have any tips or solutions to this problem? Any help would be greatly appreciated!! Thanks.

        Hi cbf10,
    I am sorry to learn of the erratic duplicate messages you are receiving from several contacts. Let's narrow the potential issues that may be causing this behavior. Are you using a 3rd party application to send/receive text messages (i.e. Handcent, Go SMS, etc...)? Have you altered the operating system software in any way? What is your software version, baseband, kernel and built number?
    Clearing messaging data/cache as applicable may resolve the issue: Menu>Settings>Applications>ManageApplications>All>Messaging>Clear Data/Cache. Try it and keep us posted.
    AntonioC_VZWSupport
    Follow us on Twitter at www.twitter.com/VZWSupport

  • How to restrict user marking same events in multiple times.

    Hi,
    In my online exam system, I am displaying the questions and related answer in jsp page. Once user fill all this questions, the result of these stored in final table containing column questonNo, userid, answer, testname.
    Now in my application if any user goes back to the question displaying page after submitting same questions, he can change the answer selected in first attempt and submitting again the test, the result are stored in final table. I.e. for same question no. user is now able to answer in two times. I want to restrict user for answering test in second times.
    How can I achieve this?
    Any suggestion is highly appreciated?
    Thanks and Regards
    Harshal

    Hi Hari,
    with you suggested logic can i restrict user marking one question in multiple times,
    My target is once user submit any questions teh control will be transferred to the next page.Now he/she could not able to submit the same questions with another answer or the same answer also which is possible in my application by going back to these page using back button .so that i can get only one record for particular questions in table final.
    Thanks and Regards
    Harshal
    Edited by: HARSHAL_GURAV on Aug 20, 2008 12:15 AM

  • Need to post Full Load data (55,000 records) to the target system.

    Hi All,
    We are getting the data from SAP HR system and we need to post this data to the partner system. So we configured Proxy(SAP) to File(Partner) scenario. We need to append the data of each message to the target file. Scince this is a very critical interface, we have used the dedicated queues. The scenario is working fine in D. When the interface transported to Q, they tested this interface with full load i.e with 55,000 messages.All messages are processed successfully in Integration Engine and to process in Adapter engine, it took nearly 37 hrs. We need to post all 55,000 records with in 2 hrs.
    The design of this interface is simple. We have used direct mapping and the size of each message is 1 KB. But need to append all messages to one file at the target side.We are using Advantco sFTP as receiver adapter and proxy as a sender.
    Could you please suggest a solution to process all 55,000 messages with in 2hrs.
    Thanks,
    Soumya.

    Hi Soumya,
    I understand your scenario as, HR data has be send to third party system once in a day. I guess, they are synchronizing employee (55,000) data in third party system with SAP HR data, daily.
    I would design this scenario as follows:-
    I will ask ABAPer to write a ABAP program, which run at 12:00, pickup 55,000 records from SAP HR tables and place them in one file. That file will be placed in SAP HR file system (you can see it using al11). At 12:30, PI File channel will pick up the file and transfer the file to third party target system as it is, without any transformation. File to File, pass through scenario (no ESR objects). Now, ask the target system to take the file, run their program (they should have some SQL routines). That SQL program will insert these records into target system tables.
    If 55,000 records make huge file at SAP HR system, ask ABAPer to split it into parts. PI will pick them in sequence based on file name.
    In this approach, I would ask both SAP HR (sender) and third party (target) system people to be flexible. Otherwise, I would say, it is not technically possible with current PI resources. In my opinion, PI system is middleware, not system in which huge computations can be done. If messages are coming from different systems, then collection in middleware makes sense. In your case, collecting large number of messages from single system, at high frequency is not advisable. 
    If third party target system people are not flexible, then go for File to JDBC scenario. Ask SAP HR ABAPer to split input file into more number of files (10-15, you PI system should be able to handle). At receiver JDBC, use native SQL. You need java mapping to construct, SQL statements in PI. Donu2019t convert flat file to JDBC XML structure, in your case PI cannot handle huge XML payload.
    You have to note, hardware upgrade is very difficult (you need lot of approvals depending your client process) and very costly. In my experience hardware upgrade will take 2-3 months.
    Regards,
    Raghu_Vamsee

  • Itunes will not login on ATV- checked multiple times

    ran the new update for apple tv then logged out of itunes thru apple tv and now the system will NOT recognize my login info. I've tried multiple times and reset system. I've entered my user/pass just how it reads on itunes, apple account, etc. (case sensetive). Any suggestions? Thanks

    So if you restart computer & ATV, then at iTunes at computer you don't see ATV?
    I fooled myself the other day with my old ATV by clicking on 'connect to iTunes'.
    The code come up on the Tv screen, and I just expected to see a spot to enter the code on the computer, but I was already connected.
    And you will see ATV at iTunes.
    But I may have scrolled past the menu on iTunes left panel hiding it.
    This may not be your issue from the details you have.

  • Get the target system time in the message mapping

    Hi there,
    I need to use the system time of target R/3 system in the message mapping. Any ideas how can I handle this?
    Thanks,
    Igor.

    Thanks for your quick replies.
    XI and R/3 system is in the same timezone but this is not relevant. I know it might sound strange but there is a reason I need to use time in the message mapping which is 2 minutes later than in the target system:
    e.g. target system time: 16:58:32 I need to use 16:56:32 value  in the mapping.
    I found RFC MSS_GET_SY_DATE_TIME which can proide me with the value, just wondering if there is no other way how to do that other than RFC lookup ...
    Thanks,
    Igor

Maybe you are looking for

  • Idoc not getting posted in R/3

    scenario - file to idoc This Scenario is now executing properly and in SXMB_Moni it is also showing new generated IDOC number. But when I tried to locate same IDOC in R/3 system i am not able to locate it. In IDX5 tcode is showing error msg - "No aut

  • Date Repeats in file name coming back from plugins

    My filename date repeats when I edit the photos in plugins (NIK plugins) from within lightroom.  For example, if the file name is 20120402DescansoGardens and I edit in four different plugins, the file names comes back as 20120402-20120402-20120402-20

  • SQL 2005 64bit or 32bit?

    Hello, We will be installing an ICM Entreprise 8.5.2 on Windows2008 R2 which is a 64bit OS. Is it supported to install the 64bit version of SQL 2005 + SP4 or should we stick with the regular 32bit version of SQL 2005 SP4? Regards,

  • Issues with vision box and not being able to get "...

    Hi all, i've upgraded my package to essentials extra, and that gone through ok, but my Vision + box is still using WinCE firmware and not the firmware required to watch fox ect, when ever I try doing a master reset (OK + Down) it forrages off for new

  • How to enable 2 sided printing on Epson wf 3520 on Maverick?

    I recently purchased an Epson WF 3520 printer that prints 2 sided. My Mac Maverick with all updates shows that 2 sided is turned off but I have not found how to turn it on.