PE_Adapter with gray arrow

Hi ,
I have one interesting problem to discuss,
We are working in the production system and all archiving and deletion jobs are scheduled on weekly basis.
Scenario is IDOC-->SOAP and BPM is also used. When checking in sxmb_moni the status of message is checkered flag but on the outbound side the status is green with scheduled for outbound processing. and when i display the message PE_ADAPTER's status is not checkered it is a gray colored arrow.and deletion and archiving job have not deleted only these messages.Also when i click on PE in sxmb_moni it doent take me to the BPM process steps it just refers to Inbound Queue.
What i have done so far
1. There is no entry in SMQ1,SMQ2,SWPR,SWPC,SWWL,SM58 for these messages.
2. In message monitoring also when i check with the message ID as filtration criteria it is showing successful for integration engine.
How to complete this PE_Adapter step of pipeline.
or is that the case like new message was created for same process in sxmb_moni and the current messages are just to display.?
Thanks in Advance.

Hi Krishna,
I have done everything related to queue, deregistering,registering and activating but still no luck, there is nothing in the queue and these messages are two months back. b'coz there status was incomplete , they were not deleted and in sap side Idoc dint get acknowlegement for these messages.

Similar Messages

  • HT201210 i updated my 4s yesterday, but my phone will not work at all now, and will not turn off. It has a itunes image on the screen with an arrow undernieth and what looks like the charger lead. i've had it on charge! is there anything else i can do?

    i updated my 4s yesterday, but my phone will not work at all now, and will not turn off. It has a itunes image on the screen with an arrow underneath and what looks like the charger lead. i've had it on charge! is there anything else i can do?

    Cconnect it to your computer with the latest version of iTunes installed.

  • If for some reason u have the icon in your task bar (the one with 2 arrows pointing in a circle) just go into mobile me pref...click sync...and uncheck box show status in menu bar.  My question is, I do not have this option. How do I get the sync to stop

    "if for some reason u have the icon in your task bar (the one with 2 arrows pointing in a circle) just go into mobile me pref...click sync...and uncheck box show status in menu bar."
    I do not have the option box to "show status in menu bar"
    I tried the free for a little while Mobile me, and didn't use it, so cancled. I cannot get the sync status roundabout arrows out of my status bar. AND, they keep trying to sync.
    Another issue related with this is that during the time that I tried out Mobile me, I had my ical alarm set to go off every 2 hours. NOW my computer has an ical  pop-up every 2 hours. I cannot find how to stop it.
    Another issue, Yahoo is trying to sync with my computer and I have no idea why or where that one came from.
    Can anyone out there help me please. 

    "if for some reason u have the icon in your task bar (the one with 2 arrows pointing in a circle) just go into mobile me pref...click sync...and uncheck box show status in menu bar."
    I do not have the option box to "show status in menu bar"
    I tried the free for a little while Mobile me, and didn't use it, so cancled. I cannot get the sync status roundabout arrows out of my status bar. AND, they keep trying to sync.
    Another issue related with this is that during the time that I tried out Mobile me, I had my ical alarm set to go off every 2 hours. NOW my computer has an ical  pop-up every 2 hours. I cannot find how to stop it.
    Another issue, Yahoo is trying to sync with my computer and I have no idea why or where that one came from.
    Can anyone out there help me please. 

  • My ipod touch has a usb cable picture with an arrow pointingto the itunes logo. the ipod will not connect to a computer and is unable to be turned off as there is no red power slider when the powerbutton is pressed. what can i do to fix this?

    my ipod touch has a usb cable picture with an arrow pointing to the itunes logo. the ipod will not connect to a computer and is unable to be turned off as there is no red power slider when the power button is pressed. what can i do to fix this?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • My Iphone 3s is stuck and will not open, I have an image of a USB cord with an arrow pointing up to the Itune music Icon and my phone won't open or be recognized by itunes or my computer.

    My Iphone 3s is stuck and will not open, I have an image of a USB cord with an arrow pointing up to the Itune music Icon and my phone won't open or be recognized by itunes or my computer. What do I do now?

    Try restoring it using Recovery Mode.

  • HT1414 Can someone PLEASE help me???? I did the restore and now my phone just pops up an iTunes logo with an arrow pointing at it. What do I do?

    I got my iPhone 4 yesterday. I almost immediately had issues with it. I contacted Apple and was told to do a restore via iTunes online. I completed the restore and now my phone has an iTunes logo on it with an arrow pointing at the logo and a picture of a USB cable beneath the arrow. I can't get the phone to do anything else and I can't contact support because my phone isn't working. Can someone please tell me what I'm doing wrong? I listed the operating system below as "Other OS" because I don't know what operating system I have.

    you do as the logo suggests:  connect your iPhone to your computer and restore using iTunes.

  • Line with a arrow

    Hi All,
         I want to draw multiple line with a arrow.  Please guide me how can i do it by code dynamically. exactly as below.
    Regards,
    Kameshwaran A.

    create an empty symbol
    put this code in it.
    //***** Set some opening parameters
    onClipEvent (load) {
    //Make original line invisible
    _root.line._visible = 0;
    //Initiate some variables
    number_lines = 0;
    line_active = 0;
    //***** Every time the mouse button is released...
    onClipEvent (mouseUp) {
    //Get the position of the mouse
    origin_x = _xmouse;
    origin_y = _ymouse; 
    //Increase the number of lines by one 
    number_lines++; 
    //Generate a new line name 
    name = "line"+number_lines; 
    //Duplicate a new line 
    _root.line.duplicateMovieClip(name, number_lines); 
    //Position the line's end point at mouse position 
    _root[name]._x = origin_x; 
    _root[name]._y = origin_y; 
    //Update line length / orientation 
    _root[name]._xscale = _root._xmouse-origin_x; 
    _root[name]._yscale = _root._ymouse-origin_y; 
    //If this is the start of a new shape 
    if (!line_active) 
    //Set the line tracking variable 
    line_active = 1; 
    //Set the start point of the new shape 
    start_x = origin_x; 
    start_y = origin_y; 
    //***** Every time the mouse is moved 
    onClipEvent (mouseMove) { 
    //If there's a line currently being drawn... 
    if (line_active) 
    //Update line length / orientation 
    _root[name]._xscale = _root._xmouse-origin_x; 
    _root[name]._yscale = _root._ymouse-origin_y; 
    updateAfterEvent(); 
    //***** When a key is pressed 
    onClipEvent (enterFrame) { 
    //If it's the Enter key 
    if (Key.isDown(Key.ENTER)) 
    //Join the end point of this line... 
    //...to the start point of the first line in this shape 
    _root[name]._xscale = ""; 
    _root[name]._yscale = ""; 
    //Reset line-tracking variable 
    line_active = 0; 
    draw a line convert it to a symbol and give it an instance name of line.
    and there you can draw lines.
    detach the lines by pressing enter.
    and thats it.
    your welcome in advance (:
    INPORTANT to leave all your symbols in the scene not in the libery are it will not work
    Message was edited by: xFARRELLx

  • On my iPhone when I go on phone to view my contacts on the top left corner there is a circle with a arrow ( like a refresh icon ), just want to know what is it?

    On my iPhone when I go on phone to view my contacts on the top left corner there is a circle with a arrow ( like a refresh icon ), just want to know what is it?

    That's exactly what it does, refresh your contacts. As an example if you add a contact on your Mac or iPad and you use iCloud to sync them altogether, then this can be used to refresh the contacts on your iPhone. 

  • My ipod touch is stuck in connect to itunes screen. I've tried to press Power and Home button at the same time for 10 seconds and all it does is go to a black screen. Press power button again and the usb cable with an arrow towards an iTunes logo.

    I have a brand new Ipod touch with front facing camera. Not sure which generation it is. My wife connected the iPod Touch and chose the restore option when connecting to iTunes. It was a mistake and by the time I got there, I saw the screen with USB cable with an arrow facing towards iTunes logo. I cannot get the iPod out of this state.

    Try here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    Also reset the iPod.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

  • HT5487 my ipod touch is stuck with an I tunes logo and a usb chord with an arrow pointing to the logo. What is this and how do I fix it?

    My Ipod is stuck with a picture of a USB chord with an arrow pointing to an itunes logo....what is this and how do I fix it? I did look at the "printers and devices" section on my computer. It shows an un identified "apple" device that is in "recovery mode" but that is. I tried to trouble shoot it there but no help....

    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414
    If necessary Place the Device into Recovery mode...
    http://support.apple.com/kb/HT1808

  • My ipod touch is stuck on a screen that shows a picture of the USB cable with an arrow to "itunes" and pic. of a CD with a music note over it....what do I do?

    My ipod touch is stuck on a screen that show  a picture of the USB cable with an arrow to a picture of a CD with a music note over it.  I have reset and turned on and off.....what do I do??

    Connect it to iTunes and restore it.
    B-rock

  • My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset, and ipod does not appear on itunes when I plug it into the computer.  This happened after I agreed to a failed software update.

    My ipod touch has a permanent image of the end of a USB cable with an arrow pointing to an icon of ITunes. I can't reset using the two button method, and ipod does not appear on itunes when I plug it into the computer - and nothing else happens either.  This happened after I agreed to a software update which failed.  How can I get it going again?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    In iTunes 10, I could type "Sinatra" in the search file, and would get a list of all tracks with "Sinatra" in any field.   In iTunes 11 I get these clever little windows, with nice arrows, but no lists to view.   What am I missing?

    Thanks for chipping in.   I discovered something after trying what you suggested.   I have quite a few collections of hits by year from Time Life and Billboard.  I've eliminated duplicate tracks that appear in both collections (or other CDs for that matter), but cross-reference the CD where I deleted the track and placed in in the comments section of the CD track I retained.   If I "search" by song name, only the remaining track appears.   But if I want to hear for example Classic Rock 1964, only those tracks remaining would be there when I pull up that CD.   So, I type "Classic Rock 1964,"  in the search field.  First the boxes on the right of the screen open up showing album icons.  Showing four tracks by album with a button to view 10 more, then four songs with an option to vies 18 more.   I finally noticed that at the top of the boxes is a blue band that reads, :Show Classic Rock 1964 in Music.  When I double click on this blue band, all 24 tracks from the original CD appear in the song list format even though I had deleted two of them because they appeard in a Beach Boys CD.   On those tracks, I had referenced Classic Rock 1964 in the comments field.    So, bottom line, Search will also look in the comments field if you click "filter by all" in the magnifying glass to the left of the search field.   And you can move all tracks that if finds into a song list by double clicking on the blue band.

  • How to get rid of the blue underline with green arrows on words and then a pop-up ad appears.

    How to get rid of the blue underline with green arrows on words and then a pop-up ad appears.

    Click here and follow the instructions, or if they don't cover the type of adware on the computer, these ones. If you're willing to use a tool to remove it(you don't need to, but may find it easier), you can instead run Adware Medic; this link is a direct download.
    (119795)

  • A picture of a USB plug is on the screen with an arrow pointing to Itunes.  when I connect it to our pc, the device is locked and is asking for a security code.  I do not know the security code.

    A USB plug picture is on my screen with an arrow pointing to ITunes.  When I connect the Ipod to my computer, it is locked and is asking for
    a security code.  I do not know the security code.

    Place the iPod in recovery mode and then restore it via iTunes.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

Maybe you are looking for

  • Xorg 1.8 and nvidia drivers 'nvidia-xconfig' NEED tip to fix

    [what part of my xorg.conf needs to me moved, and to where?] Hi, I routinely swap between intel, savage, nvidia drivers running my ARCH install off my USB. Ok, so I'm using xorg 1.8 and the intel works though of course the nividia with nvidia-xconfig

  • Second monitor stopped working with MSI Cyclone OC 460GTX 1Gb

    Hi everyone! I recently bought this card and it worked well for about a month. I woke up one morning to see my second monitor having turned black. There appears to be a signal of some sort since I don't get the "no signal/input" message, but there's

  • Apple iOS 7 app auto updates and supervised devices

    I'm in the process of deploying a small number of iPads to our internal users, we had a question around automatic app updates in iOS 7. It would be nice if these devices were able to pull app updates down and install them automatically, but there are

  • How to setup jobs to run during 8 am to 6 pm every 30 minutes in scheduler

    I want to set up a job in the scheduler to run only during 8 am to 6 pm MST every 30 minutes. How do I do such a setting in the job scheduler? Could it be done through RZ04 (operation mode) Regards Ram

  • Extra characters appearing when using VISA

    Hi, I am new to labview and have a problem I've been working on for a few days. I am reading masses printed from a scale hooked up by a RS-232 to USB connection, with the ultimate goal of recording mass vs. time. Currently random letters appear in th