How to config and implement SAP Solution Manager

Hi,
We have to  config and implement SAP Solution Manager.
So plz suggest me the steps to be taken.
From where we have to start config and implement SAP Solution Manager.
Regards,
Radhey Shyam

Hello Radhey,
I would suggest you take advantage of the documentation and simulations available in the Solution Manager Ramp -Up Knowledge Transfer area - http://service.sap.com/rkt-solman.
The areas are broken down by  section and links  such as Overview Build, Config, Deploy, Operation, Optimization, etc are provided. There are many hours of tutorials.
If you are just starting out, this information is invaluable.
Regards,
Paul

Similar Messages

  • Default User Parameters in SAP SOLUTION MANAGER 7.1

    Hi,
    I want some default parameters automatically be assigned to new users when they are created instead of manually adding every time in su01 transaction code. Do you know how to configure this?
    SAP SOLUTION MANAGER 7.1
    SAP_BASIS
    702
    0012
    SAPKB70212
    SAP Basis Component
    I try settings in SSM_CUST for user-exit Z_USERS_TRANSFER and SAP_USERS_TRANSFER, but it's don't work.
    Thank you.

    Code function module runs in SAP EHP 1 for SAP Solution Manager 7.0 SAP_BASIS 701.
    In SAP SOLUTION MANAGER 7.1 SAP_BASIS 702 function module is ignored. it can be seen if you set a breakpoint in the function module.
    FUNCTION CREATE_USER_HR_INFO.
    *"*"Локальный интерфейс:
    DATA: su01_mode(5) type c.
    field-symbols: <BNAME> like USR02-BNAME.
    field-symbols: <ACCNT> like BAPILOGOND-ACCNT.
    field-symbols: <CLASS> like USLOGOND-CLASS.
    field-symbols: <FUNCTION> like ADDR3_DATA-FUNCTION.
    field-symbols: <DEPARTMENT> like ADDR3_DATA-DEPARTMENT.
    field-symbols: <su01_mode> like su01_mode.
    DATA hr_rfc TYPE STANDARD TABLE OF ZSTR_HR_PERSON_INFO WITH HEADER LINE. " инф-ция о польз-лях, получаемая из HR по RFC
    DATA : sys_msg(80) TYPE c,
             indx TYPE i.
    DATA ADDRESS LIKE TABLE OF BAPIADDR3 WITH HEADER LINE.
    DATA ADDRESSX LIKE TABLE OF BAPIADDR3X WITH HEADER LINE.
    DATA DEFAULTS LIKE TABLE OF BAPIDEFAUL WITH HEADER LINE.
    DATA DEFAULTSX LIKE TABLE OF BAPIDEFAX WITH HEADER LINE.
    DATA LOGONDATA LIKE STANDARD TABLE OF BAPILOGOND WITH HEADER LINE.
    DATA LOGONDATAX LIKE STANDARD TABLE OF BAPILOGONX WITH HEADER LINE.
    DATA RETURN LIKE STANDARD TABLE OF BAPIRET2.
    DATA res_lines TYPE i VALUE 0.
    assign ('(SAPLSUU5)g_ok_start') to <su01_mode>.
    if sy-subrc = 4.
       exit.
    ENDIF.
    *<su01_mode> will have the following values: create = "CREA", change = "CHAN", and delete = "DELE"
    *  DATA mes TYPE string.
    *  mes = sy-subrc.
    *  CONCATENATE 'sy-subrc' mes into mes separated by SPACE .
    *  MESSAGE mes TYPE 'I'.
    if <su01_mode> = 'CREA'.
       assign ('(SAPLSUU5)USLOGOND-ACCNT') to <ACCNT>.
       assign ('(SAPLSUU5)USR02-BNAME') to <BNAME>.
       assign ('(SAPLSUU5)USLOGOND-CLASS') to <CLASS>.
       assign ('(SAPLSUU5)ADDR3_DATA-FUNCTION') to <FUNCTION>.
       assign ('(SAPLSUU5)ADDR3_DATA-DEPARTMENT') to <DEPARTMENT>.
       hr_rfc-PERNR = <ACCNT>.
       APPEND hr_rfc.
       CALL FUNCTION 'GET_HR_PERSON_INFO' DESTINATION 'PHRCLNT200_HR'
         TABLES
           PERSON_INFO       =  hr_rfc
         EXCEPTIONS
           SYSTEM_FAILURE = 1 MESSAGE sys_msg
           COMMUNICATION_FAILURE = 2 MESSAGE sys_msg
    DESCRIBE TABLE hr_rfc LINES res_lines.
    *если по табельному номеру нашлись данные - заполняю ими структуры
    if res_lines > 0.
       LOOP at hr_rfc.
         DEFAULTS-KOSTL = hr_rfc-PLANS.
         DEFAULTSX-KOSTL = 'X'.
         if hr_rfc-GESCH = '1'.
           ADDRESS-TITLE_P = 'Господин'.
         else.
           ADDRESS-TITLE_P = 'Госпожа'.
         ENDIF.
         SPLIT hr_rfc-ENAME AT space
                             INTO ADDRESS-LASTNAME
                                  ADDRESS-FIRSTNAME
                                  ADDRESS-MIDDLENAME.
         if <FUNCTION> = ''.
           ADDRESS-FUNCTION = hr_rfc-FUNCTION.
           ELSE.
             ADDRESS-FUNCTION = <FUNCTION>.
         ENDIF.
         if <DEPARTMENT> = ''.
           ADDRESS-DEPARTMENT = hr_rfc-STEXT.
           ELSE.
             ADDRESS-DEPARTMENT = <DEPARTMENT>.
         ENDIF.
         ADDRESSX-TITLE_P = 'X'.
         ADDRESSX-LASTNAME = 'X'.
         ADDRESSX-FIRSTNAME = 'X'.
         ADDRESSX-MIDDLENAME = 'X'.
         ADDRESSX-FUNCTION = 'X'.
         ADDRESSX-DEPARTMENT = 'X'.
       ENDLOOP.
    endif.
       DEFAULTS-LANGU = 8.
       DEFAULTS-DCPFM = 'Y'.
       DEFAULTS-SPLD = 'LOCL'.
       DEFAULTS-SPDB = 'G'.
       DEFAULTS-SPDA = 'D'.
       APPEND DEFAULTS to DEFAULTS.
       DEFAULTSX-LANGU = 'X'.
       DEFAULTSX-DCPFM = 'X'.
       DEFAULTSX-SPLD = 'X'.
       DEFAULTSX-SPDB = 'X'.
       DEFAULTSX-SPDA = 'X'.
       APPEND DEFAULTSX.
       ADDRESS-NAMEFORMAT = '03'.
       ADDRESS-NAMCOUNTRY = 'UA'.
       APPEND ADDRESS to ADDRESS.
       ADDRESSX-NAMEFORMAT = 'X'.
       ADDRESSX-NAMCOUNTRY = 'X'.
       APPEND ADDRESSX.
       LOGONDATA-GLTGV = sy-datum.
       LOGONDATA-GLTGB = '99991231'.
       LOGONDATA-TZONE = 'EET'.
       if <CLASS> = ''.
         LOGONDATA-CLASS = 'END_USER'.
         ELSE.
           LOGONDATA-CLASS = <CLASS>.
       ENDIF.
       APPEND LOGONDATA.
       LOGONDATAX-GLTGV = 'X'.
       LOGONDATAX-GLTGB = 'X'.
       LOGONDATAX-CLASS = 'X'.
       LOGONDATAX-TZONE = 'X'.
       APPEND LOGONDATAX.
       CALL FUNCTION 'BAPI_USER_CHANGE'
         EXPORTING
           USERNAME = <BNAME>
           ADDRESS       =  ADDRESS
           ADDRESSX       =  ADDRESSX
           DEFAULTS     =  DEFAULTS
           DEFAULTSX     =  DEFAULTSX
           LOGONDATA   = LOGONDATA
           LOGONDATAX   = LOGONDATAX
         TABLES
           RETURN        = RETURN
    *  DATA mes TYPE string.
    *  mes = sy-subrc.
    *  CONCATENATE 'sy-subrc' mes into mes separated by SPACE .
    *  MESSAGE mes TYPE 'I'.
    ENDIF.
    *ENDIF.
    ENDFUNCTION.

  • Ticket SAP Solution Manager 7.0 to SAP EHP 1 for SAP Solution Manager 7.0

    Hi,
    I want to migrate all tickets from SAP Solution Manager 7.0 to SAP EHP 1 for SAP Solution Manager 7.0 , please let me know the procedure how to migrate it.
    DB Detail
    SAP Solution Manager 7.0 - MSSQL( 9.00.4035)
    SAP EHP 1 for SAP Solution Manager 7.0 - MSSQL(10.00.2531)
    Thanks,
    Kaleel

    Dear Mohamed,
    I was reading the post and the replies and while I think your question has been answered, I just want to make sure what you are trying to achieve. Is it a migration, where you have one Solution Manager system on SAP Solution Manager 7.0 and another
    SAP Solution Manager EHP1 system and you were looking to migrate the Service Desk messages?
    If you are "Upgrading" one system from Solution Manager 7.0 to  EHP1 then all the messages are preserved.
    If you are "Migrating" to a physically different system, then transfer of Service Desk Messages is not supported.
    Please see the document [SAP Solution Manger-  Conent Transfer|https://websmp204.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000608232009E]
    Also Service Desk is a completely independent CRM Service, so the messages could always be archived, as has been suggested.
    No depending on your scenario, is the EHP1 system brand new or is it already productive? If it was brand new, you might be able to do a homogenous system copy, and then upgrade the new system to EHP1. But if it is already productive, this would not be an option.
    Hope this helps to clarify.
    Regards,
    Paul

  • Implementing ASAP Methodology using SAP Solution Manager

    Hi All,
    Can any one help me with any documentation regarding ASAP methodology implementation using Solution Manager.
    The step by step process and transaction codes used for implementing it are there any guides provided by SAP for implementing the ASAP methodology in Solman.
    It's an implementation project that we would like to track each phase in Solman.
    Kindly help me to get more details.
    Thanks in advance.

    Hi,
    There are the 'ASAP Implementaion Roadmaps' wheras the latest available
    is the 'ASAP Methodology for Implementation 7.0' Roadmap, and there are
    the 'Upgrade Roadmaps' wheras teh lastest one of them is:
    'Upgrade Roadmap (V3.2)'.
    If you are on ST-ICO 150 SP24 both of these Roadmaps
    should be available in your system.
    There are two ways to display the roadmaps in RMMAIN.
    One is to choose a project in RMMAIN, then the roadmap assigned to
    the project in SOLAR_PROJECT_ADMIN is displayed.
    The other one is to display any available roadmap in the system
    To display one of the available roadmaps (without a project) choose
    the button 'Other Roadmap' in RMMAIN and in the upcomming popup
    hit the button 'No Project'.
    After that you should get an addtional button besides the Project
    button called Roadmaps (Other Roadmap).
    When you hit now this button you will get a list of all available
    roadmaps.
    Some further notes for referencing (although they can be old but still helpful)
    644651     How to find the Reference Model in Solution Manage
    826586     ASAP Implementation Roadmap
    Hope this helps.
    Cheers
    SH

  • SAP XI scenarios (SAP Solution Manager and SAP ECC 6.0)

    Hi!
    I have a SAP Solution Manager System 7.0 (ABAP+Java) and SAP IDES ECC 6.0 (ABAP).
    Futhermore I have SAP NetWeaver 7.0 with SAP XI 7.0.
    Which scenarios can I implement with these systems and where can I find the appropriate documentation?
    - Proxy to Proxy
    - IDOC/ALE
    - Webserice
    - other scnenarios (???)
    Thank you very much!
    regards
    Holger

    Hi Holger,
    Please do search in SDN you might get more.......
    Proxy to Proxy
    ABAP Proxies in XI(Client Proxy) - ABAP Proxy to File
    File to R/3 via ABAP Proxy - File to ABAP Proxy
    IDOC/ALE
    Introduction to IDoc-XI-File scenario and complete walk through for starters. - IDoc to File
    Few other scenarios :
    File to R/3 via ABAP Proxy - File to ABAP Proxy
    Introduction to simple(File-XI-File)scenario and complete walk through for starters(Part1) - File to File Part 1
    Introduction to simple (File-XI-File)scenario and complete walk through for starters(Part2) - File to File Part 2
    Convert any flat file to any Idoc-Java Mapping - Any flat file to any Idoc
    RFC Scenario using BPM --Starter Kit - File to RFC
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken] - File to Mail
    Dynamic File Name using XI 3.0 SP12 Part - I - Dynamic File Name Part 1
    Dynamic file name(XSLT Mapping with Java Enhancement) using XI 3.0 SP12 Part -II - Dynamic File Name Part 2
    The specified item was not found. - Dynamic Mail Address
    Understanding message flow in XI - Message Flow in XI
    Walkthrough with BPM - Walk through BPM
    Schedule Your BPM - Schedule BPM
    Demonstrating Use of Synchronous-Asynchronous Bridge to Integrate Synchronous and Asynchronous systems using ccBPM in SAP Xi - Use of Synch - Asynch bridge in ccBPM
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1403 [original link is broken] [original link is broken] [original link is broken] - Use of Synch - Asynch bridge in ccBPM
    The specified item was not found. - Maintain RFC destination centrally
    Triggering e-Mails to Shared folders of SAP IS-U - Triggering Email from folder
    Outbound Idoc's - Work around using "Party"? - Handling different partners for IDoc
    /people/siva.maranani/blog/2005/08/27/modeling-integration-scenario146s-in-xi - Modeling Integration Scenario in XI
    The specified item was not found. - Testing of integration process
    The specified item was not found. - Authorization in XI
    http://help.sap.com/saphelp_nw04/helpdata/en/58/d22940cbf2195de10000000a1550b0/content.htm - Authorization in XI
    The specified item was not found. - Alert Configuration
    The specified item was not found. - Trouble shoot alert config
    Executing Unix shell script using Operating System Command in XI - Call UNIX Shell Script
    Overview of Transition from Dev to QA in XI - Transport in XI
    Using ABAP XSLT Extensions for XI Mapping - Using ABAP XSLT Extensions for XI Mapping
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure - Mail Adaptor options
    IDOCs (Multiple Types) Collection in BPM - Collection of IDoc to Single File
    XI : Controlling access to Sensitive Interfaces - Controlling access to Sensitive Interfaces
    The specified item was not found. - The same filename from a sender to a receiver file adapter - SP14
    Payload Based Message Search in XI30 using Trex Engine - Payload Based Message Search in XI30 using Trex Engine XI : Configuring CCMS Monitoring for XI- Part I - XI : Configuring CCMS Monitoring for XI- Part I
    The specified item was not found. - XI: HTML e-mails from the receiver mail adapter
    Thanks
    Prabhakar

  • How to work sap solution manager

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. please search first. >
    Hi experts,
    can anybody what is the use of sap solution manger and how its work.
    Regards,
    arti singh

    The SAP Solution Manager supports you throughout the entire life-cycle of your solutions, from the Business Blueprint to the configuration to production processing. It provides central access to tools, methods and preconfigured contents which you can use during evaluation, implementation and operational processing of your systems.
    Features
    Implementing and Upgrading SAP Solutions
         Central access to all tools for your project (Project Administration, Business Blueprint, Configuration, Test Workbench, create Group Rollout templates)
         Central management of all information for your Project (roadmaps, system landscape, project documentation)
         Compare and synchronize customizing in different SAP components
    Solution Monitoring
         Central System administration
         Analysis of your system landscape with Service Level Reporting
         Real-time System Monitoring
         Business process monitoring
    Services and Support
    Access to programs and Services to monitor and optimize the performance and availability of your system landscapes, and minimize risks when running your systems
    Service Desk
    Solution support with workflow to Create and Process Problem Messages
    Change Management
    Manage change requests, with workflow to trace and audit changes and transports in your system landscape with Change Request Management.

  • SAP Solution Manager - Learn and Use

    Hi All,
    I have some knowledge in SAP ABAP. I am interested to learn about SAP Solution Manager and how to work in it.
    Can anyone help me in this regard? If you have any documents or presentations, please let me know.
    Thanks in advance.

    Hi,
    First start with learning what solution manger can do.
    http://service.sap.com/solutionmanger
    then click on Media library on left hand pan there first go through use case presentations, which will give an insight into possibilities.
    Then you can explore more.
    Hope this helps.
    Feel free to revert back.
    --RAgu

  • Is SAP Solution manager mandatory for SRM7 implementation?

    Dear experts,
    I get to know that use of SAP solution manager is mandatory for SRM 7 implementation. is it true?
    what is the best practice to manage a SAP SRM implementation project? should we manage the project in SAP SM or outside of it?
    Thanks and regards,
    Ranjan
    Ranjan Sutradhar

    Hi Ranjan,
    Solution Manager is not mandatory for SRM 7 implementation.
    Only thing is Solution Manager contains best pratices for Project implementation e.g AS is process , to be process, blue print etc.
    It is just a guilde. All things might not be  required for your project.
    We did it without solution Manager except that we used it for generating installation key & for maintainance opt.
    Best Wishes,
    Tushar.

  • BPC (Outlooksoft) and SAP Solution Manager

    Has anyone seen the SAP Solution Manager used to rollout and/or upgrade Outlooksoft (now called BPC - Business Planning and Consolidation)?
    I am trying to assess the usefulness of this tool in an implementation where the only SAP module the company has is Outlooksoft (BPC), so all thoughts are appreciated.
    Best regards,
    Greg

    Question was never answered but I'm closing it due to SDN's number of open question per user limitation.

  • How to set up approval process for test case in SAP solution manager?

    Hi Experts,
    We need to setup a 2 level approval process for test case documents in SAP Solution Manager.
    e.g. If test case document is uploaded for transaction "MM01" then first it will go to Reviewer1. Once Reviewer1 approves it , should go to Reviewer2.
    Adn finally once reviewer2 approves it , it will be complete.
    What are the required configurations and steps for approval process setup? It will be helpful if screenshots and detailed steps are provided.
    Thanks.
    regards,
    Sanjana

    Hi,
    the above requirement we are going develop add on.below code is there. in this code how we can set for line level amount instead of document total amount
    Private Function GetCondition(ByVal sCondition As String) As ApprovalTemplateConditionTypeEnum
            Try
                Select Case sCondition
                    Case "Deviation from Credit Limit"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromCreditLine)
                    Case "Deviation from Commitment"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromObligo)
                    Case "Gross Profit %"
                        Return (ApprovalTemplateConditionTypeEnum.atctGrossProfitPercent)
                    Case "Discount %"
                        Return (ApprovalTemplateConditionTypeEnum.atctDiscountPercent)
                    Case "Deviation from Budget"
                        Return (ApprovalTemplateConditionTypeEnum.atctDeviationFromBudget)
                    Case "Total Document"
                        Return (ApprovalTemplateConditionTypeEnum.atctTotalDocument)
                End Select
            Catch ex As Exception
                MsgBox(ex.Message())
            End Try
        End Function
    Please guide me.
    Regds,
    Samapth Kumar.

  • How to access SAP Solution Manager from webDynpro Application.

    Hi to all,
              I have to retrieve some informations from SAP Solution Manager. and update some recordes there itself. How could i do it??
              If anybody have codes related to it please send the same.
    Please help its urgent.
    Waiting for reply.
    Thanks and Regards;
    Pankaj Kumar.

    Hi
    See this help
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5b/6e8c42c398173be10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/4c/758c42d781d665e10000000a155106/frameset.htm
    Kind Regards
    Mukesh

  • How to Unlock the Object in SAP Solution Manager

    Hi all,
    Iam trying to Upload the TS into Solution manager, but the Project Documentation TAB is locked by another User.So i am unable to get ADD button enable
    I dont have access to SM12 or SE03. How to Unlock this
    Regards

    This is not the right forum to ask your doubt. Post this in Solution Manager forum
    SAP Solution Manager
    Regards,
    Prateek

  • How to configure dba cockpit in sap solution manager

    Hello colleagues,
    how to configure dba cockpit in sap solution manager??
    Thanks!

    Hi Victor,
    Please go through this doc, it might helps you.
    Sap Solution Manager - Dbacockpit
    Sap Solman Instguide Dba Cockpit Setup
    Regards
    Amit

  • SAP Solution Manager and SAP Production Server on Single Host

    We are rolling out our new infrastructure using high end Solaris Servers that have plenty of grunt.
    I am looking at running SAP Solution Manager 7 and SAP Netweaver 6 on the same HOST using two Oracle databases.
    We will use 10g and have 2 separate  transport volumes for transports. The Development and test environments will be very similar.
    Appreciate any advise or thoughts. We are not looking at virtualising this particular environment.

    Technically you can do that - yes. I could also imagine in installing the ERP on the bare metal and the SolMan in a zone, together with a processor set you can limit resource usage and you´re totally isolated from your production environment and will so make sure that SolMan is not stealing necessary resources from your production environment.
    Markus

  • How to copy SAP Solution Manager?

    Hi experts,
    I'm searching a manual, which explains a system copy for Solution Manager 7.0 EhP 1. I can't find such a document in the SAP Marketplace. Can anybody help me?
    Thanks and best regards
    Max

    Hello Max,
    Please see the following URLs/Notes which will explain on system copy for SOLMAN.
    http://www.service.sap.com/instguides
    -> SAP Components -> SAP Solution Manager --> Select the relevant release and you will find installtion, upgrade
    and configuration guides.
    Please refer to the below link for more infromation.
    http://service.sap.com/solutionmanager
    Please also check if below notes:
    659509 ORACLE: Special installation and system copy (point 3:Required documentation)
    492051: Moving solutions to a new Solution Manager
    Thanks,
    Mark

Maybe you are looking for

  • Support Package problem in Solution Manager 7 / NW 700

    Hi , Once again I need your help. The scenario is : I want to upgrade the SAP_BASIS from SP11 to SP16 but it is stopped at  ADD-ONS_CONFLICT_  phase. Then I note down the CRT required for the SP and uncar it to /usr/sap/trans/EPS/in and uploaded via

  • Is benq GL2440 monitor compatible with Mac Mini (early 2011)

    Hey all Bought a Benq GL2440 monitor to go with my mini (not latest, previous) but when connected via HDMI nothing but a msg saying 'no cable connected' Any one got a solution ?

  • Payment Medium Workbench(PMW) for check printing

    Dear experts, We have recently implemented PMW to speed up our telegrahic transfer (TT) payments to the banks. All is well so far. Now we want to include the check printouts as well. Previously when we were using the  classic payment medium program,

  • Back ground process

    Hi all, I want to run a java program in the background . Yet it should display the results in the foreground itself. In my foreground I have another program runnig. But if I call a function from there the control will be transfered to there na? But I

  • Where do my TextEdit files go in the cloud ?

    I have 2 iCloud accounts and I am lost in the clouds ..... One iCloud account (at mac.com) has a unique password.  My other iCloud account uses my email address and a different password ..... The problems started with an iTunes account -- and then so