How to reject ACK/NACK from other Send Ports to Orchestration

Hi Everyone,
I have a below scenario, Please let me your ideas how can we avoid ACK from other send ports (If there is any failures), in my current scenario getting issues or conflicts because of this
AckRequired.
Key points in my scenarios
SendPort_A is pointing to SAP
SendPort_B is pointing to SQL
Flow
Receive MessageA and Transform to MessageB format, send MessageB to SendPort_A which directly bind to orchestration with transmitted property enabled.
SendPort_B subscribes the same message, output of map with message type as filter condition (we are not expecting any Acknowledge from sendPort_B, because it’s a generic send port for some scenario).
Problem
When I see the context properties both send ports has AckRequired
Property to true (so getting ACK/NACK from both send ports).
I want acknowledgement only form SendPort_A which is bind to orchestration with transmitted property enabled, but not from the SendPort_B which subscribes just with message type.
I have tried the below points but no luck
Created custom pipeline with custom pipeline component to set / overwrite
AckRequired Property to false (Pipeline component is working fine, but nothing is overwriting in context, getting acknowledge back to orchestration for any failure in SendPort_B)
#region IComponentUI
public IBaseMessage Execute(IPipelineContext pContext, IBaseMessage pInMsg)
pInMsg.Context.Write("AckRequired", "http://schemas.microsoft.com/BizTalk/2003/system-properties", false);
return pInMsg;
#endregion
Below images gives some info on the same scenario.
Appreciate your suggestions.
Thanks, SMS Vikas K

Hi Vikas,
Let me know if I understood correctly.
SendPort_B subscribes the same message, output of map with message type as filter condition (we are not expecting any Acknowledge from sendPort_B, because it’s a generic send port for some scenario).
Problem
You have a send port B which is subscribing to the same message using the message type.
You can set additional filters to ignore Acknowledgement-
Ex- Mgtype= "" AND
AckRequired!=True OR
AckRequired!=False 
Thanks,
Prashant
Please mark this post accordingly if it answers your query or is helpful.

Similar Messages

  • How can i access filename from file (sender)

    hi All,
    can anybody tell me
    how can i access filename from file (sender)?
    thank u
    swari

    See:
    "SAP NetWeaver XI: Variable Substitution with Adapter-Specific Message Attributes via DynamicConfigurationBean"
    SAP NetWeaver XI: Variable Substitution with Adapter-Specific Message Attributes via DynamicConfigurationBean
    "Accessing Adapter-Specific Attributes through User Defined Function"
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/70c89607-e4d9-2910-7280-f6746e964516

  • How can i move contacts from other accounts (eg: gmail,hotmail etc) to icloud account.

    Hi All,
    I have setup icloud in my Iphone 6 running 8.1.2. and it is logged in by enabling Contacts in icloud settings. My contact list contains 1718 Contacts. I manually backed up my data into icloud including my contacts without Passbook & Documents data. But when i logged into iCloud.com to see the contacts it is not there.
    I also find when i checked only the Icloud contacts "there are no contacts showing in my contact list". I think this is the reason why there is no contacts in icloud web too. Then how can i move contacts from other accounts (eg: gmail,hotmail etc) to icloud.

    I assume you're using GMail as your primary e-mail account?  Try this.  This is how I am setup.  Not only will it move all your contacts to your phone but any changes made in GMail or on the iPhone will be sync'd with the server.
    http://www.google.com/support/mobile/bin/answer.py?answer=138740
    Note... I think this will delete your existing contacts from your device.  You will want to use iTunes to back them up and get them imported into GMail before you sync your device wtih GMail.

  • How do i import contact from other sim to iphone5

    How do i import contact from other sim to iphone5

    i would suggest backing up with iTunes or iCloud. This link should help.
    http://support.apple.com/kb/ht1766

  • How do I move objects from other package to a newly created one?

    How do I move objects from other package to a newly created one?
    Thanks!

    Dear Anthony Pham ,
    for changing objects from one package to another package
    open that object for example Report
    open the report and than click GOTO select OBJECT DIRECTIORY ENTRY
    than it will open a popup in that popup click the change and give the new package
    Thanks
    Surendra

  • How can I purchase songs from other country?

    How can I purchase songs from other country?

    You cant, because of licensing issues apple wont allow you too purchase songs which they dont have licens too sell in your country.

  • How to add music files from other hard drives

    how to add music files from other external hard drives??

    Not sure what you are trying to achieve.. You can copy the files to anywhere you like.. but the TC is a backup target for Time Machine.. it is not a media server.. it is totally useless copying your files to the TC as they will not be backed up from there.. TC has no built in backup and TM cannot backup network drives.

  • How can I buy ibooks from other countries' bookstores?

    I have a US itunes account. How can I buy books from other countries' itunes bookstores?

    You cannot.

  • HT204266 how to buy an app from other store

    how to buy an app from other store

    You can only buy apps from your own country's store - to be able to buy from another country's store you need a valid billing address in that country and be in that country when purchasing from it. You can try requesting that the app be added to your country's store, but ultimately it's down to the developer (and potentially a country's laws) to make an app available to Apple to sell in a particular country : http://www.apple.com/feedback/itunes.html

  • How do i delete icould from other devices

    how do i delete icould from other devices???

    Welcome to the user to User Technical Support Forum provided by Apple.
    Clearly state your Issue and the Troubleshooting Steps you have tried to Resolve it.

  • Question - How does the Priority feature of the Send Port work?

    How does the Priority feature of the Send Port work?

    The Priority setting of the Transport Advanced Options controls the order in which messages are removed from the messageBox. Ports with higher priority will be processed earlier than the ports with lower prioirty making the higher priority ports more important
    relative to other send ports within a single host.
    Refer:
    Send Port Priority
    The highest prioirty is 1, and the lowest is 10. The default value is 5.
    Rachit

  • Sending EDI To Multiple Partners Using Single Send Port in Orchestration

    Hi Guys,
    I am having a scenario where i am receiving a Xml(which can be in between 11-15). I am having 150 Trading Partners with whom these datsets have to be shared. Now every Trading partner is having there own character Sets and unique numbers so i have created 150
    party agreements for all the Trading partners. I am interested to use a single port. I have created an orchestration to achieve this. Below are the steps i used to create orchestration :-
    1) Receiving 11 XML from receive shape.
    2) Extracting the value of Node TSP(this value is used to know the trading partners unique number on which i am deciding to which party agreement this Xml needs to go) using xpath.
    3) I am constructing the message in construct.                                                                                                                     
    3.1) Mapping  from XML To EDI.                                                                
    3.2) As all 11 datasets are having different version. So i am overidding the value ISA and GS in Message Assignment(SourceName).
    4) Decide shape to decide on the value of TSP to which port it has to be send.
    But according to me this is not an optimized solution. Below are reasons:-
    1) I have to create 150 branch into decide shape. As i am receiving 11 different Xml messages i need to create decide shape for all the different Xml messages.
    2) I have to create 150 different ports which are having 15 operation(depanding upon Xml we received).
    Note:- I have to create 150 different Send Ports only because of Party Agreement. So is there any solution? i only want Single Send port and i can select the party Agreement in the orchestrations.

    Duplicate thread.  See:
    http://social.msdn.microsoft.com/Forums/en-US/c12a377e-ccf6-4fbe-9986-14da63d72282/sending-edi-to-multiple-partners-using-single-send-port-in-orchestration?forum=biztalkgeneral

  • HT1043 My midi controller sends message thru mainsage to rewired Reason. How can I stop Mainstage from automatically sending volume control and other messages to Reason?

    I have assigned the volume control on my Yamaha midi keyboard to a screen control in Mainstage to do a different function. But it simultaneous does my assigned job as well as controlling volumes of instruments in rewired Reason. How can I stop that from happening. I don't want any of my knobs to control Reason. I use touchOSC on my iPhone as a mixer. It also send all soughts of undesirable faders and knob massages through Mainstage to reason. I must point out that, I have disengaged keyboad control in reason preferences.
    Every knob on any controller which is sending CC07 message to mainstage automatically controls instrument volume in Reason. Some other CC messages are also sent automatically. How can I stop that from happening?
    Thanks in advance.

    If it's slow on startup it would be extensions loading or LaunchDaemons starting up. 
    You should have a look in:
    /Library/LaunchDaemons
    /Library/Extensions
    You can count out anything in your home folder and it shouldn't put anything in /System as that's reserved for Apple. 

  • How do I copy text from other users' replies?

    I have seen people post text from other replies in a discussion. Basically, it shows a screenshot of their reply and under it is your own. How do you do this? Is it something that unlocks at a future level?
    Thanks,
    Ethan7988

    Howdy Roger...
    I said:
    ... if you know how to set "Size" while in Simple Editor, ALL my problems ...
    I knew about the Advanced Editor... I just wonder why that very cool feature would not be considered "Simple"? It's not like there is not enough space for it
    Also C O L O R would be nice...
    Again plenty of room - for that matter, there is "almost enough room for ALL the tools on a single row. I'll let you switch to the Advanced Editor to compare
    They could get rid of a couple of tools, IMHO. I'll speak to both Editors and once you see my point, you will see that all would definitely fit on one row.
    Insert Video - I have NEVER seen even one video posted here
    Table tool is NOT WYSIWYG when you post the reply (I tried but once and was so disappointed I gave up after that one attempt)
    Spelling is pointless - all browsers worth using have their own built in spell active checker
    Insert LINK is not nearly robust enough to warrant using it - except if one knows about the search capabilities in the pane's TABs
    'Style' can all be done with Command + "a number key"
    I have used "Font Family" (only see the title of the menu as it is loading) only once that I can think of
    Why would a font appear different between Ppt for mac and mail? specifically the lower case "v"... spelled in a sequence
    Justify = I have used TWICEto show that I could actually do it when pasting an Arabic GoogleTranslate reply = pasted translated composition of the the character order to begin with and got worse when right justified
    HTML = I can never imagine needing to toggle this on and off but some one may
    OR -- the Reply button could just invoke the Advanced Editor to begin with!!
    best as always
    ÇÇÇ

  • How to view uncommited data from other session

    Hi
    I want to see data that is incommited from other sql session. How can I see it?
    Generally After commit data is available to other sessions.
    Please answer me ASAP.
    Wating for reply
    Jigar,

    You cannot do 'dirty reads' in Oracle. You can only see committed changes, and you have the choice of seeing committed changes after each individual statement in your transaction (default), or only after a transaction has finished. With the default level, running the same query multiple times within a transaction may yield different results.
    I suspect that you have used this approach with Sybase or SQL Server for performance reasons, but you will not need to do this with Oracle. I recommend you read Tom Kyte's "Expert One-On-One: Oracle" book for an excellent discussion of Oracle's locking and concurrency mechanisms.
    Hi
    I want to see data that is incommited from other sql session. How can I see it?
    Generally After commit data is available to other sessions.
    Please answer me ASAP.
    Wating for reply
    Jigar,

Maybe you are looking for

  • Error message I receive when trying to install Quicktime 7.3...

    I keep receiving this error message when trying to install Quicktime 7.3. I have removed anything Apple or QuickTime from Add/Remove, but at the end of the installation I keep getting this error mesage: "The older version of QuickTime could not be re

  • Lost ability to print as PDF following reader upgrade

    Just upgraded reader and now have lost 'Print as PDF' as a printer option on my selectable drop down printer list. Am running a copy of Acrobat X Pro and all was well before reader upgrade completed this am. Can anyone advise how I recover ability to

  • Monitor a process progress - JProgressBar

    Hello all, I have a method that runs a process: public Process EXECUTE(String command) {           try {      return Runtime.getRuntime().exec(command);      catch(IOException ioe){           return null; and a process that represents a call to this

  • Finance NEW G/L Issue (GLPCA  - ( FAGLFLEXA and  FAGLFLEXT  ) )

    By old G/L  my client had implemented some reports means by useing GLPCA Table. But He wants to Implent in NEW G/L that means i have to change objects which are belong to GLPCA. i come to know that I need to replace GLPCA into FAGLFLEXA and  FAGLFLEX

  • Running Photoshop CS3 under a non-admin account?

    Is it possible to run Photoshop CS3 under a non-admin account with Mac OS 10.4.11? If yes, is it stable then, and are there any known issues?