Need prelimanary activities for Solution Manager and how to use this.

Hi
Can anybody please inform me how to use the Solution manager and what are the prelimanary activities required,please help me step by step the configuration of Solution Manager.
The soon reply will be appreciated
Thanks & Regards
Vikram GG

Hi,
What features you want to implement with your SOLMAN?
For EWA, Solution Monitoring Check out these tutors.
https://websmp107.sap-ag.de/~sapidb/011000358700006405622006E
https://websmp107.sap-ag.de/~sapidb/011000358700006819072005E
https://websmp107.sap-ag.de/~sapidb/011000358700005011442004E
https://websmp107.sap-ag.de/~sapidb/011000358700004425722004E.sim
https://websmp107.sap-ag.de/~sapidb/011000358700008968942004E.sim
https://websmp107.sap-ag.de/~sapidb/011000358700001581382005E.sim
https://websmp107.sap-ag.de/~sapidb/011000358700008968952004E.sim
https://websmp107.sap-ag.de/~sapidb/011000358700001581372005E.sim
https://websmp107.sap-ag.de/~sapidb/011000358700006936042005E.sim
This will lead you to success in activating EWA, before these you should have your router ready and connectivity established with SAP.
--Ragu

Similar Messages

  • How to create documentation for report programs and how to use it

    how to create documentation for report programs and how to use it in the selection screen by placing an icon in the Applicatin Tool bar. If i click this icon the help documentation has to display.
      Note: Exaple <b>RSTXSCRP</b> programs selection screen

    Hi
    1 goto SE38 transaction, give the program name
    2 Click on documentation radiobutton & then press change
    3 Write your PURPOSE, PREREQUISITES etc details
    4 Save the same & Activae it.
    The icon will come automatically on selection screen
    Thanks
    Sandeep
    Reward if useful

  • Need updated Version for Solution Manager-SMI310?

    Hi
    Can any one give me the details for updated Version for Solution Manager-SMI310 Certification
    Course Version ???
    Material Number ???
    Regards,
    Swaroop.

    Hi,
    you can get all information when opening service.sap.com/trainingcatalog -> Additional Search Options -> enter "SMI310"
    Cheers, Bernd

  • What is the use for lock object and how to use the lock objects

    Hi Guru's,
    I am new to ABAP .Can you please clarify the that what is the use of lock object and how to use the loct object .what is use of the Deque & Enque  function modules .

    hi ,
    below are some minfo about lock objects :
      Lock Objects
    These types of objects are used for locking the access to database records in table. This mechanism is used to enforce data integrity that is two users cannot update the same data at the same time. With lock objects you can lock table-field or whole table.
    In a system where many users can access the same data, it becomes necessary to control the access to the data. In R/3 system this access control is built-in on database tables. Developers can also lock objects over table records.
    To lock an object you need to call standard functions, which are automatically generated while defining the lock object in ABAP/4 dictionary. This locking system is independent of the locking mechanism used by the R/3 system. This mechanism also defines LUW i.e. Logical Unit of Work. Whenever an object is locked, either by in built locking mechanism or by function modules, it creates corresponding entry in global system table i.e. table is locked. The system automatically releases the lock at the end of transaction. The LUW starts when a lock entry is created in the system table and ends when the lock is released.
    Creating Lock Objects
    Lock object is an aggregated dictionary object and can be defined by using the following steps:
    o From initial data dictionary screen, enter the name for the object, Click Lock object radiobutton and then click on Create. The system displays a dialog box for Maintain Lock Objects screen
    o Enter short text as usual and the name for primary table.
    -Save
    -Select Tables option
    From this screen you can:
    Select secondary tables, if any, linked by foreign key relationship.
    Fields for the lock objects. This option allows you to select fields for objects (R/3 system allows locking up to record level). Lock object argument are not selected by user but are imposed by the system and includes all the primary keys for the table.
    1) Exclusive lock: The locked data can only be displayed or edited by a single user. A request for another exclusive lock or for a shared lock is rejected.
    2) Shared lock: More than one user can access the locked data at the same time in display mode. A request for another shared lock is accepted, even if it comes from another user. An exclusive lock is rejected.
    3) Exclusive but not cumulative: Exclusive locks can be requested several times from the same transaction and are processed successively. In contrast, exclusive but not cumulative locks can be called only once from the same transaction. All other lock requests are rejected.
    Also, last but not the least, locking the object is logical (locking with any enqueue ) .so, you have to use the lock object while trying to access from second program .
    reward if helpful ,
    Regards,
    Ranjita

  • Satellite A135-SP4088: Need XP drivers for power management and Hotkey utility

    Hello
    I couldn't find drivers for the toshiba A135-SP4088, we bought 3 of them for the office and it's almost impossible to use with vista, so we go to XP SP2, and manage to get almost all of the drivers from other models, but i cannot find 2 utilities that work with this machine, they are:
    Toshiba Power Management (the bulb in the task bar, remember?) :D
    Hotkey Utility (so I can change Screen brightness, and go to hibernation (Fn+F4)
    I have al the rest working, quite nicely but these two are a real problem, none of the ones I tested worked, some even crash the XP and have to go back to a previous restore point.
    also, I didn't install any ACPI drivers, are they required?, which ones show I look for? since the model doesn't exist in csd.toshiba.com site.
    Now, How one of the greatest notebooks manufacturers in the world can build such a nice computer without making drivers for the most widely used operating system?, can anyone explain me this because i sincerely don't understand it.
    thanks a lot!.
    Indkt.

    Hi
    The Satellite A135-SP4088 seems to be designed for the US market so you should use the Toshiba US driver page for the driver download!!!!
    But why you need the Toshiba power saver for XP? The XP supports an own power options and also the hibernation option. This option must be enabled in the control panel -> power options -> hibernate tab
    > didn't install any ACPI drivers, are they required
    Toshiba page does not provide any special ACPI drivers. The OS uses own Microsoft drivers and the installation of any 3rd applications is not necessary!!!!
    regards

  • How to create a flat files and how i used this

    hi Guys and gals,
    I am david. I want to know how to create a flat files. I don't know about it also. pls explain it and also pls help me to create a flat files. If u have any program for creating pls send me.
    I want to know about retrive the datas from flat files and also insert a record into it.
    pls guide me
    i need this immediately
    david

    void newMethod() throws Exception {
         // Reading from a flat file
         String data;     
         BufferedReader br = new BufferedReader(new FileReader("c:\filename1.txt"));
         while ((data = br.readLine()) != null) {
              System.out.println(data);
         // Writing to a flat file
         BufferedWriter bw = new BufferedWriter(new FileWriter("c:\filename2.txt"));
         bw.write("sample data");
         // After writing the data close the file
         bw.close();
    }

  • ERROR while CREATING RFC FOR SOLUTION MANAGER DIAGNOSTICS

    Dear all,
    Hi,
    I am configuring solution manager 7.0.
    In SPRO>basic setting >operation>solution manager diagnostics > create RFC for solution manager diagnostics i am getting this error
    program WEBADMIN not registerred.
    can any one tell me how to register this program in sap gateway.
    best regards
    azeem

    Hi Azeem,
    Just before creating the rfc connection do this step.
    Set-Up Solution Manager Connection to Solution Manager Diagn
    Use
    Check the connection to function Solution Manager Diagnostics.
    Default Settings
    The function Solution Manager Diagnostics is installed on the Java instance of the Solution Manager system by default.
    Activities
    If the default values are correct, save the settings.
    To run the Solution Manager Diagnostics in another system, enter the required data and save.
    Also check that your java is active.
    Regards
    Ashok

  • User Manual for Solution Manager

    Friends,
    For a first time user of Solution Manager, is there documentation available to guide one through the rigour? Maybe a user manual on how to effectively harness Solution Manager during the project implementation cycle.
    Thanks and Regards,
    Sameer Aroskar

    you can also check this
    <a href="/people/community.user/blog/2006/12/07/organize-and-perform-testing-using-solution-manager and Perform Testing using Solution Manager</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ce0b74e3-0601-0010-29a0-f2a6af98ef06">How SAP Solution Manager Can Smooth Your Next Upgrade Project</a>
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2a92c290-0201-0010-4b8f-a2aaaa3b822e">SAP Solution Manager - Test Drive SAP Solution Manager in an Implementation Project</a>
    I hope these will be fine for now
    Regards
    Milton

  • About solution manager and RBE

    hi,
    I am supposed to integrate RBE (Reverse Business engineering) with SAP ECC 5.0. and i don't know abt RBE as well as solution manager so please give me step by step guidline that what procedure i have to follow for this.
    and aslo tell me is it neccasary to integrate SM befor integrating RBE. and if yes then also give me step by step guidline for integrating SM.
    thanks in advances,
    regards,
    Hardik.

    Hi Hardik,
    there are some companies that offer a services to analyze
    an R/3 or ECC system with the RBE tool and bring the result in Solution Manager as a project. If the RBE analysis is based on Solution Manager BPR content (ST-ICO), the project will have all content (documents, IMG activities) that have been maintained by SAP in BPR.
    Since RBE is currently not delivered any more (see note 910687) such services may be the only way to do this.
    I know the following services for Solution Manager and RBE:
    <a href="http://www.solutionmanager.ch/">http://www.solutionmanager.ch/</a> and
    <a href="http://www.ibis-thome.com/">http://www.ibis-thome.com/</a>
    Best regards,
    Michael

  • Proocess flow for solution manager

    hi friends,
    could you please provide pictorial representation for solution manager tool in  sap(used in support project)
    would be appriciated,
    Regards,
    divya

    Evaluation?
    If you are a licensed SAP customer you can get SolMan for no cost.
    Markus

  • How do I setup RFC if Solution Manager and Target system are in same server

    Dear Experts,
    How do I setup RFC if the Solution Manager and the Target System (SAP ERP 6.0) are sitting in the same server?
    Do I really need to setup RFC?
    regards,
    Abraham

    Hello,
    An RFC is a Remote Function Call and is used to communicate between computer systems.
    A system can be on a server. Multiple systems can be on a single server, a single system can exist on multiple servers.
    When you setup the RFC Target it is the Host and not the system that is specified.
    You can get the host information when logged into the ERP system by running transaction SM59.
    This would then be the target Host in the RFC from Solman to the ERP system.
    As Miguel suggested this is rather simple. So I hope this has shone a light for you so you may proceed.
    But if you continue to have problems please advise.
    Regards,
    Paul

  • How to install both solution manager and ECC Development on same server

    Hi All,
    Can anyone help me how to install Solution Manager and ECC Development on same server and also whether SLD is required? if yes, then how to setup.
    Pls let me know.
    Regards,
    Karthik

    Hi Karthik,
    I try to answer you message, my answer may not be sufficient for you.
    Install SAP Solution Manager and ECC development as separate systems sharing the same server. So each system will get it's own system id and installation number.
    Verify sizing of both systems.
    SLD is not mandatory for a SAP Solution Manager. If a SLD already exist in your System Landscape, you can connect SMSY (System Landscape) in transaction SMSY_SETUP with a SLD. Information on System will then be retrieved from SLD, rather via an RFC.
    Best regards,
    Ruediger Stoecker

  • How to install both solution manager and ECC Development

    Hi All,
    Can anyone help me how to install Solution Manager and ECC Development on same server and also whether SLD is required? if yes, then how to setup.
    Pls let me know.
    Regards,
    Karthik

    Hi Karthik,
    I try to answer you message, my answer may not be sufficient for you.
    Install SAP Solution Manager and ECC development as separate systems sharing the same server. So each system will get it's own system id and installation number.
    Verify sizing of both systems.
    SLD is not mandatory for a SAP Solution Manager. If a SLD already exist in your System Landscape, you can connect SMSY (System Landscape) in transaction SMSY_SETUP with a SLD. Information on System will then be retrieved from SLD, rather via an RFC.
    Best regards,
    Ruediger Stoecker

  • I trying to download Elements 12 and Premier it has the prompts for windows but I am on a mac with Maverick system do I need to download something else first and how?

    In trying to download both photoshop Elements 12 and elements Premier which I just purchased it only gives prompts for Windows I am on a mac with a Maverick system. Do I need to download something else first and how, and do I download it only once or for each program? Thanks for any advice.. really techno-nerd

    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4, CS4 Web Standard | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 | 12 | 11, 10 | 9, 8, 7 win | 8 mac | 7 mac
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7 win | 8 mac | 7 mac
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5.5, 5 | 1
    Contribute:  CS5 | CS4, CS3 | 3,2
    FrameMaker:  12, 11, 10, 9, 8, 7.2
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • I need iOS 5 for "Drive Google" and " i Cloud" where and how do I get to download it?

    I need iOS 5 for "Drive Google" and " i Cloud" where and how do I get to download it?

    You have to update by using a computer via the latest version of iTunes. You can connect the iPad to your computer and launch iTunes. Select the iPad on the left side under the devices heading. Click on the Summary Tab on the right. Click on Check for Update.
    After you update to iOS 5 or later, you will have Software Update in you settings and can update via WiFi OTA. If you have the iPad 2 - you will be updating to iOS 6.0.1.
    If you have the original iPad - iOS 5.1.1 is as high as you can go.
    How to update to iOS 5 or later.
    http://support.apple.com/kb/HT4972

Maybe you are looking for

  • Calculation in fooetr

    Hello Gurus ,           I want to do some calculation in footer of alv how to do , I know abt string but string is not accepting value , plz help . I m in urgent . I am using   CALL METHOD end->add_text     EXPORTING       text         = ls_text     

  • The firfox "button" is not showing in my browser window,how do I access it?

    the orange button displayed in all the feature aspects, does not show in the top of my menu. How do I access that feature? I currently have the Firefox 4.01 installed, why isn't it there automatically? have tried to access it through "tools" menu, no

  • How to display the transport button in the screen of stms

    Hi expert,               I can not see the transport button in my PRD system, but I can see it in my QAS system.       PRD System: QAS System: How can I adjust to display the transport button in my PRD system. Thanks a lot,

  • Music and videos on my ipod lost after synchronizing...can I get them back?

    First of all, I was looking on another site "answers" about how to copy music on my ipod touch with out erasing the current music which are on it... I did as instructed to copy them manually.....checked my ipod to see..... All the music I copied were

  • Change in budget Upload Format

    Hi, we need a way to be able to do a plan/actual comparison down to material level? Please can someone suggest me if this is possible by any means? Regards, Parul