Unable to activate Central System Dispatching in CCMS

I've just finished the initial configuration of CCMS, setting the PI development system as the CEN (central monitoring system), initially.
But I've noticed the following problem. In http://help.sap.com/saphelp_nwpi71/helpdata/en/9d/df1241c738f423e10000000a155106/frameset.htm it says:
"...To activate central system dispatching, start transaction RZ21, and choose Technical Infrastructure - Configure Central System - Activate Central System Dispatching."
I completed that step successfully, but if I check in SM37 for the planified jobs, I can't find the job SAP_CCMS_CENSYS_DISPATCHER.
Background dispathing (data collection methods) is performed by SAP_CCMS_MONI_BATCH_DP and I can see this job in SM37, but I can't find SAP_CCMS_CENSYS_DISPATCHER, which is the job responsible for central system dispathing: auto-reaction methods).
I have activated both central system dispatching and background dispatching in client 000. As I can't see that job I've tried to deactivate and activate again, which is done successfully. But still it's not there in SM37.
Thanks for any help!

Hi Aamir,
initially I had scheduled the central dispatcher and background dispatcher in client 001, but I deactivated them, and after deactivating I activated them in client 000.
As for the filters in SM37, yes, I've made sure to check all the jobs using * for job name and for user, and doing that from client 000. In both 000 and 001 I can't find the job SAP_CCMS_CENSYS_DISPATCHER, which I think wouldn't allow me to planify auto-reaction methods.
Anyway, good hints, thanks.
(the problem persists)
Edited by: Jorge Lopez on Sep 23, 2009 6:33 PM

Similar Messages

  • Unable to switch Central System Administration into Change Mode

    Hi,
    I am bit rusty on the Solution Manager - Central System Administration.
    While experimenting with my Solman system I did the following.
    1. Logged into Solman and started transaction Solution_Manager
    2. Switched to the Solution that has been configured and then followed Operations Setup->Solution Monitoring -> System Administration -> Central System Administration for <My System> (here my system is the system I wish to monitor).
    3. After following the navigation to the selected item as described in step 2, I selected the menu items Session Components->Complete.
    4. After this action of selecting the Complete session from the menu, my Central System Administration for <My System> is continuously showing Display Mode.
    I am unable to switch back the system to Change Mode.
    Am I missing something ? What needs to be done ?
    Regards,
    Siddhesh

    Siddhesh Ghag wrote:>
    >
    > 3. After following the navigation to the selected item as described in step 2, I selected the menu items Session Components->Complete.
    >
    > Regards,
    > Siddhesh
    This was the wrong step. By setting the Session Component to "Complete", no further changes are allowed (and you receive a pop-up).
    The procedure to reopen the session component is not documented for customers. Please create a customer message on SV-SMG-MON-CSA, open the service connection and provide logon information.
    You might state my name in the message, I will then assist the message processor.
    Best regards,
    Ruediger Stoecker

  • CCMS alert monitoring data for ORACLE is not visible in Central system

    Hello,
    I have installed sapccm4x agents in the CI of the Satellite System and it shows in the Central System as sucessfully registered under Agents for remote System and the RFC Connection test is also successfull. When i check in RZ20 in Central System not all the predefined monitors are visible of the Satellite System in the Central System and mainly the MTE element ORACLE. The database,CI and other instances on the Satellite System are installed on separate hardware. As said the database is installed not with the CI but a standalone.
    Please let us know what needs to be configured in order to get the MTE element of ORACLE to show in the Central System.
    Thanks,
    Vinod Meno

    Bhudev,
    Thanks for the quick respose..
    1.Sapccmsr agent is installed on Java standalone server and it has been sucessfully registered and running and we can grep the process to see its state as well as in the Central System i can see under ccms agents for remote systems it shows and the RFC connection test is also sucessfull.
    2.Yes we are sending the data from the DB to CI first,but we also want the data visible in the Central System mainly for the MTE element Oracle.The filesystem of the Satellite Systems shows up in the Central System but i am intrested to capture the MTE element Oracle since we plan to monitor the tablespaces threhold .
    I am thinking of opening an SAP message but i am trying to see if i can get some info that can give me the result.
    Regards,
    Vinod Menon

  • RMI Activatable (unable to obtain activation system)

    Hello, I am new to forum... I have a simple rmi activation program.. Before writing program,I have checked some books and example in the sun site...
    Before starting to program, I command "start rmiregistry" and
    rmid -J-Djava.security.policy=rmi.policy -J-Dsun.rmi.activation.execPolicy=none
    Up to here ,everything is Ok.
    However,when I started to Setup program .I got the error Unable to obtaion activation system....
    Following my codes:
    my remote object...package impl.server;
    import java.rmi.*;
    import araclass.Kitapcik;
    import araclass.Soru;
    public interface Sinav extends Remote{
         Kitapcik bilgileriGetir() throws RemoteException;
         String sorulariGetir(Soru soru) throws RemoteException;
    package impl.activate;
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import araclass.Kitapcik;
    import database.Database;
    import araclass.Soru;
    public class SinavYordam extends Activatable implements Sinav{
         Database data;
         public SinavYordam(ActivationID id,MarshalledObject data) throws RemoteException{
              super(id,0);
         public Kitapcik bilgileriGetir(){
              data=new Database();
              data.baglan();
              Kitapcik kitap=data.kitapcikGetir(2);
              data.kapat();
              return kitap;
         public String sorulariGetir(Soru soru){
              String sor="";
              data=new Database();
              data.baglan();
              sor=data.soruGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sor;
         public String[] siklariGetir(Soru soru){
              String[] sik;
              data=new Database();
              data.baglan();
              sik=data.siklariGetir("Soru_Getir", soru.soru_no, soru.tabloAdi);
              data.kapat();
              return sik;
    }and lastly setup program,
    import impl.server.Sinav;
    import java.rmi.*;
    import java.rmi.activation.*;
    import java.util.Properties;
    import java.util.prefs.Preferences;
    public class SinavServer {
         public SinavServer(){
         public static void main(String[] args) throws Exception{
                   System.setSecurityManager(new RMISecurityManager());
         Properties prop=new Properties();
            prop.put("java.security.policy","/workspace1/SINAV");
               ActivationGroupDesc.CommandEnvironment  cmd=null;
               ActivationGroupDesc grpdesc=new ActivationGroupDesc(prop,cmd);
              ActivationGroupID id=ActivationGroup.getSystem().registerGroup(grpdesc);
              String location="file:/workspace1/SINAV";
              ActivationDesc desc=new ActivationDesc(id,"impl.activate.SinavYordam",location,null);
              Sinav sin=(Sinav)Activatable.register(desc);
              Naming.rebind("Sinav", sin);
    } Thanks in advance..

    Actually, I got two diffirent exception in an interesting order.. I mean one day I got the following the error;
    Exception in  thread "main"  java.Access.Security.ControlException: access denied <java.io.FilePermission \\c\workspace1\SINAV read>
    at java.security.AccessControlContext.checkPermissionthat goes on...
    The other day ,
    Unable to obtain activation system exception today I could not have got so far. If I got, I would post.
    So anyone who I have an idea of this problem...
    Thanks in advance...

  • Error: Unable to manipulate operating system

    In the CCM I have all services up and running, however, when I go to the CMC web page and look at the Servers, there are two servers in particular that are stopped and when I go to click on them to start I get a new page with the verbiage "Unable to manipulate operating system service for server".
    What is causing the CMC to report this "error" whilst the CCM shows the service as up and running? I am logged on the server directly running both the CCM and CMC (not both at the same time).
    My platform is XI R2 SP3.
    Thanks,
    John

    Gurusamy,
    Did you try creating new service for the same type of service?
    This is exactly what happened, on Monday morning I wound up creating a new service (actually every service except for the Central Management Server).  All other servers were sending a notice to the Apps log on the server "Fail to register with the nameserver.  Please check for name duplication and validness of name used".  Though no one in network ops is confessing, some type of naming convention was changed over the weekend causing all of our BO services to fail (except miraculously CMS).  So I followed SAP tech note #1199817 (add and start the services, delete the duplicate services), all done successfully via CCM, however, when I went over to the CMC side of the house, some of the newly established services indicated "stopped", which I found to be quite confusing, hence this post.  Tim's suggestion to delete the service in the CMC and allow it re-populate was the solution that worked.
    Thanks,
    John

  • Remote system monitoring entry- data not relayed to Central system

    Hello Folks,
                        I am trying to establish a central monitoring system for our client. I am trying to test it in the DEV environment first.
    The central system is a Solution manager system (Dual stack- ABAPJAVA). I am trying to bring in monitoring data from the ECC development environment (ABAPJAVA).
    First of, i created to RFC connections in Solution manager system, one for data collection and the other for analysis. I have maintained the host address of the ECC system as target.
    Then i have created a remote system entry in Transaction RZ21--> technical infrastructure entered the 2 RFC names and have executed the function.
    At this point i am only trying to bring in ABAP stack monitoring data form the ECC system so i have not generated the CSNCONF file.
    Now when i look in Solution manager RZ20-->CCMS monitoring templates, i can't see any data for the the ECC system.
    I guess i am doing something wrong. Am i looking in the wrong monitor set?
    As additional information: Solution manager (SMD) and ECC (ECD) use different transport domains / transport groups. I dont know if this makes a difference.
    Can some one please help.
    Regards,
    Prashant

    Hi Prashant,
    if I understand correctly your system shows only MTEs from R/3 Stack, not from the OS side, pls check your SAPOSCOL. Are the data in OS06 in your remote system correct and do you see the current data, refredhed all 10 seconds?
    To check your environment, pls do the following:
    in th efirst step check in RZ21 > in the Topology part the System Overview for your system connection to your back end system. Are the Read Destination Data RFC and the Destination Analysis RFC correct and works the authority chek fine?
    In the second step pls check in RZ21 > in the Agents for Remotey SAP Systems part; are there registered your remote ccms agents correctly and works the connection test.
    Stop the agents and in your RZ20 monitor pls enter STAT in your command field. Are there displayed for your MTE nodes the read RFC destinations?
    Start the agents and and in your RZ20 monitor pls enter STAT in your command field. Are there displayed for your MTE nodes the CCMS Agent RFC destinations?
    To rebuild the Monitor in the CEN system you could try to reset the node of your remote system in the warm up status > go in the remote system to RZ1 > go to local segments  > change to edit > select your segments > reset segment in "WARMUP" status.
    In the CEN system you coul try to go to the edit mode for the Agents for Remot SAP Systems > select your remote system and push the button Reinitialize Agents
    In the back end system you can try to delete all MTEs in RZ21 > menu Technical Infrastructure > Reorgenize Segment Table > select the options with "ALL" in the CEN and the remote system to reorgenize all data.
    Could you pls post for the missing MTEs a screenshot on the one side from the CEN system and on the other side from the remote system...
    and last but not least you could try the following for missing OS MTEs
    delete  ALALERTS, ALMTTREE and ALPERFHI in /usr/sap/ccms/<SID>_<SNR> and check in the agents folder all trace and log files for errors.

  • SharePoint Foundation Sandboxed Code Service - Unable to activate worker process proxy object within the worker process

    Issue:
    On a vanilla installation, the sandboxed code service (e.g. SPUCHostService.exe) is started; however, SPUCWorkerProcessProxy.exe and subsequently SPUCWorkerProcess.exe fails to start.
    Resolution/Workarounds attempted:
    Attempted 2 different Load balancing settings – local and remote (i.e. affinity)
    Ensured local computer policy on server for ‘RPC Endpoint Mapper Client Authentication’ and ‘Restrictions for Unauthenticated RPC clients’ is disabled.
    Ensured following key in registry is set properly - HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\RPC
    Attempted to bypass SharePoint’s check for certificate revocations at crl.microsoft.com
    Ensured the service account is added to the respective groups (e.g. Performance Log Users, Performance Monitor Users, IIS_IUSRS, WSS_ADMIN_WPG, WSS_WPG)
    Increased limit of ‘AbnormalProcessTerminationCount’ of SPUserCodeService via Powershell
    We have tried all possible workarounds from the following MSDN reference:
    http://blogs.msdn.com/b/sharepointdev/archive/2011/02/08/error-the-sandboxed-code-execution-request-was-refused-because-the-sandboxed-code-host-service-was-too-busy-to-handle-the-request.aspx
    ULS:
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              fe8a               
    Medium               -  - Unable to activate worker process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000  
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              fe8c               
    Medium               -  - Error activating the worker process manager instance within the worker process. - Inner Exception: System.InvalidOperationException: Unable to activate worker
    process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()    
    02/21/2014 05:24:50.64  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service              ei0t               
    Medium               - Process creation/initialization threw an exception. Stopping this process. "ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000"
    02/21/2014 05:24:50.65  SPUCHostService.exe (0x0230)  0x0F74  SharePoint Foundation Sandboxed Code Service             
    fe87                Medium               -  - Error activating the worker process manager instance within
    the worker process. - Starting worker process threw - Inner Exception: System.InvalidOperationException: Unable to activate worker process proxy object within the worker process: ipc://38432b45-2f32-4926-ade2-ef53ae1cd501:7000     at Microsoft.SharePoint.UserCode.SPUserCodeWorkerProcess.CreateWorkerProcessProxies()   
    Any other insights on how I can troubleshoot the issue described?
    Thanks in advance!

    Hi ,
    For resolving your issue , you can do as the followings:
    1. Logged into the Web Server with the Timer Service Account.
    2. Ran the powershell command to check the SID of the account running the spucworkerprocessproxy.exe:  
    $(Get-SPManagedAccount -Identity "THE SERVICE ACCOUNT").Sid.Value
    3. Checked the registry :
    HKEY_USERS\[SID OF THE SERVICE ACCOUNT]\Software\Microsoft\Windows\CurrentVersion\WinTrust\Trust Providers\Software Publishing\State
    4. Changed the value 0x00023c00 to 0x00023e00
    In addition, here are some similar posts for you to take a look at:
    http://social.technet.microsoft.com/Forums/en-US/aae497df-5f0d-4f86-a724-c7b805ccd07f/sharepoint-sandboxed-code-service-troubles?forum=sharepointgeneralprevious
    http://blogs.technet.com/b/operationsguy/archive/2011/01/17/sharepoint-2010-sandboxed-code-solutions-and-web-proxy.aspx
    http://social.msdn.microsoft.com/Forums/en-US/c21e2c3a-a259-4d5f-8071-eff52b7bddc3/issue-sandbox-solution-too-busy-to-handle-the-request?forum=sharepointgeneralprevious
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Unable to activate software after upgrading to Windows 8

    This post contains one question.
    I am unable to activate my Creative Cloud products after upgrading to Windows 8. I have used the Chat service on three separate occasions, and after the employee asks me for my e-mail and order number, determines that they are unable to provide me the instructions necessary to license or activate the software. So I must be forwarded to a special team to help me resolve this problem. During the transfer, I get cut off -- each time.
    On Windows 7, I deactivated my Creative Cloud membership through Photoshop.
    I upgraded to Windows 8, installing all security updates and restarting the system several times.
    Now that all updates are installed, I want to re-activate my Adobe products -- but am unable to find the commands to do so.
    I have logged in to Adobe Application manager, using the e-mail address and password that Adobe has in the system for my account.
    How do I activate my Adobe products?

    Does the solution provided by customer 'kipedias' in this post http://forums.adobe.com/message/4903206#4923341 resolve the issue?

  • Not able to find Central System Administration

    Hi,
    We are trying to configure the Central System Administration in our Soultion Manager version 4.0 for the Development server running on ECC 6.0.
    We have created systems, generated RFC's, defined logical system and and also created Solution Landscape for the Development Server in the Solution Manager System.
    But when we go to the transaction DSWP>Eneter the Development Solution Landscape>Solution Minitoring>System Monitoring/ Administration>Operation Setup, We rae unable to find the Central System Administration configure icon.
    Please suggest the possible reason for this and a way to view the Central System Administraion configure Icon.
    Thanks and Regards,
    Abdul Khyoom A.

    Hi Abdul,
    CSA Setup should be visible via this path:
    - dswp
    - open solution landscape
    - choose Operations Setup -> Solution Monitoring -> System Administration
    - here you should see for each system in the Landscape an entry for: Central System Administration
    What's the Support Package Level of you SolMan system?
    Best regards,
    Ruediger

  • Unable to activate Transfer Structure for Generated Datasource in BW3.5

    HI Experts,
    We have a scenario where the data needs to moved from DSO A to Cube B
    we have clicked the Export datasource and created 8(ODS A)
    when created IP for this it gave us all selection in selection screen but we required only 3 Characters
    <br> so we maintained the export datasource and saved it when we again tried to generate datasource it went to short dump       
    <br> with following messages:
    <br>  Short text of error message:                                               
    <br>  Serious internal error:              <br>   
    <br><h4> Transfer structure got deactivated and we are unable to activate it again even by RS_TRANSTRU_ACTIVATE_ALL <br>
    </h2>
    <br>                                                                               
    <br>Technical information about the message:                                   
    <br>  Diagnosis                                                                 
    <br>     A serious internal error occurred. It could not be corrected.         
    <br>  Procedure                                                                 
    <br>      The following information is available on this error:                 
    <br>      1.                                                                    
    <br>       2.                                                                    
    <br>      3.                                                                    
      <br>     4.   OSS note                                                         
       <br>    Check the OSS for corresponding notes and create a new problem        
    <br>      message if necessary.                                                 
    <br>  Message classe...... "RSAR"                                                
    <br>  Number.............. 001                                                   
    <br>  Variable 1.......... " "                                                   
    <br>  Variable 2.......... " "                                                                               
    <br>Source Code Extract                                                                               
    <br>Line  SourceCde                                                                               
    <br> 514         IF g_subrc NE 0.                                                 
    <br>  515           MESSAGE x001.                                                  
    <br>  516         ENDIF.                                                           
    <br>  517 *       Check new version neccessary                                     
    <br>  518         l_curr_version = c_s_is_admin-odsversion.                        
    <br> 519                                                                          
    <br>  520         IF l_new_version EQ rs_c_true.                                   
    <br>  521           IF i_without_versioning EQ rs_c_true.                          
    <br>  522             MESSAGE e023 WITH c_s_is_admin-odsname_tech                  
    <br>  523                               c_s_is_admin-isource                       
    <br>  524                     RAISING no_psa_version_allowed.                      
    <br>  525 *         ELSEIF i_without_versioning EQ 'C' AND                         
    <br>  526 *                i_without_transport  EQ rs_c_true.                      
    <br>  527 *--         special handling for migration.                              
    <br>  528 *-          current system is target system no transport request         
    <br>  529 *-          necessary if a new version is needed                         
    <br>  530           ELSEIF i_without_versioning EQ 'C'        AND                  
    <br>  531                  i_without_transport  EQ rs_c_false.                     
    <br>  532             RAISE inconsistency.                                         
    <br>  533           ENDIF.                   .                                     
    <br> 534                                                                          
    <br>  535           IF i_objtype = rsa_c_istype-data.                              
    <br>  536 *           check type of InfoSource first                               
    <br>  537             SELECT SINGLE issrctype FROM rsis                            
    <br>  538                            INTO l_isrctype                               
    <br>  539                           WHERE isource = c_s_is_admin-isource           
    <br>  540                             AND objvers = rs_c_objvers-active.           
    <br> 541             IF sy-subrc <> 0 OR l_isrctype = rsarc_c_issrctype-ods.          
    <br> 542 *             if generated ODS InfoSource,                                   
    <br> 543 *             no PSA versioning possible                                     
    <br>>>>>               MESSAGE x001.                                                  
    <br> 545             ENDIF.                                                           
    <br> 546           ENDIF.                                                             
    <br> 547           l_next_version = l_curr_version + 1.                               
    <br>548           c_s_is_admin-odsversion = l_next_version.                          
    <br> 549           l_transtru_odsname+13(3) = l_next_version.                         
    <br> 550 *         Don't use old progname but create new one                          
    <br> 551           CLEAR l_progname_ods.                                              
    <br> 552         ELSE.                                                                
    <br> 553           l_next_version = l_curr_version.                                   
    <br>554         ENDIF.                                                               
    <br>555                                                                               
    <br> 556       ENDIF.                                                                 
    <br> 557 *     set transtru_names for IDoc                                            
    <br> 558       c_s_is_admin-odsname       = i_transtru_name.                          
    <br>559       c_s_is_admin-odsname_tech  = l_transtru_odsname.                       
    <br>560     WHEN OTHERS.                                                             
    <br> 561   ENDCASE.                                                                   
    <br> 562
    Edited by: Sachin Shankarrao Dehey on Oct 20, 2010 8:59 AM
    Edited by: Sachin Shankarrao Dehey on Oct 20, 2010 9:03 AM

    Hi,
    Delete all the DS and try creating from starting, to export DS, with correct selections, and then Activate the Transfer Structure..
    Hope Helps,
    Regards,
    Laj

  • EP Central System + Dialog Instance Installation options

    Hi Friends
    For my production EP 6.0 WAS 6.40-Java instance I am getting 3 AIX servers, say server DBserver, Appserver1 & Appserver2, we want to install the database & CI on the DBserver, the other 2 servers need to serve the role of Application servers to the DB+CI server.
    In our SAP R/3 Production systems we don't allow the users to login to the server hosting the (database+CI) & we allow them to login only to the appication servers, I want to do a similar setup for my Production portal landscape & require that the portal users are load-balanced using the SAP Web Dispatcher to the 2 application servers.
    I have 2 questions on which installation options to choose to achieve the above objective.
    1.  Can somebody check & confirm if the below mentioned Installation sequence is correct for Installing the WAS on the 3 servers.
    a) Using Installation option "Java System ->Oracle->Central System->Custom Installation-Java system" for the DBserver.
    b) Installation option "Java System ->Oracle->Central System->Dialog Instance Installation" for Appserver1 & Appserver2.
    2. Can somebody advice how do I need to install the portal on the 3 servers so that the above objective of load-balancing the users to the 2 App servers is met.
    a) Do I need to install portal only on the DB+CI server & then the portal platform will be setup on the 2 App servers as well or
    b) Can I install the portal separately on the 2 portal App servers.
    Thanks & Rgds,
    Abhishek

    Hi Friends
    Any replies will be appreciated & also rewarded with points.
    Thanks & Rgds,
    Abhishek

  • Regarding authorization in solution manager for Central system monitoring

    Hi,
    I want to Prevent users from deleting Task logs in central system monitoring
    in solution manager
    I have assigned the roles SAP_SV_SOLUTION_MANAGER_DISP
    But it gives display authorization for everything unable to keep track of
    changes in monitoring
    Can anyone please help me to prevent users from deleting task log history
    Since I have to keep track of one month data
    What can be the suitable role for it ? or what authorization objects i should
    make a change to prevent deleting tasklog.
    Kindly help me in this regard
    Regards
    Sanjeev.S

    Thanks for your prompt reply
    I am not saying about SDDCN
    In transction solution_manager  => opertation set up = > central system
    administation
    we  will do manual monitoring for sattelite systems in this path. what we monitored
    will be entered in task log history.
    So what can be the suitable role to prevent the deleting of the task log history.
    There is option delete task history. if any one by mistake clicked on that ,all the
    records of monitoring will be lost.
    so kindly suggest me a suitable solution

  • We are unable to activate your CS5.5 Design Premium

    Hello,
       I'm unable to activate my CS5.5 product and getting the error as "We are unable to activate your CS5.5 Design Premium" and later it says Please connect to Internet. I tried all the possible steps mentioned in this forum and also followed the steps mentioned under this below document:
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    I'm in Home netwok, firewall is disabled, no anti-virus.
    Creating a new Admin account is the only option?
    System Info: Mac OSX 10.5.8 core 2 duo
    My serial key is correct.
    Any further suggestions?? Please help!
    Thank you.

    Hello,
    I too had the same issue and tried all the steps mentioned in the above document. But it failed. I contacted my IT guy who informed that there is no firewall enabled in the modem. I'm using a home pc.
    Lately, I contacted your support team who performed the same steps again and did not resolve the issue. Finally one guy said do something called selective startup on my Windows 7. I'm uneasy with this. He said that it is a part of their troubleshooting steps and can enable them back. I said okay and did it which did not resolve this issue. At last he said to create a new admin account!!! I was not at all satisfied with this resolution but yes I did and it did work! But I'm greatly confused. What could have been the issue? I don't want to create a new account everytime I face this issue. So any possible reasons other than which are mentioned in the document?
    TY!
    Mr. Lowell

  • Setup Central System Administratin and Setup System Monitoring grayed out

    When trying to setup Central Sytem Administration and System Monitoring via SOLUTION_MANAGER.>Operations Setup->Solution Monitoring->Setup Central System Administration (or Setup System Monitoring).  The link does not work.  However, Setup Earlywatch Alert link works (in Operations Setup->Solution Monitoring->Setup Earlywatch Alert).
    We have just brought SolMan 4.0 up to SolMan 7.0 (applied support packs up to 16).  I am not sure if I am missing a step to activate this functionality; or if perhaps I have an authorization issue.  I have been through the Security Guid for SAP Solution Manager 7.0 as of SP16, and have reviewed note 834534 and been assigned authorizations accordingly....with one exception:  In note 834534, page 4, it states that the configuration user should have SAP_ALL.  However, I am getting push-back from IT Governance and my request for SAP_ALL is being rejected. 
    We have installed software components, in particular ST (Release 400, level 17); ST-SER (700_2008_1, Level 004; and ST-PI (2005_1_700 Level 18); of which I believe ST-SER is key.
    Has anyone encountered this issue?

    Hi,
    Yes, This could be an authorization issue.
    You are able to Setup Early Watch Alert because you may have the role
    SAP_SETUP_DSWP_EWA (full authorization for EarlyWatch Alert setup).
    Assign these roles, you wil be able to setup System Monitoring and Administration.
    1. SAP_SV_SOLUTION_MANAGER (full authorization for all sessions)
    2. SAP_SETUP_DSWP (full authorization for all setup sessions)
    3. SAP_SETUP_DSWP_SM (full authorization for System Monitoring setup)
    4. SAP_SETUP_DSWP_CSA (full authorization for Central System Administration setup)
    5. SAP_SETUP_DSWP_SLR (full authorization for Service Level Report setup)
    Also check these roles:
    SAP_OP_DSWP (full authorization for all Operations sessions)
    SAP_OP_DSWP_EWA (full authorization for EarlyWatch Alert operations)
    SAP_OP_DSWP_SM (full authorization for System Monitoring Operations)
    SAP_OP_DSWP_CSA (full authorization for Central System Administration operations)
    SAP_OP_DSWP_SLR (full authorization for Service Level Report Operations)
    This is the authorization object D_SOL_VIEW  used in these roles.
    Regards,
    Sanjai

  • Solution Managers System monitoring and CCMS/CEN

    Hi.
    Could anybody enlighten me on the Role of  CCMS / CEN in the Solution manager Monitoring.
    I have set up solution manager to Monitor my landscape. I have set up user defined limits and email alerts. These Alerts and the alerting agent - I assume - are carried out on the system being monitored.
    Now the question - I want the Solution manager box to be the CEN and do the Alerting centrally (from the SM box)  -  Will the MTE's and Alerts that I have assigned and configured through System Monitoring use the properties set up though the CCMS?
    I assume I will have to install the CCMS agents on all the target boxes - Will the Solution manager box process the Statics and send out the alerts from itself? If so How much workload does this place on the network and the box?
    Why does the solution manager not act as the central processing and alerting box from the start? If we go through the effort of setting up the monitoring - why does it not set up Collection and Alerting at the same time? 
    Any feedback will be appreciated.
    Thanks
    Terry H.

    Hi Terry,
    Solution Manager System Monitoring is using CCMS infrastructure, so we have two different ways to collect data (alerts) from the satellite systems, first via CCMS agents as you mentioned or the option to use RFC destinations to read the alerts. This can be configured automatically by SMSY in Solution Manager. The second option produces higher network workload, because every alert will be checked every 3 minutes, with agents only new alert values will be pushed.
    I hope this info helps you
    Regards,
    uDo

Maybe you are looking for