Sapmmc shows sid .exe as one of the process in RED

Hello,
I have upgraded SCM 5.0 to SCM 5.1.
After upgrade, its sapmmc shows one additional process "<sid>.exe" , which remains in RED even after successful start.
SAP system starts & works perfectly and there is no error in sm21.
OS - Windows 2003 x64
DB - MS SQL 2005
Pls help me to remove <sid>.exe process from sapmmc. or how to make it green.
Thanks.

Hello all,
This error has been removed.
Solution:
check the log
\usr\sap\<sid>\DVEBMGS00\work\sapstart.log
(create process failed)
check the start profile
\usr\sap\<sid>\sys\profile\START_DVEBMGS_hostname
statement : Start_Program_05 = immediate$(DIR_EXECUTABLE)\$(_DB) <sid>
this statement was calling <sid>.exe file in sapmmc during sapstart.
removed this statement from start profile.
start the sap, now it is not having <sid>.exe process in process list
all 3 processes are in green now.

Similar Messages

  • I created a new administrator USER account. I deleted the original one but the process never ends. It's been 3 days now.

    I created a new administrator USER account. I deleted the original one but the process never ends. It's been 3 days now. And I can't close preferences window or turn off the computer.
    It's stays in the "deleting" but I can't cancel it or close the window.
    What can I do?

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • I'm making a card on iphoto. It looks great except one of the borders is red instead of white. I can't figure out how to change it

    I'm making a card on iphoto. It looks great except one of the borders is red instead of white. I can't figure out how to change it. Does anyone know how to do that?

    What theme are you using? Normally one can click on the layout button at the bottom, select the layout and the background color:
    OT

  • TS1538 Iphone 4s came unplugged during a sync now PC wont show Apple iphone as one of the drives, itunes wont detect it but another identical phone connects just fine

    tried all the suggestions from support; reinstalling itunes, restarting PC & iphone, reinstalling from device manager etc.

    problem resolved after letting the other phone sync completely, PC then reconized my phone

  • Cannot update my ios8.1.1 to 8.2 or the latest update showing in settings.i go thru the process of downloading and after waiting to download it shows download complete and then while installing it says error.what should I do?

    HHello...cannot update my iPad 2 to latest version of ios8.12. Shows error after downloading it

    Hi Ajit Shah,
    Welcome to Apple Support Communities.
    It sounds like you’ve run into an issue updating iOS over-the-air on your iPad. Take a look at the article linked below, it provides a lot of great information and troubleshooting tips that’ll generally resolve issues like this one.
    Resolve issues with an over-the-air iOS update - Apple Support
    Take care,
    -Jason

  • Adobe air exe to ios app - the process?

    Hi,
    I am new to app development. I am wanting to know what is possible and my cheapest option in creating an app for IOS from windows.
    The app I am creating is a technical publication wanting to be displayed on anipad.
    I have an adobe Air version exe published from robohelp/ framemaker. Is there a way to turn my adobe air application into a IOS App?
    If not, what are my other options to get a tech pubs document as a IOS App? I would like to use ideally windows adobe products for the creation of it.
    Thanks

    Ye that Merapi definitely seems interesting but it's the Java chops part that I think I'll fall down lol
    I've also asked on a java forum if anyone with experience of using Flex in Conjunction with Java can create the function that I'm after but my topic has been ignored like the ugly girl at the prom.
    I've never heard of a socket server. Would they be required to be installed on each machine that the interface is installed on?
    I'll definitely look into it. Thanks a lot mate.

  • How does one create the Process List (AdminUI) with the provided SDK API?

    Currently we are developing a custom component for Adobe LiveCycle, which should offer the following service operation:
    Fetch a list of schedulers (= long-lived processes with that loop with a Wait-operation) and check whether there are instances running for them
    Input: none
    Output: A list of (long-lived) process definitions together with a list of (running) process instances in XMLXML format could look like:
    <processes>
         <process>
              <name>Mortage/Util/Scheduler A</name>
              <application>Mortage</application>
              <status>Active</status>
              <creationDate>2015-03-25T13:00</creationDate>
              <processInstances>
                   <processInstance>
                        <id>12314</id>
                        <status>RUNNING</status>
                        <createdOn>2015-03-25T13:01</createdOn>
                        <modifiedOn>2015-03-25T13:02</modifiedOn>
                        <operations>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>COMPLETE</status>
                                  <createdOn>2015-03-25T13:01</createdOn>
                                  <completedOn>2015-03-25T13:01</completedOn>
                             </operation>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>STALLED</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn>2015-03-25T13:02</completedOn>
                             </operation>
                        </operations>
                   </processInstance>
                   <processInstance>
                        <id>12315</id>
                        <status>RUNNING</status>
                        <createdOn>2015-03-25T13:02</createdOn>
                        <modifiedOn>2015-03-25T13:02</modifiedOn>
                        <operations>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>COMPLETE</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn>2015-03-25T13:02</completedOn>
                             </operation>
                             <operation>
                                  <name>Set Value X</name>
                                  <status>RUNNING</status>
                                  <createdOn>2015-03-25T13:02</createdOn>
                                  <completedOn></completedOn>
                             </operation>
                        </operations>
                   </processInstance>
              </processInstances>
         </process>
         <process>
              <name>Mortage/Util/Scheduler B</name>
              <application>Mortage</application>
              <status>Active</status>
              <creationDate>2015-03-25T13:00</creationDate>
              <processInstances/>
         </process>
    </processes>
    Though I'm unable to retrieve these kind of processes, since the SDK API does not offer a way to fetch these kind of processes.
    I tried the following Quick Start: http://help.adobe.com/en_US/livecycle/10.0/ProgramLC/WS624e3cba99b79e12e69a9941333732bac8- 7d27.html
    Quick Start (EJB mode): Searching for Process Instances using the Java API
    (and yes I went through all the possible options (other Quick Starts, API documentation))

    Yes, removing the block diagram obscures the code so much that not even newer versions of LabVIEW can make sense of it.
    I think under the hood it must be converting it to Perl.
    Spoiler (Highlight to read)
    If you believe this and have lots of money please contact me with your credit card info 
    If you believe this and have lots of money please contact me with your credit card info 
    =====================
    LabVIEW 2012

  • One of the APD Process Chains fails.

    Hi All,
    I have created two different process chain (PC1 and PC2 for example)which use program RSAN_PROCESS_EXECUTE  to execute the two diiferent APD (APD1 and APD2 for example) . PC1/PC2 executes APD1/APD2 respectively.Both the process chain have the same trigger event.
    The issues is that only one of the process runs successfully and the other fails at the program RSAN_PROCESS_EXECUTE
    For example if the PC1 runs PC2 fails at the program RSAN_PROCESS_EXECUTE and vice versa.
    The Error message it displays  is
    1) Job started     S     00     516
    2) Step 001 started (program RSPROCESS, variant &0000000155350, user ID ALEREMOTE)      S     00     550
    3) Spool request (number 0000030567) created without immediate output       S     SY     355
    4) Processing completed with errors. See spool list     E     RSAN_PR     22
    5) Job cancelled after system exception ERROR_MESSAGE     A     00     564
    Thanks
    Rajiv

    hi,
    To check the detailed error message for failure of APD, check in RSANWB, goto that APD and click on monitor.
    You will find the spool over there.
    Check the error message and let us know, so that we can try to help you out.
    It can be due to authorization issue or due to low memory.
    Regards
    Lavanya

  • 2 Accounts, moving email addresses from one to the...

    Hi,
    When I moved house, instead of moving my account, I have ended up with a new account. How do I move all my email addresses from the old account to the new one?
    I have 2 BT IDs at the moment and wish to only have one, when the process is finished, but I dare not close one til I have moved all the email accounts ....
    Anyone help?
    Thanks
    Peter

    Hi genoa,
    Thanks for posting and welcome back 
    I can help you with this.  Click on my username and under the "about me" section of my profile you'll see the link to get in touch with us.
    Cheers
    Robbie
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • Why the process chain always run twice when triggered from R3?

    I run a program from R3 by calling the remote function 'RSSM_EVENT_RAISE' on BW to trigger an event and in turn the event on BW bring up the running of a process chain.  But whenever I run the program on R3 to bring up the running of the process chain, I find the process chain always run twice at the same time.  Does anybody knows the answer? 
    And also I would like to know the functionalities of the two picture buttons "Activate" and "Activate and Schedule" in process chain.  In which case the "Activate" button should be used and in which case, the "Activate and Schedule" button should be used?   If we click the Start variant of a process chain, then click "Change Selections" button which bring up the window "Start Time" where the buttons "Immediate", "Date/Time", "After job", and "After event" are listed at the top.  If we modify at any of the above buttons, then after save this modification, we will have to click "Activate and Schedule" button to make it work, right? 
    Thanks a lot and everyone's idea is greatly appreciated!

    Kevin, make sure there is only one job scehduled for the Start Process of your Process Chain.  If you bring up the Process Chain (not the log view), right click on the Start Process and select "Displaying Scheduled Job(s)...".  There should only be one scheduled job with name BI_PROCESS_TRIGGER.  If there is more than one, then when triggered, it would execute more than once at the same time.  If there is only one job, then maybe your R/3 program is triggering the event more than once? 
    As far as the Start conditions for the Start Process, it works off the same principals as a scheduled job.  These start conditions determine when or how the Process Chain is to be executed.  You also have control over frequency.  These start conditions determine the scheduling of the Start Process of your Process Chain.
    When you schedule a Process Chain, a separate scheduled job is created for "each" process in the Chain.  BW controls the triggering of these jobs based upon how the processes in the Chain are linked.  All the jobs associated with Process Chains have strict naming conventions and all begin with BI_PROCESS_...  If you use SM37 to view all jobs that begin with BI_PROCESS_ you will find alot of scheduled jobs associated with your process chains.  Each job represents one of the processes within your process chains. 
    Does this help?
    Another tip might be to trigger the event manually in BW (use tx SM64).  If the process chain executes twice again, then maybe there is a separate scheduled job in BW that triggers the process chain that is triggered by the same event as the start process of the process chain.
    Message was edited by: George Shannon

  • All the Components go Red

    Hi,
    I was developing a master-detail application, and half way through the developement, all the components of one of the pages went red!
    The database was running, and I was not even changing anything on that page. I had to close JSC and reopen it again, and then everything seemed to be fine again.
    These kinds of things shake your trust in the tool, which otherwise has seemed very promising so far.
    I hope Sun puts in enough committment to see this product over the goal line.
    Haroon

    Hi,
    I too have come across the same scenario. But it always was because Pointbase server was not running. The following are the steps I followed in such a scenario:
    1. Closed the project
    2. Started pointbase server
    3. Reopened the project I was working on
    This has worked for me and I have never had to restart Creator. Also I noticed that the components stay red if I start the pointbase after opening the project.
    Cheers :-)

  • SAP MMC not showing SID after sap gui install and reboot of the server

    Hi,  after SAPGUI 7.10 install on our server and rebooting of the same,  SAP MMC says  u201CMMC could not create the snap-inu201D.
    We are desperately trying to find a solution.  We did the following:  Uninstalled the gui.
    1) Uninstalled the SAPMMC snap-in
    2) Re-installed it with the sapmmc_2-20005866.msi.
    3) This automatically created all the required dlls..especially the main ones ..sapmmc.dll,  sapstartsrv.exe in c:\WINDOWS\system32
    4) Copied librfc32.dll from a working system  to c:\WINDOWS\system32 of the system that is having issues
    5) Did the registry setup, by doing REGSVR32 sapmmc.dll, and further did sapstartsrv   -t  and re-created the service with the following parameters:
        <SID>
        01
       START_D*_hostname
       .\SAPService<SID>
       Password:*****
    6) All the services are up and running.
    7) Also did a re-boot, just to check if the registry update needed it, for the changes to be active.
    Still facing the same issue  "SAP MMC could not create the snap-in"
    Any input is  appreciated.
    Thanks and regards,
    RS.

    Hi,
    Check your "Input locale" might not be compatible with "System locale".
    Let us know if this information is useful to you.
    with regards,
    Parin Hariyani

  • One of my movies I bought shows up on my mac in the itunes library but not on the apple tv.

    I own about 30 movies on my apple tv and one of my movies I bought shows up on my mac in the itunes library but not on the apple tv. How do I fix this issue and get it to show up on my apple tv?

    Two things to check
    1st
    Settings
    Mail, Contacts, Calendars
    AccountsHow many accounts are there?
    2nd
    From Home screen press Mail app
    Press the top left button (next to Inbox)
    You'll see all the Inboxes for the accounts present
    You'll know either way whether one or more accounts has been setup.
    SIDE NOTE: Not too sure about MobileMe though, might be integrated with iCloud, not sure.

  • In Photo 1.0, how does one access the map showing where all photos were taken, as could be done previously in iPhoto?

    In Photo 1.0, how does one access the map showing where all photos were taken, as could be done previously in iPhoto?

    Hi JohnDory,
    The information side-bar from iPhoto has been removed in Photos App, and so it's been converted into a pop-up window showing both the exposure, aperture and so technical photo parameters, as well as the comments, faces and LOCATION for that photo.
    This small floating window is shown whenever you click the button in the app title bar, right clicking a specific photo or pressing ⌘i
    If you open the albums view (clicking in the name of the album list, NOT an album name, you can see in your left sidebar - which can be shown or hidden) and press ⌘i without selecting a specific photo the Info pop-up will show the map for your whole library (as well as the total amount of photos, videos, GB used, etc)
    So, I'm afraid the "Locations" view (which I really loved) from iPhoto has been ripped off... and we can only get "some sort of locations view" by this method.
    As for locations... there is no option for manual geotagging (so, setting location to a specific photography which doesn't have it yet)... that really ****** me off 
    Regards,
    braincasualties.

  • When using mail icon i get a blank screen with No message selected on the RH side. Top left is the word thread in  black . all other buttons are greyed out except the send new mail one. Cna anyone help?

    Email does not appear when using the mail icon on the home screen. I get No message selected showing on the rh side of my screen with the left hand third of the screen blank. Buttons on the top line are greyed out except the new mail one. The word thread appears in black on the top left hand side of the screen The only way out is to close the screen. all other apps work okay.

    Hello calverone,
    Thanks for using Apple Support Communities.
    To start troubleshooting this issue where the Mail application is not appearing correctly on your iPad, I'd like you to please force the Mail app to quit, and then restart your iPad.
    iOS: Force an app to close
    Turn your iOS device off and on (restart) and reset
    Have a great weekend,
    Alex H.

Maybe you are looking for

  • How can I have independent columns on a Pages 5.2 layout?

    Instead of using a table to format my text, I would like to use a 2 column layout. I can create the layout, but the 2 columns are linked i.e., I type in the first column until it is full when it then starts filling the second column. I would like to

  • Can i install a wireless card in my Satellite P30-141 's wireless bay?

    The P30-141 doesn't come with wireless functionality and i can't track any wireless antennae cables which should reside within the top casing of the machine, but i'd like to know if it's possible to undertake my own installation of a toshiba wireless

  • Tracking Material Delivery post Goods Issue

    Hi Friends - My client has a requirement to track the materials post goods issue to the user departments for consumption. Typical scenario - the materials reservations are raised from the user departments. The reservations are processed by the wareho

  • Exit for Inbound IDOC for Invoice

    Hello friends, I recevie a IDOC and the Invoice is created with the data in the IDOC. The invoice is created at the FM - IDOC_INPUT_INVOIC_MRM and within the FM - MRM_INVOICE_CREATE. The document # is e_belnr. My requirement is to Save the IDOC_DATA

  • Syncing and losing music

    have a laptop with a smaller hard drive. Last night, I synced the iPod Touch with my laptop to upload the music. I didn't have room on the hard drive for as many albums that I wanted, so I deleted the ones from the iTunes that I had already uploaded.