** Is it possible to skip messages with error in BPM and continue next msg

Hi Friends,
I am doing File to File BPM scenario. My Source XML is like as below.
<?xml version="1.0" encoding="UTF-8"?>
<ns0:Employee xmlns:ns0="http://www.test.com/XITEST/FileToFile/BPM">
   <Details>
      <EmpCode>10010</EmpCode>
      <EmpName>Jeg</EmpName>
      <***>M</***>
      <BasicPay>5000</BasicPay>
   </Details>
   <Details>
      <EmpCode>10011</EmpCode>
      <EmpName>Praksh</EmpName>
      <***>M</***>
      <BasicPay>4500</BasicPay>
   </Details>
   <Details>
      <EmpCode>10012</EmpCode>
      <EmpName>Nithya</EmpName>
      <***>F</***>
      <BasicPay>4300</BasicPay>
   </Details>
   <Details>
      <EmpCode>10013</EmpCode>
      <EmpName>Sunil</EmpName>
      <***>F</***>
      <BasicPay>4800</BasicPay>
   </Details>
   <Details>
      <EmpCode>10014</EmpCode>
      <EmpName>Abdul</EmpName>
      <***>M</***>
      <BasicPay>4750</BasicPay>
   </Details>
   <Details>
      <EmpCode>10015</EmpCode>
      <EmpName>Sathya</EmpName>
      <***>F</***>
      <BasicPay>4250</BasicPay>
   </Details>
   <Details>
      <EmpCode>10016</EmpCode>
      <EmpName>Rams</EmpName>
      <***>M</***>
      <BasicPay>8000</BasicPay>
   </Details>
</ns0:Employee>
If you look at the above message, the 3rd & 6th employee are female. In the BPM design,  we use
a) 'Transformation' step, to split the messages (1:n).
b) Block Step (Mode : For Each) to process one by one message
c) in the Container Step, thru XPath expression we created one variable and assign '***' to that variable
d) In the Switch step we check whether variable is 'F' (Female). If it is there we insert control step to throw exception. (But, exception Branch is not added to catch the exception. The reason is that to restart the BPM)
e) If the *** is 'M' we insert Send Step to send the employee to the output file.
Note that if we insert exception handler branch, the BPM will tell this is completed. So, we are not able to restart those records (*** = 'F') after correct ***. Once the BPM is completed, that work item will not come in tcode 'Continue Process Following Error' option in tcode SXMB_MONI_BPE
Requirement is whenever the BPM encounters *** = 'F', it  should throw an error and the same time BPM should not stop and continue with the next records.
Friends, we tried all the ways thru 'Queue Assignment' property of the BPM and made settings thru tcode SWF_INB_CONF. But, we are not able to achive this requirmenent.
'Restart possibilitye of the BPM for the error record and the same time should process the remaining correct records'. 
Any idea friends, to solve this issue.
Kindly Reply,
Jeg P.

Use one more Receiver Abstract interface for this and do the message and interface mapping .
Collecting :
If ur record is female (u r checking this in swich step) ,  pass tht record to intreface mapping (use one branch here to collect the message).
Else you send that message to the target(else branch)
After that use one block for collecting messages and throw the exception for each record......

Similar Messages

  • Monitoring SAPconnect message with error into RZ20

    Hello,
    I would like to send an alert by e-mail every time a message aimed at being sent outside SAP (through SAPconnect layer) fails.
    I have customized using standard help and OSS notes 546493 and 683974.
    Into RZ20, I have customized the INT node with the following data:
    maximum of alerts kept = 1
    the newest alerts are kept
    set "value obsolete" after 0 seconds
    Performance attributes
    last reported value
    threshold values : 0 for the 4 fields
    alert is triggered if the comparative value exceeds the treshold value
    Methods attributes
    start the data collection every 300 seconds
    data collection method = SAPconnect
    auto-reaction method = ZCCMS_Send_Alert_to_ALM_V2 (duplicated from CCMS_Send_Alert_to_ALM_V2)
    With this customizing, I expected to trigger an alert at every message with error.
    Unfortunately, it triggers the alerts only at the first message in error.
    I have to complete the alert manually to expect an alert trigged for the following message with error.
    Is there a way to complete the alert automatically (as soon as it is triggered) ?
    Or how can I do to achieve what I would like to do ?
    Thank you very much for your help.
    Regards,
    Fabrice

    Hello Alexander,
    yes, I have tried to set the "value obsolete" to 1 seconde.
    Indeed, the value becomes obsolete but the alert is not completed.
    Then, for the following error, I get a new value but no new alert is triggered.
    Thank you.
    Regards,
    Fabrice

  • Messages with errors canceled

    What is the meaning of this below message status in SXMB_MONI ?? What is the cause of this status ?? What is the meaning of message can be deleted with the next delete job ??
    Messages with errors canceled
    Processing of a message with errors was canceled. The message can therefore be deleted with the next delete job.
    Thanks
    Kumar

    This status signifies the following:
    1. The message has errors and was canceled manually.
    2. The status is final, i.e., it cannot be restarted now.
    3. The message can be deleted.
    Regards,
    Prateek

  • Cancel message with errors - How to automate this?

    XI / PI SDN Community
    I think that because of basis team settings every time a message fails to pass through the pipeline (for example a mapping error) XI tries to process this message over and over again for days!
    Assuming that basis is not going to change any configuration on their end: Is therer a way to create a job (TCODE sm36) to do this cancel for me? - I mean I have access to go and manually cancel the message with errors tru the moni.
    Regards,
    José Francisco

    Dear Jose,
    Hi this is Tarang ...
    For cancelling messages on Java engine ( ones that you see on RWB )
    1. There is no standard program which would allow you to cancel the messages here
    2. you can only set a maxim retry interval...i.e how many times a meesage in error should be retried foe sending...this setting can be done in transaction sxmb_adm....there is a parameter called IS_RETRY for this..
    For cancelling the messages on ABAP engine ( ones that you see in MONI)
    1. You can cancel them using the report rsxmb_cancel_messages ...but  dont use this report independently...
        coz there are some chances ..due to which you are getting a message in error in moni ..but the message is restartable......then if you directly cancel it , it is not correct
    2. you cna club the above report with rsxmb_restart_messages...i.e you can create a job sequence where 1 step would be scheduling thee program rsxmb_restart_messages and then the ones that are not restarted properly ...yu can cancle using the second step in the sequence ....i.e rsxmb_cancel_messages
    But be it ABAP / JAVA engine every XI landscape has many of the EOIO interfaces where in the concept is that if the first message in the queue gets stuck ...the message behind that should also get stuck....if you cancel message automatically (say using the above report), there are chances that particular message was configured for EOIO and the message behind that is actuaaly not meant to move ahead..but once you cancel the first message3 the other will go.....which is wrong and against the laws of EOIO...
    hence SAP suggests " no automatic cancellation of message neither at ABAP nor at JAVA level should be done"
    SAP says that manual cancellation of messages is included in the daily maintenance task of XI
    you can obviously play with the number of retries using entry IS_retry
    Hope this helps
    Edited by: Tarang Shah on Mar 6, 2009 11:07 AM

  • HT6114 computer gives restart message with error report, follows update 10.9.2

    following update to 10.9.2 get restart message with error report

    Hi g4towerman,
    Thanks for visiting Apple Support Communities.
    You may find the information in this article helpful with diagnosing and resolving the error you are seeing:
    OS X: When your computer spontaneously restarts or displays "Your computer restarted because of a problem."
    http://support.apple.com/kb/TS4636
    Best Regards,
    Jeremy

  • I was trying to upgrade to OSX 10.9 but during the upgrade when the download got to 2.6gb /5.29gb message "an error occurred" appeared and since then i have been un able to upgrade, what can i do.

    I was trying to upgrade to OSX 10.9 but during the upgrade when the download got to 2.6gb /5.29gb message "an error occurred" appeared and since then i have been un able to upgrade, what can i do.

    If you purchased Lion for your iMac, just log into the Mac App Store from your MacBook using the Apple ID under which you purchased Lion and go to the Purchases page. You will be able to download and install Lion there. 
    searching the internet i found a link to upgrtade to 10.7
    The only place you get get Lion is from the Mac App Store. If you found some other site, that was an illegal copy and almost certainly tied to someone else's Apple ID and hence unusable by you. If the link was just to the Mac App Store, see above.
    As to the problem with synchronization to iCloud, that's not a 10.6 question, so I'd suggest you take up that specific issue in either the Lion or iCloud forums, providing full details, and someone there can probably help you sort things out.
    Regards.

  • The dropdown menu from the Creative Cloud icon on the menu bar keeps giving me the following message: "Download Error" I quit and restarted the creative cloud app to no avail. Running Mavericks on a mid 2011 iMac.

    The dropdown menu from the Creative Cloud icon on the menu bar keeps giving me the following message: "Download Error" I quit and restarted the creative cloud app to no avail. Running Mavericks on a mid 2011 iMac.

    Try below steps once
    click Gear icon on the top Right corner and Quit Creative Cloud App
    Click on Finder and then hold Command + Shift + G keys on your keypad
    It will open Go to folder window, type  exactly ~/Library and click on Go
    Make sure to open ~/Library not /Library (  there will be two Library folders )
    Then open Application Support > Adobe folders
    Trash AAMUpdater and OOBE folders.
    Then launch Creative Could and check.

  • I am trying to upgrade my iPhone 4 to the latest iOS via iTunes, but I keep getting a message saying that an error [-5000] occurred and continuing will delete all content on my iPhone. What's the solution?

    I am trying to upgrade my iPhone 4 to the latest iOS via iTunes, but I keep getting a message saying that an error [-5000] occurred and continuing will delete all content on my iPhone. What's the solution?

    okay I've done everything regarding the transfer process (via file>transfer purchases) and syncing, so everything on my iPhone device seems to have been transferred to my iMac... however, I still get that message ("There are purchased items on the iPhone..."), trying to upgrade the iOS Have tried several times the same process of hitting transfer purchases via file, but nothing seems to make that message go away! Would have been nice to know which files I actually do need to transfer, which I don't get any info on of course...
    Starting to get really annoying this thing.. Any smart suggestions what's going on?

  • 'The termination occurred in system E03 with error code 403 and for the rea

    hello gurus,
                     i am very new webdynpro for abap.i strucked in one place at the time of designe a webdynpro component.
    i created one webdynpro component with one view.when i am going to design the view it is showing an error like .
    Service cannot be reached.
    'The termination occurred in system E03 with error code 403 and for the reason Forbidden'
    for this we need to activate some service at sicf transaction level.
    could anybody suggest me which service i need to activate to overcome my problem.
    best regards,
    raja.

    If you are creating webdynpro component for first time then check the below link and activate the service mentioned.
    http://translate.google.co.in/translate?hl=en&sl=de&u=http://help.sap.com/saphelp_nw70/helpdata/de/43/e86de5008b4d9ae10000000a155369/content.htm&ei=C56BTqinCMTqrAfr5sycDg&sa=X&oi=translate&ct=result&resnum=1&ved=0CB8Q7gEwAA&prev=/search%3Fq%3Dhttp://help.sap.com/saphelp_nw70/helpdata/de/43/e86de5008
    First check above one.
    this is for understanding
    http://sdnabape.blogspot.com/2010/11/step-by-step-configuration-for-running.html
    Regards
    Srinivas

  • PSE12 download keeps failing with error codes DF006 and DF016. [was:Question]

    I have purchased elements 12 for my Macbook pro but the download keeps failing with error codes DF006 and DF016.
    What can I do?

    Is there an Exit Code indication that precedes the DF indications?  If so, try searching this forum using that "Exit Code #" substituting the number for #

  • I'm a meeting organizer and I'm using office 365Outlook. When an attendee invited to a meeting tentatively accept proposing a new time for the meeting, I get a message with "New Time Proposed" and, when I open it, the "Accept" or declined or propose new t

    I'm a meeting organizer and I'm using office 365Outlook. When an attendee invited to a meeting tentatively accept proposing a new time for the meeting, I get a message with "New Time Proposed" and, when I open it, the "Accept" or declined
    or propose new time button is grayed out so that I cannot accept the new time. When this occurs, I must create a new meeting request with the new time that has been proposed.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • HT201210 No matter what i Do it comes up with error code 9 and wil not even find the Iphone 3GS 16GB ....What to do ??

    No matter what i Do it comes up with error code 9 and wil not even find the Iphone 3GS 16GB ....What to do ??
    The Home and Sleep buttom does only promt the Connect to itunes...
    Have closed down anti V and is admin and so on.....
    Regards Martin

    Hello mftoby,
    Error 9 occurs when the device unexpectedly loses its USB connection with iTunes.
    This issue can usually be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.
    iOS: Troubleshooting USB connection
    http://support.apple.com/kb/TS1286
    iTunes: Troubleshooting security software issues
    http://support.apple.com/kb/TS3125
    Note: For best results and the fastest resolution, it may be best to try the restore on a different computer. This will help isolate if it is an issue with the device or the computer itself.
    Thanks,
    Matt M.

  • Getting "Error in sieve filter" message with each incoming mail and cannot recieve or send mail to or from iCloud account apart from Apple emails!! Please help!

    Since approx 7am GMT I've been getting "Error in sieve filter" message with each incoming mail, worse though, since about 12 noon I cannot recieve or send mail to or from my iCloud account apart from I've been getting  emails from Apple (ie I've just received a welcome one from Apple Support Communities...)!! I've had this account for years, never had a problem - it can't be the OSX Mail server because the problem is the same when I log directly into iCloud. I've tried sending emails from my Hotmail account to my iCloud account (a .mac) and just get undeliverable messages back. I'm really in the s**t now at work. : (  I just set up a Smart TV yesterday with a wireless dongle - that's the only thing I've done out of the ordinary. I've spoken to Sky who are my ISP and they say all's fine with them (although the router kept kicking my off the internet this morning which was strange...). Router seems fine now though.  I'm really hoping someone here can help!!
    Many thanks!!

    Do you think once Apple sort this out I'll get my missing emails back?

  • Message with error in SMQ2

    Hi,
    Does anyone know why some messages with message mapping failures shows up in SMQ2 and some messages with message mapping failures won't show up in SMQ2?
    Thanks,
    Jay

    Hi Jung,
    If there is a mapping problem then you should be able to see the error messages in SXMB_MONI.
    SMQ2 will show errors in case there are problems with inbound queue.
    The various problems can be queue getting stuck, queues not registered, etc.. incase of mapping error you cannot see error in inbound queue (SMQ2).
    Regards,
    Gautam Purohit

  • Help with "Error syncing Audio and Midi" message. How to fix?

    Hi,
    I'm running Logic Pro 7.1 on a G5 Dual 2.5 PowerMac. My audio interface is a Digidisign Digi002R, and my MIDI interface is a MOTU Fastlane. Up until a few days ago everything was working fine. I didn't install any new software or anything.
    All of a sudden in any Logic session I open (new or saved) I get all kinds of artifacts that sound like they're associated with sample rate problems.
    True to form, on playback after 4 or 5 seconds a message comes up telling me that there is an error syncing audio and midi. It tells me that a sample rate of 88209, or 88213, or 88207 (each time it's different) was detected, and that there is a conflict between Logic and my external device.
    My Digi002R is set to 44.1, and Logic is set to 44.1 as well. I have no idea where this problem came from.
    The only thing I do know is that I've been using the Peachtree Press Apple Pro Training Series to study for my Level 1 Logic certification. it comes with a CD with Logic sessions to use with the text. The CD comes with a Logic Epress Demo but I didn't download that as I've already got Logic Pro. I dragged those session files to my desktop, and the problem occured for the first time when iopened up that first session from the CD. After that, every single session has this problem and I have no idea how to fix it.
    Sorry for the incredibly long message, but can anybody help?
    Thanks
    PowerBook G4 15", PowerMac G5 Dual 2.5   Mac OS X (10.4.7)  

    Hey,
    Thanks. I appreciate the help, but I've tried all of that. I just don't get it. I've unplugged everything, I've shut down, powered down, relaunched everything a dozen times and the problem doesn't go away. I know that the problem is with Logic because the interface works perfectly fnie with everything else, from Pro Tools to iTunes.
    I'm having Logic Pro 7.2 shipped to me so I'm hoping that installing that will reset everything, but until then I can't do anything in Logic.
    Anybody ever encounter anything like this?

Maybe you are looking for

  • BI Report in Web UI - Cross Navigational Link

    HI Gurus, I made the neccessary customizing settings in CRMC_UI_NBLINKS to display my BI reports in the CRM Web-UI. Now I want to use the 'Cross Navigational links for InfoObjects' to be able to navigate from a BI report to a CRM UI component. I am u

  • Xsl tag issue

    Just want to compare the result of one tag is equal to 'US' then display value of <xsl:value-of select="Amount/Currency/Code" /> else it has to display the value of <xsl:value-of select="Amount/Currency" /> I am trying some thing like this... <xsl:if

  • How do I make a composite snapshot in CS5?

    How do I do a composite snapshot using Photoshop CS5.  I know it can be done using CS6, but am not having any luck using Control + shift + alt + E?

  • Best way to send multiple mails

    i have an application which has to send 5000-15000 mails at a time, can any one give me an idea which is the best way to do this i am using weblogic 8.1 and java 1.4 thanks in advance

  • How To Search Enable Your Oracle-Backed Website With Oracle Text

    Someone knows any tool in Oracle for desing Reports but, with easy interface for users. I don't want Reports or ay version of that, i just want a tool who was driven by the user, and not by a especialized programmer. Thanks for your coments !! null