TWO Adapter Engine (CA + IS) - How to delete one?

Hi,
In PI prod, I have an issue when PI has to send back an acknowledgment to ECC (when ECC send an idoc) (*). By looking queue log and reading SXMB_MONI trace, I identified that my problem is certainly with the link "IE -> Adapter Engine" and here's what we have:
In PI prod:
  - in SXMB_ADM, category=RUNTIME + Parameter=IS_URL, I have: http://<host>/sap/xi/engine?type=entry   " no <port> !
  - in SXI_cache, I have TWO entries for Adapter cache:
     1. AE name = af.pip.pip-mssql
        AE type = CA
        AE URL  = http://<host>:<port>/MessagingSystem/receive/AFW/XI
     2. AE name = is.50.pip-sap
        AE type = IS
        AE URL  = http://<host>/sap/xi/engine?type=entry             " no <port> !
And when PI has to send back the ack, it uses the 2 line of SXI_CACHE (e.g "IS"), and it's here that we have error (e.g HTTP_COMMUNICATION_FAILURE), whereas in PI quality, I have:
   - in SXMB_ADM, category=RUNTIME + Parameter=IS_URL, I have: http://<host>:<j2eeport>/sap/xi/engine?type=entry
   - in SXI_cache, I have one entry:
        AE name = af.piq.piq
        AE type = CA
        AE URL  = http://<host>:<j2eeport>/MessagingSystem/receive/AFW/XI
To solve issue, my first idea is to provide <port> in "IS" url, and check the result... but why to keep two AE?
The 2nd idea is to delete the 2nd entry (e.g "IS") in SXI_CACHE and/or update the appropriate "aii" properties.
I have three questions:
1. what's the best approach?
2. where the 2nd entry of SXI_CACHE (e.g "IS") is maintained? which aii properties?
3. do I have to stop/start PI server? if update IS_URL in SXMB_MONI, and/or if update the "aii" properties.
As error appears in prod (only), please answer only if you are sure , because myself I have a doubt....
And if you could refers to a help sap, snd, pdf links, I will appreciate.
Thanks.
Mickael
PI 7.1 EhP1
(*) I know that a quick solution should be to use prog IDX_NOALE in order to not send Ack... but I don't want that.

option 2 should be a clean approach.
ref: Re: Adapter engine URL different between CACHE and RWB adapter engine URL?

Similar Messages

  • I have two iCloud accounts and I want to delete one, help!

    I have two icloud accounts and I want to delete one and have the one across all my devices, however, I have tried a number of times, I have deauthorised all my computers on the old icloud/apple account, yet every time I log back onto my main compputer, the old account comes up. I have tried everything, any help would be appreciated....
    Cheers

    You can't delete an iCloud account.  You can, however, sign out of that account and just stop using it.  Then sign in to your second account on all devices account. 
    OT

  • How to delete one skype account if I have 2.

    I don't know how to delete one of them. How?

    Hi, Doudi, and welcome to the Community!
    Please start by reviewing the information in this FAQ article:
    Can I Delete My Skype Account?
    and then please contact Skype Customer Service to file your request to remove the account you do not need, as is indicated in the instructions.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Can anyone help with associate my new iPhone with iTunes? My other old devices are there, but I see only how to delete one, not how to add one.  Thank you.

    Can anyone help with associate my new iPhone with iTunes? My other old devices are there, but I see only how to delete one, not how to add one.  Thank you.

    iTunes Match is a subscription system that allows you to upload your own music (e.g. coped from CDs) to the cloud so that it shows (in the cloud) on your devices and computers without having to sync/copy it.
    Automatic downloads allows to, for example, buy an app on your computer's iTunes and have it automatically download on your phone without having to connect and sync it or go to the Purchased tab in the App Store app on your download and download it yourself - but doing that, going to the Purchased tab and redownloading an app, should get it associated.
    But no, I'm not aware of any problems that not having it associated causes.

  • DOUBT IN PE51...MISTAKENLY ADDED SAME WAGETYPE 2 TIMES..HOW TO DELETE  ONE

    Hi Experts,
    I have mistakenly added 1 wagetype  for 2 times in the earnings side and saved in a request.How to delete one wagetype from the screen.If we put 2 wagetypes could it be a problem...
    Please advice me...
    Thanking u.
    sai.

    Hai..
    Remove the wage type and save in the same request.
    or...
    Go to SE09, Give ur user name and check for the request & the date that u raised. Simply delete that request and create a new one....
    Edited by: manu on Dec 20, 2007 2:36 PM

  • Two users on my MBA. How to delete one?

    I need to delete one of two users on my MBA. How do I do this so that all data belonging to this user will be deleted too.

    Sytem Preferences > Users & Groups.
    Click little lock next to "Click the lock to make changes".
    Now you can click user you would like to delete, and click "-". You will be asked what would you like to do with that users profile (data)
    Just make sure that the remaining user is an Administrator (it should say "Admin" below the username).

  • How to delete one apple id account when you have two

    How do I delete the apple id and password I use on my iPhone
    and just use the one on my MacBook for both devices.
    When I bought my iPhone I tried to set up my apple id on the phone using the same username and password as on my MacBook
    but it didn't like my password on the iPhone.
    The password was acceptable on the MacBook but the iPone required a more complicated password.
    So, I set up a separate Apple id on my iPhone
    and now I have two apple ids and I'd like to delete one and just use one for both devices.

    There's no way to delete an Apple ID. Just don't use it.

  • How to delete one record out the two?

    Hi all,
    A have an Orders table:
    ACCOUNT, ORDER_NO, ORDER_DATE
    I have a few cases where there two accounts have the same ORDER_NO. I dont think this is right in a traditional Orders/ Orderline relationship!
    For Example:
    ACCOUNT     ORDER_NO     ORDER_DATE
    WYM01     O15506     01/09/2004
    DA4060     O15506     01/09/2004
    What is the best way to delete one of these? There are quiet a few so I was looking into cursors.
    Thanks

    You can do it like this
    DELETE
      FROM orders
    WHERE ROWID IN ( SELECT row_id
                        FROM (SELECT ROWID       row_id
                                    ,ROW_NUMBER () OVER ( PARTITION BY order_no
                                                              ORDER BY ROWID
                                                        ) row_num
                                FROM orders
                       WHERE row_num <> 1
                    );Regards
    Arun

  • User Names how to delete one

    I am using a IMAC with OS10.4.10. I transfered my files, etc. from my G4 to the IMAC using a the firewire ports. Had some minor problems but got it all transfered. My problem is that I now have two user names, "Fred" and "Fred Holmes". The Holmes user opens the IMAC files, with some of the transfered files has to be access using "Fred". I have tried to set up the shared files under "Fred Holmes", sometimes works, sometimes not. On the screen I have MACINTOSH HD in the upper right hand position. When I shut down and log on, I have to select either "Fred" or "Fred Holmes", the "Fred" takes me to the OS9 system from the G4. Must I keep the "Fred" user or is there a way to put those files with "Fred Holmes" and delete the "Fred" user? Any information no matter how basic it is, would be helpful, as I am not one of the best computer knowledgeable person.

    Kappy
    Would it be the other way around? I want to keep the "Fred Holmes" files as they are the ones associated with the new IMAC, the "Fred" files appears to be the files that were moved from the G4. If I delete one of the files, do I still need the shared files?
    Also, Kappy what should be in the applications file? And where should the files be such as Quicken, Family Reunion, etc. At the present time I find them all over the place. Thanks

  • Identical iTunes folders on same pc but need to know how to delete one

    I have two identical iTunes folders on my pc. I want to delete one copy to save space but am unable to delete one (or part of it) without deleting the exact same in the other. That is, the action on one folder is exactly mirrored in the other. Any assistance would be appreciated.

    Thanks tt2. Appreciate your help. Fyi, I summed up the size of all my folders and the total exceeded the capacity of my hard drive. And when I deduct the space taken by the iTunes folder, it approximates the capacity consumed. So you are right.
    pricenk
    - now can you help me understand how I can assign you some points?

  • How to delete one number in the dial pad dropdown ...

    When calling a phone number from Skype, I mistyped the phone number.  Now whenever I call a phone number, the dial pad's dropdown list includes the mistyped phone number.  I want to delete that single number from the dial pad's dropdown list.
    Unfortunately I obeyed some people's suggestions in other topics.  Now the contents of all chat histories with all ordinary Skype contacts are gone.  I used to save logs of those forever, but the attempt to delete one phone call history actually deleted all chat histories with everyone.  That was not what I wanted. ... And then, to add insult to injury, whenever I call a phone number, the dial pad's dropdown list still includes the mistyped phone number that I want to delete.
    Is there any way to do it?
    Even though I make more typos than everyone else, even though my keyboard's Backspace button gets a pounding, surely I'm not the only one?

    NOT My day - just typed out a message and clicked Preview. The message is gone. Short reply - this is suppose, at heart, to be a telephone system. BASICS like keyboard entry error correction should be available (in an intuitive way). Backspace doesn't erase last entry and you cannot even delete ALL the entry. Would you fix this or explain why it cannot be done - and then find out how it can.

  • How to delete one number in the dial pad dropdown list?

    When calling a phone number from Skype, I mistyped the phone number.  Now whenever I call a phone number, the dial pad's dropdown list includes the mistyped phone number.  I want to delete that single number from the dial pad's dropdown list. Unfortunately I obeyed some people's suggestions in other topics.  Now the contents of all chat histories with all ordinary Skype contacts are gone.  I used to save logs of those forever, but the attempt to delete one phone call history actually deleted all chat histories with everyone.  That was not what I wanted. ... And then, to add insult to injury, whenever I call a phone number, the dial pad's dropdown list still includes the mistyped phone number that I want to delete. Is there any way to do it? Even though I make more typos than everyone else, even though my keyboard's Backspace button gets a pounding, surely I'm not the only one?

    NOT My day - just typed out a message and clicked Preview. The message is gone. Short reply - this is suppose, at heart, to be a telephone system. BASICS like keyboard entry error correction should be available (in an intuitive way). Backspace doesn't erase last entry and you cannot even delete ALL the entry. Would you fix this or explain why it cannot be done - and then find out how it can.

  • How to delete one entry in "documents & data" of icloud?

    It seems some application saves settings in "documents & data", but the application has been removed already.
    I do not know how to delete the entry.
    Anyone can help me?
    Thanks!

    Hello mende1,
    I  follow your suggestion many times but it does not work still.
    The record "Ruler for iPad and iPhone..." fails to disappear.

  • *How to Delet one same object from different roles*

    I need to delete one auth object from different roles, Couls any one please advise me how can i do this and if there will be any complications involved with tis.
    Best regards:
    Maq

    In PFCG, it may be that you have added some objects manually. To remove them you will have to go to pfcg.
    Even if you first remove the objects from su24, you will have to go to all the roles through pfcg to generate them in expert mode by selecting the third option (edit old status and merge with new data)

  • How to delete one instance of a repeating reminder

    Let's say I have an appointment that repeats daily in Calendar. The appointment is visible every day in my calendar. If one day's appojntment is cancelled, I can delete that day's appointment and Calendar asks if I want to delete just the one or all future appointments. If I choose just the one, all future appointments are unaffected.
    Let's assume the same scenario in Reminders. Here, however, I only see the reminder in the current day. If I look at tomorrow or subsequent day's reminders, it's not there. Once I check today's reminder as done, then tomorrow's appears. However, if I want to just delete today's reminder - but not tomorrow's or the next day's etc. - I can't. If I delete today's reminder, there is no dailogue asking if I want to delete just today's or all future reminders, Reminders just goes ahead and delete's the repeating reminder, doesn't create one for tomorrow, and all subsequent reminders are gone for all time.
    So how do you delete just one instance of a repeating reminder, as you do for a repeating appointment?
    Thanks in advance,
    Steve  = : ^ )

    Thanks again, but have you read the question?
    I already have a reminder which repeats daily. The way Remidners does this is to show just today's event and, as you point out, when you check it off, Reminders creates tomorrow's event.
    However, today's event – but not tomorrow's nor the next day's nor the next day's etc. – has been cancelled, and I want to delete today's event. However, when I delete today's event, Reminders doesn't create tomorrow's event, and the reminder and all it's subsequent iterations are gone. I wanted to delete just today's iteration of a repeating reminder but, in doing it, I deleted _all_ iterations. Do you understand?
    Calendar behaves differently, and shows all iterations of repeating appointments and, when you delete one, it asks if you want to delete just that one or all future events. Reminders should do this, too, but it doesn't.
    I hope this is clear, I don't know how else to explain it.
    Steve  = : ^ )

Maybe you are looking for

  • My Mortgage Journal (formerly: Would I qualify for an FHA Mortgage in ME?)

    CREDIT Scores:TransUnion: 624Equifax: 621 Negatives:Collections:$150 unpaid utility.  Was not aware of this - never contacted by utility or collection agency.  Found out about it myself after reviewing my report.  Contacted collection agency with a P

  • My offline search does not matches mbsa (isInstalled=0)

    I've created an app to work offline and that list the updates not installed (IsInstalled=0) in the PC. When I compare the results with result generated by mbsacli.exe I see that I have some couple KBs not listed in my result, I mean, the list generat

  • SPNego login using additional attribute in LDAP

    Hello experts, We have a situation here to implement SPNego login for portal. We have integrated LDAP with portal and the j_user is mapped to an additional parameter (for ex, employee number) to enable the user to use this as a login-id instead of th

  • Database Installation Forum

    The installation of Oracle Database under Windows is completely different from Unix and Linux. There really is not much in common. Would it not make sense to split the Database Installation forum at least by OS platform? For instance, I don't mind to

  • ME21N Custom Field in Document Header.

    Hi Guys, Could you guys please help me with the following problem. I have a custom field in a custom tab in the header of ME21N. But When I change that field manually the transaction does not update the pricing. But if I change any standard field, th