Clarifiation : Adding Systems in SMSY - please help

HI All,
We have SAP Application server installed on system1 and Databse installed on system2 for a satellite system
Now when adding the System in SMSY of solution manager under Landscape components:
1.created a server with hostname  system1(SAP application server), i added system1's FQDN and ip addres in technical data
2.created another server with hostname system2(Database), added system2's  FQDN and ip address in technical data
Now under Database-cretae new database- i added SID ,but which server(system1 or system2) should i add in technical data of this
rgds
MAR

Hi MAR,
don't worry too much about the database data. It is more or less for documentation reasons only.
Just look at your landscape as it is: the DB resides on the dbserver, so put server2 here. Later on, when you enter your system data (this is important!) you should have two instances for the system SID: Instance one (AS) on server1, instance two (DB) on server2. When creating the RFC connections, it is obvious that they will point to your application server(1).
Hope this helps you.
Regards,
Dirk

Similar Messages

  • I am not able to add videos to itunes. So I am not able to sync them with my IPhone4s. I ve tried: dragging to itunes, minimize file name of mp4, adding by file/folder still not adding. WHY? Please help.

    I am not able to add videos to itunes. So I am not able to sync them with my IPhone4s.
    I ve tried:
    dragging to itunes,
    minimize file name of mp4,
    adding by file/folder, but still not adding.
    WHY? Please help.

    This is very serious. Your computer got infected with ransom malware, Cryptowall.
    Go here for further info.
    CryptoWall 2.0 Anything Good about Buying you Keys? - General Security
    CryptoWall and DECRYPT_INSTRUCTION Ransomware Information Guide and FAQ

  • HT2905 My itunes looks nothing like the examples in this tutorial.  I do not have "display exact duplicates" or "date added".  Can someone please help me remove duplicate songs?  Also, I downloaded two audio books and they are showing up in my song list.

    My itunes looks nothing like the examples in this tutorial.  I do not have "display exact duplicates" or "date added".  Can someone please help me remove duplicate songs?  Also, I downloaded two audio books and they are showing up in my song list. Why???

    'Show duplicates' is now under the 'View' menu. To see the 'Date added' column go to 'View options' from the 'View' menu and check it in the section under 'Stats'.
    Click an audiobook once to select it and hit command-i (Mac) or control-i (Windows). Go to the 'Options' tab and set 'Media Kind' to 'Audiobook'.

  • I don't know my rescue email and security password.i just added an alternative email address but it doesn't send there....also I just added 25$ on iTunes.please help!

    I don't know my rescue email and security password.i just added an alternative email address but it doesn't send there....also I just added 25$ on iTunes.please help!

    The reset link will only send reset info to your rescue email address, an alternate email address is not used for account security. If you don't know what your rescue email address is (you won't be able to view/change it until you can answer your questions) then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down this page to view and/or change your rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • System config problems please help!!!!

    I bought a windowns recovery disk for my toshiba satellite L450D and everything was okay until I reached theconfiguring system partI left it go for about 2 hours but nothing happened so I restarted and I still have the same problem can someone please help me with this because I don't wanna buy a new computer

    If the recovery disks are not working then it is either an issue with the disks or a hardware issue with the computer.  I would start with the disks.  Contact Toshiba (where you bought the disks) and tell them the disks are not working.  If possible, try and see if they will issue you the recovery media on flash drive as that seems to work better than the cds.  Another thing you can try is (if possible) swapping parts of your computer into a know working computer to ensure they are all in working order (hdd, ram).  It is also not a bad idea to wipe a hdd before attempting to do an install.  this can be accomplished using third party software which can usually be accessed via bootable cd. 
    L305-S5955, T9300 Intel Core 2 Duo, 4GB RAM, 60GB SSD, Win 7 Ultimate 64-bit

  • Save Image to system's ClipBoard .PLEASE HELP!!!!!

    Hi,
    I'm trying to save an Image from my GUI to the System's ClipBoard but I just can't get it to work.
    I've overriden a JPanel's paint() method where I draw my own stuff.
    I've used the following code which I found in the forum :
    class ImageSelection implements Transferable,ClipboardOwner
    private DataFlavor ImageFlavor;
    private DataFlavor[] flavors = new DataFlavor[1];
    private Image image;
    public ImageSelection(Image an_image)
    this.image = an_image;
    try
    ImageFlavor = new DataFlavor(Class.forName("java.awt.Image"),"AWT Image");
    flavors[0] = ImageFlavor;
    catch(ClassNotFoundException e)
    e.printStackTrace();
    public synchronized DataFlavor[] getTransferDataFlavors()
    return flavors;
    public boolean isDataFlavorSupported(DataFlavor flavor)
    return flavor.equals(ImageFlavor);
    public synchronized Object getTransferData(DataFlavor flavor) throws UnsupportedFlavorException, IOException
    if(flavor.equals(ImageFlavor))
    return image;
    else throw new UnsupportedFlavorException(flavor);
    public void lostOwnership(Clipboard c, Transferable t)
    When I want to save my Graphics into the clipboard I do the following:
    ImageSelection temp = new ImageSelection(my_graphics.offImage);
    Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
    clipboard.setContents(temp,temp);
    You may also need the following :
    class My_Stuff extends JPanel
    Graphics2D offGraphics2D = null;
    Image offImage = null;
    void init_graphics()
    offImage = this.createImage(100,100);
    offGraphics2D = offImage.getGraphics();
    void paint(Graphics g)
    Graphics2D g2 = (Graphics2D)g;
    offGraphics2D.fillRect(0,0,200,200);
    // bla bla bla .........................
    g2.drawImage(offImage,0,0,null);
    and finally : My_Stuff my_graphics = new My_Stuff();
    As you observe variable my_graphics is of type My_Stuff , so I pass its field : offImage , as the argument for the ImageSelection 's Constructor which in turn expects an Image...
    I am "saving" the Image to the system's ClipBoard and I try to Paste it in MS Word but the 'Paste' feature is inactive ( I guess Clipboard is empty... )
    Can you please help me out in this one???
    I use JDK 1.4.0 and Win2000.
    Thank you my friends!

    If you use JDK1.4, simply use DataFlavor.imageFlavor insteads
    of your own. Java will do the rest. Word cannot paste because
    it does not recognise the flavor you put on the clipboard!
    You can use this code that does it fine for me (JDK1.4.1)!
    public class ImageSelection implements Transferable
    private java.awt.Image image;
    public ImageSelection(Image i) {
    image = i;
    public Object getTransferData(DataFlavor flavor)
    throws UnsupportedFlavorException
    if (flavor.equals(DataFlavor.imageFlavor)) {
    return image;
    throw new UnsupportedFlavorException(flavor);
    public boolean isDataFlavorSupported(DataFlavor flavor) {
    if (flavor.equals(DataFlavor.imageFlavor)) {
    return true;
    return false;
    public DataFlavor[] getTransferDataFlavors() {
    return new DataFlavor[] {DataFlavor.imageFlavor};
    }

  • LaCie flash drive not recognized as a drive, but shows up in system profiler. Please help!!

    I recently got a LaCie RuggedKey 16 gb flash drive. The problem is that recently I plugged in the drive and I can't access the files, however, it shows up in system profiler. There are still files on the drive, and I really need them. Can you please help me recover them?

    If you're connecting the drive through a hub, connect it directly to a built-in port on the Mac.
    If you're connecting it directly, try a different port.
    Disconnect all other devices on the bus, or as many as possible.
    Test the drive with another Mac. Test another drive with this Mac.
    Boot into Recovery and launch Disk Utility. Is the drive recognized?
    Start up in Safe Mode and test.
    Reset the NVRAM.
    Reset the System Management Controller.
    If the drive doesn't work under any of the above conditions, and if another drive does work with the same Mac, then the drive has failed.

  • I want to purchased the photography plan,but i get the same result everytime i pay.SYSTEM UNAVAILABLE..please help.

    I wanted to buy a Photography plan but everytime i try to pay ,i get the same result SYSTEM UNAVAILABLE.I tried to go to customer support but it keeps bring me over again from the start.I am in Japan ,I tried to contact the number everyday but no one is answering.Please help,I cannot speak japanese so I need an english answer.

    SYSTEM UNAVAILABLE == under approval. I'm surprised you didn't know that.
    You need to contact Japanese support even they won't answer. Now this is your problem.

  • Facing issue with adding systems in SMSY - solution manager

    Hi all,
        We are facing an issue with the solution manager in tcode smsy. When i create a system in the corresponding component say ECC with product version ECC6.0.The next screen shows that the <SID> has been added successfully. But when i navigate to the path and i unable to see the system SID which i have created.
       Again i have tried to create the same system with same SID, but it shows that " SID already exists "
       Also i need another suggestion, we have planned to add 60 systems in the same solution manager. Kindly suggest me , how many systems we can add in single solution manager in maximum and for configuring EWA ?
    Thanks
    Raj

    Hi Raj,
    You can delete the old system entry and then try creating the saem again..
    Also while creating mention correct product and version and the installation number.
    You can also use the assistant for this.
    Have you added all your servers and DB?
    regards,
    Raja. G
    Edited by: Raja Gunasekaran on Aug 28, 2009 1:26 PM

  • My 3rd gen iTouch is stuck on the "updating library" screen - I can't listen to any music and it's been like this for almost 24 hours. I only added about 200 songs, please help.

    So I added about 200 songs to my iTocuh yesterday, and it has been stuck on the "updating library" screen under Music ever since then. I did add the music in stages - as in, I added some songs, then got some more and plugged the iPod in again (maybe this has something to do with it). I would restore the iPod, but I have music on it that is not on my Macbook and I don't want to lose that music. Help please!

    Correction: I plugged my iPod back into my mac, it backed up/updated etc. and now when I go to my music, it returns me to the home screen. What is going on!?

  • Issues adding friends to iChat, please help!!

    I am having issues adding friends on ichat. I can enter their emails but it doesn't notify them on their computer that I added them. How do I fix this?

    Hi,
    iChat uses Screen Names (with AIM and can be email in style)
    Jabber Names/IDs look like emails as well but with Googletalk, FaceBook and Jabber Australia being the few exceptions I know of.
    AIM Names when registered look like an email ([email protected]) but you do not need the @AIM.com suffix when adding them as a Buddy.
    (Apple IDs of @mac.com and @me.com do need the relevant suffix)
    It would help if we knew what type of Buddy List you were adding these to and what sort of  "Email address" they are.
    11:27 PM      Friday; March 2, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Compaq CQ61-420US getting system disable 65879468 please help

    When I power on my notebook I'm getting a message saying enter administrator password or power on password. After entering the password wrong 3 times I get a error message system disable 65879468

    Hi,
    Double post, please use:
        http://h30434.www3.hp.com/t5/Notebook-Recovery/Sta​rt-up-error-message-65879468/m-p/4853515
    Thanks,.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Satellite m45-2692 System Shut-down Please help!!!!!!!!

    I received the Blue screen of Death w/ the message driver_irql_not less_ or equal. I rebooted installed the Latest service pack. It ran well for a day. I receive the mess again rebooted but the system when completely dead. I open and check the memory, wireless NIC, and cpu. I cleaned all areas with compress air. took the battery out. I put everything back together. I was able to restart notebook (nb), however, after approx. two to five minutes nb went blank again. I press the power button but to no avail. I tried power button again system appear to be booting. It lit up and went dead again with only the middle light on the front of the nb staying lit. I know what most of the symbols represent of the front of the nb except that.
    Please advise on what to do from this point. This problem exceeds my expertise.
    Thanks in advance for your assistance
    bd

    Hi
    Sounds a little bit like a hardware malfunction. I think about RAM issue but before you would test and replaced the RAM modules I would recommend checking if this is not a software problem.
    In such case you will have to reinstall the OS from the Recovery disk. Using this disk everything will be formatted on the HDD and the notebook will be set to the factory configuration!
    So if you are some important files on the HDD -> backup it!
    If your notebook will not work as it should after the recovery procedure then single components like RAM should be checked
    Good luck

  • Folder Sync and System Back Up, please help !!!

    Right, there are the two things I can do with my Windows XP machines and can't find a valid solution on Mac OS X yet:
    1. Folder Sync
    I use 5 computers everyday, 2xMacs+1PCs at home, 1xMac at school and 1xPC in my office (part-time sys admin). It is obvious that i will need the folder sync feature so that I can keep working on one project on different computers. For windows there's a very neat feature called Briefcase, it bascially allows me to create two folders in different locations ( one in PC1, one memory stick for example ) and will automatically make sure these two folders sync with each other once connected . Just wondering if there's any software that allow me to do this on a Mac? and if it allow multiple sync (i.e. keep folders stored in 3+ locations up to date with each other, via network or portable storage device) that'll be even better.
    2. Backup.
    Since WInNT microsoft provides a Backup facility that allows me to perform regular backups of the entire system. except for the first backup which will copy my entire partition / harddrive content, the later ones will only add changed/newly created files to the existing backups (to save space and speed up the process). Carbon Disk Copy etc are merely GHOST-like utilities in Windows terms and does not have any advance features nor do they provide supports to exterenal hard drives (USB2, say). So, is there a good back up utility that I can use for my Mac OS X. ( i don't want to burn my 100G hard drive on 50 dvds every week )
    thanks.
    MacBook Pro 2.16 with All upgrades; PowerBook 17" 1.5G   Mac OS X (10.4.6)  

    1. You want rsync - will sync as many sources as you want.
    2. Rsync again will do this.

  • Cancelled order not credited back-and then phone support added to the pile please help.

    Hello,
    I could not be more disappointed in a customer service team that I praised such a short time ago.
    Last week, I preordered 2 copies of limited edition Destiny for PS3 using the same gift card.  Today, I decided that I no longer wanted the orders, and cancelled them online.  Got 2 cancellation emails, but then one more email explaining that I needed to contact customer service because there was an issue refunding my gift card for one of the orders.
    I did so, and after talking with CS Denise, she decided it would be best to reissue me a new gift card.  The balance should have been $244 after all was done, but it turns out she only reissued a gift card for the same amount as the one I had was and then nuked my existing one!
    So I call back, this time calling the Elite line, and talked to a nice lady, explaining everything over again, this time with a new twist.  I though we were getting somewhere, but decided that she needed to talk to someone in post purchase.  She puts me on hold for 10 minutes…only to transfer me to a girl named Crystal in post purchase.  
    Again, I explained everything as clearly as possible.  She understood, too, but needed to get someone in another dept(gift card/credit? Not sure.) involved.  After 10 more minutes on hold, ANOTHER person picked up for me to explain my story to again!!!  I lost my cool.  I had been on the phone for 75 minutes now, while I was supposed to be on my 20 minute break at work.  I said I don't have time for this and when asked when she could call back, my answer of 6pm when I get done was not an option for her.  I don't know how we couldn't get this figured out in 75 minutes!
    I'm so frustrated right now…I hope someone from Best Buy can take a look at my information and straighten this out asap.  Message me for my account details.
    Here is what I should have:
    Initial gift card balance: $300
    Purchase: $36
    Purchase: $19
    Pre-order Destiny: $84
    Pre-order Destiny: $84
    Balance $77
    Cancel Destiny +$84
    Cancel Destiny +$84
    New balance should be $245

    Greetings BrianJason,
    I’m sure you are very excited for Destiny to release this September! I’m sad to hear that you felt the need to cancel your pre-orders, and apologize for any hassle receiving your refund may have caused you.
    Typically, funds are refunded to the original form of payment without any issues. It is peculiar that your funds didn’t go back to your gift card. I apologize if your experience resolving this issue was not what you expected, as it seemed to take you a substantial amount of time on the phone with our representatives. From the details you shared, it certainly doesn’t seem like a respectable representation of our company.
    That being said, I am glad that you were able to finally resolve this issue. If you should have any questions or need further assistance, please let me know.
    Respectfully,
    Tasha|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • K7N2 Delta ISLR lock-up sound

    Help! I just got a K7N2 Delta ISLR and installed it in my system. Over the course of a few painful days I've realized that system has a propensity to lock up after I load the sound drivers for the motherboard. If I don't do that the system is complet

  • Null Validation in Tabular Form in APEX 4.2.2

    Hi to all respected Gurus of this Forum! Recently downloaded APEX 4.2.2. As we know that this version has some improved features and one is the best is i.e. *"Validation on Tabular Form".* For test purpose I succeeded to apply validation on field of

  • OS 10.2.8 and new base station problem

    I cannot get my PowerBook g4 running 10.2.8 to join my airport network. I can't run the cd to update the software because it requires 10.3 Does anyone know how i can make this work?

  • BADI MB_DOCUMENT_BADI and method only working in debug mode

    Hi SAP Experts, I have a problem with badi MB_DOCUMENT_BADI. I implemented method MB_DOCUMENT_UPDATE, which  is called from update task. My implementation calls a BAPI to update a standard sap table and I also update a custom table. When I put a brea

  • How to Create ODBC Data Source (DSN)  Programmably?

    Very troublesome to go to control panel and manually create the Data Source. Anyone know of any free Java Library which enables us to do it from a Java program?