IP Name of the server !

Guys,
I have a question on IP number:
When the SAP GUI is not installed in our desk top and while I am in office, I go to start>run>type''SAPGUI IPNumber" and enter.
It takes me to SAP login screen.Then I am able to login.
What I want to understand is:
1. How system is able to connect to the environment enenthough I do not have SAPGUI Logon Pad installed in my machine.
2. When I do not know the IP number of my environment (Say, Development System or Quality System) how do I find out the same from after I logged in using someone's system where it is SAPgui is installed.
Thanks

Hi,
When I do not know the IP number of my environment (Say, Development System or Quality System) how do I find out the same from after I logged in using someone's system where it is SAPgui is installed.
In any screen go to Menu Sytem --> Status. Then click on the icon with yellow arrow mark (Other Kernall Info) (SHIFT + F5).
Here you will find the IP number under "System Information" section.
Regards,
R Rajesh Kumar

Similar Messages

  • Change display name of the server under Equipment

    is it possible to change the display name of the LIVE / PRODUCTION blade under equipment --> Chasis -->Servers to our own naming standards.
    Attached is the screenshot of current names.
    UCS Manager Version 2.1(3a)

    Azmathulla,
    It is not possible to change the name of the server, but you can add a label to it (see attached screenshot).  And yes, it can be done during production hours, this doesn't affect the production data.
    Please let me know if this answers your question.

  • Unknown Host Unable to locate the server requested --- the server does not have a DNS entry. Perhaps there is a misspelling in the server name, or the server no

    Hello,
    Today i tried accessing transitbux.com with mozilla, but i'm getting this kind of a error as mentioned below:
    Unknown Host
    Description: Unable to locate the server requested --- the server does not have a DNS entry. Perhaps there is a misspelling in the server name, or the server no longer exists. Double-check the name and try again.
    Can anyone help me please, and the same website is accessible with my phone.
    Help me please. :(
    Regards
    -

    Try http://www.transitbux.com/
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • PLSQL sample for searching a file name in the server

    Hello All,
    what plsql package i need to use or any plsql sample code available for searching a file name in the server.
    For example If I provide any text "XX%", the plsql code should provide me the list of file names in a specific folder in server.
    If any one worked on this kind of requirement, please provide me the sample code.
    Thanks & Regards
    Aboothahir

    Hello,
    https://sourceforge.net/projects/oracle-jutils/
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:439619916584#1565062600346635117
    {message:id=4070746}
    Regards
    Marcus

  • Change IP and Host name of the server

    Hi,
    Db :11.2.0.3
    Os:Aix6
    OS team are going change IP address and host name of the server which has ASM and DB.
    What are the things we need to follow for this?
    Thanks & Regards,
    VN

    OS team are going change IP address and host name of the server which has ASM and DB.
    What are the things we need to follow for this?1. TNSNAMES.ORA files everywhere
    2. LISTENER.ORA on server
    If there are thin JDBC clients, change IP/hostname in their connection URLs.

  • EMS error - could not resolve the name of the server

    Hi.
    Log on to Exchange 2013 server (CAS)
    Try to run EMS on this server and get this error:
    ...The WinRM client could not process the request because it could not resolve the name of the server.
    Nslookup FQDN of this exchenge server -all ok.
    What happend? Two weeks ago, all worked.
    Thanks.

    Hi,
    To narrow down the cause, I recommend the following troublwshooting:
    1. Change another admin account to try to open the EMS on CAS server.
    2. Try to empty your local DNS cache by ipconfig/flushdns
    3. Try to Disable WinHTTP proxy by running  : netsh winhttp reset proxy
    4. Refer to the following article to resolve the WinRM error:
    http://blogs.technet.com/b/exchange/archive/2010/12/07/resolving-winrm-errors-and-exchange-2010-management-tools-startup-failures.aspx
    if you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • How do I find the name of the server?

    Hi all,
    I've finished a server program that returns a hard-coded html page via a socket but was hoping to make it as authentic as possible. Therefore is there a way of retrieving the server's name that I'm conecting to without using servlets?
    My code is:-
    /*This program is designed to take a GET request from HTTPClient.java and return
    *a hard-coded html document to the client. This program is run on the student
    *server and listens to requests from the client program which should be run
    *on the local machine.*/
    import java.io.*;
    import java.net.*;
    import java.util.*;
    public class HTTPServer{
        String version = null;
        public static void main(String argv[]){
        //I've added this statement for those that may be unfamiliar of how to run
        //the program.     
        if (argv.length != 1) {
             System.out.println("usage: java HTTPServer port");
             System.exit(1);
        //creates a new HTTPSever, argv[0] is the port.
         new HTTPServer(Integer.parseInt(argv[0]));
        public HTTPServer(int port){
         boolean listening = true;
        //Socket's must be created in a try and catch block as they may generate
        //exceptions, which the program must deal with.
         try{
              ServerSocket ss = new ServerSocket(port);
              System.out.println("HTTP Server running and listening for requests...");
              while (listening){
               Socket mySocket = ss.accept();
               //create an InputStream called 'in'
               InputStream in   = mySocket.getInputStream();
               //pass 'in' to the readHeaders method
               readHeaders(in);
               //call getResponse method to obtain the desired string and assign to
               //'response'
               String response = getResponse();
               //creates an OutputStream called 'out'
               OutputStream out = mySocket.getOutputStream();
               //transform 'response' into a byte array ready for output
               out.write(response.getBytes("US-ASCII"));
               //sends output to client
               out.flush();
               //close socket
               mySocket.close();
          catch(Exception e){System.out.println(e.getMessage());}
         /*This method creates a string buffer and appends the html to it. It then
          *gets transformed to a string and all leading and trailing white space
          *is trimmed. Finally the string is returned.*/
        private String getResponse(){
             //creates StringBuffer called 'responseBuf'.
             StringBuffer responseBuf = new StringBuffer();
             //get today's date and convert to a string
             Date date = new Date();
             String todayDate = date.toString();
             //appends values in brackets to responseBuf
             responseBuf.append (version + " 200 OK\r\n");
             responseBuf.append ("Date: " + todayDate + "\r\n");
             responseBuf.append ("Content-type: text/html\r\n");
             responseBuf.append ("Content-length: 119\r\n");
             responseBuf.append ("Last-modified: Thu, 21 July 2005 15:00:00 GMT \r\n");
             responseBuf.append ("<HTML>\r\n");
             responseBuf.append ("<TITLE> My served web document </TITLE>\r\n");
             responseBuf.append ("</HEAD>\r\n");
             responseBuf.append ("<BODY>\r\n");
             responseBuf.append ("<H1> Hello from the server! </H1>\r\n");
             responseBuf.append ("</BODY>\r\n");
             responseBuf.append ("</HTML>\r\n\r\n");
             //converts responseBuf to String called 'response'
             String response = responseBuf.toString();
             //trims any leading or trailing white space from string.
             response = response.trim();
             //returns the string
              return response;
         /*This method reads in the string from the client until either a header
          *block termination (\r\n\r\n) is read, or when the client disconnects
          *(ch == -1). When a character is received it gets stored in an array and
          *also in a string buffer. I decided to use a character array as it enabled
          *me to check for the header block termination commands with relative ease.
          *When the if loop condition is met the program breaks out of the while
          *loop. The StringBuffer sbuf now contains the full request from the client.
          *The program now converts the buffer to a string and trims any leading and
          *trailing white space. From here the string is then split into substrings
          *and stored in a string array. The program finally checks for the HTTP
          *version.*/
        private void readHeaders(InputStream in) throws IOException {
              //Creates a character array to store each character one-by-one.
              char [] inputArr = new char [200];
              //Creates StringBuffer called 'sbuf'
              StringBuffer sbuf = new StringBuffer();
              //Integer 'count' set to zero. Will be used to position each character
              //in the character array.
              int count = 0;
              //Initialise new integer called 'ch'
              int ch;
              //Initialise a new String called 'clientStr'
              String clientStr;
              //While there is something to read and socket is connected, add each
              //character to the character array and the buffer as long as the program
              //doesn't receive the header block termination.
              while ((ch = in.read()) != -1) {
                   inputArr[count] = (char) ch;
                   if ((inputArr[count] == '\n') && (inputArr[count - 1] == '\r')
                   && (inputArr[count - 2] == '\n') && (inputArr[count - 3] == '\r'))
                    break;
                    count++;
                    sbuf.append((char) ch);
         //clientStr will hold string in string buffer without any leading or
         //trailing white space.
             clientStr = sbuf.toString();
             clientStr = clientStr.trim();
         //Split clientStr into substrings and store them in an array.
         String [] tokens = clientStr.split(" ");
         //Obtains HTTP version
         version = tokens [2];
    }Thanks in advance,
    Chris

    When an HTTP message is sent to my client it should send something like:-
    HTTP/1.0 200 OK
    Date: Thurs, 21 Jul 2005 21:30:00 GMT
    Server: Apache/1.3.26
    etc....
    The bit I'm trying to obtain is the Server line. Is it the server type perhaps as opposed to the name? I would imagine it's something like String serverName = Server.getName().toString(); but that doesn't work.

  • How to change the SID name in the server

    hi all,
    i installed oracle 10g R1 on windows 2003 server. i gave an sid and created a database. the database is new and there is no data in the db. now i want to change the SID name of the database. pls help me in doing this.
    regards,
    nagarjuna

    Hi,
    Just a notice: SID and DBNAME are two different things. But the usual practice is to have SID = DBNAME, so let me assume you want to change both SID and DBNAME.
    Either you can do it manually by recreating the controlfile as orawiss suggests. You may discover some challenges around the way (for instance, for the command CREATE CONTROLFILE SET "new_dbname" to work, you have do delete or rename the old controlfiles first).
    Or, you can change it easier by using nid utility. The detailed howto and all implications can be found on:
    http://download.oracle.com/docs/cd/B14117_01/server.101/b10825/dbnewid.htm
    Basically:
    SQL> create pfile from spfile;
    SQL> shutdown immediate;
    nid TARGET=sys/password@oldname DBNAME=newname
    copy the initoldname.ora to initnewname.ora and edit the DB_NAME parameter to reflect the new name
    sqlplus / as sysdba
    SQL> create spfile from pfile;
    SQL>startup mount;
    SQL> alter database open resetlogs;
    Then don't forget to generate new password file for the new dbname (using orapw) and make changes in tnsnames.ora and listener.ora if needed.
    Just make sure, the database has been properly shut down before changing the db_name either manualy by recreating controlfile or by the newid utility, as the renamed database has to be opened with resetlogs - making any crash recover of improperly shut down database impossible.
    Kind regards,
    Martin

  • Changing the default domain name of the server.

    I know this is not the correct title for the topic. but its the best word i could found on my voculabary.
    here's my problem.
    Im using Sun App Server 9. the server is installed in the local machine. for testing purposes client access from the local server is sufficient. I deployed a web service using net beans 5.5. My problem is that the WSDL file is generated (by server) uses a fully qualified domain name rather than localhost. for example it uses http://mlb.stdmlb.sliit.lk:8080. When i try to create a client using netbeans it tries to access the server using this address (the one in the WSDL) but the firewall denies access to port 8080. Therefore i want to use the server to use localhost rather than the long domai name. (at least http://mlb) Can anyone tell me how to configure this?
    Lahiru

    These are the steps for changing domain name & IP address without reinstall
    a) Stop the Gateway and Server .
    b) Export the profile server database to a flat ldif file:
    # /opt/netscape/directory4/slapd-host_name/db2ldif /temp/profile.ldif
    c) Use awk, perl, or vi, to change every instance of the system domainname in the ldif file to that of the new system.
    d) Import the edited ldif file into the profile server on the new machine:
    # /opt/netscape/directory4/slapd-/ldif2db -i /temp/profile.ldif
    e) edit etc/opt/SUNWips/platform.conf and change all the domain name & Ip address
    f) edit /etc/opt/SUNWips/properties.file change the domain name
    g) Start the platform server and gateway on the new machine.

  • Changing the host name of the server - impact on old Urls

    All,
    We are in the process of moving data centre and as part of this the host names of the BW servers will be changed and pointing to the new IP address, how and what configuration at BW server level to make sure all web reports points to the new host name when the url is generated.
    Thanks

    looked at the note 805344 and that helped me to understand...

  • How do I "scan" my LAN and find the host name of the server computer?

    I need to scan my LAN to find out the IP and host name of the computer in which is waiting for client acceptance because the server side of my program is not always on the same computer. Therefore, the IP and host name of my server is not final and can be placed on any computer on my network with over 50 connected computers. How might I check to see which computer is waiting for a client?
    EDIT: I need the host name only, disregard IP
    Thanks!

    watwatacrazy wrote:
    jwenting wrote:
    Peter__Lawrey wrote:
    If you know the port you can try to connect to each of the machines in turn.the people getting firewall warnings about intrusion attempts would just love that, as would the network admins whose network you're clogging with traffic (imagine several hundred clients doing that all day long, let alone tens of thousands).
    If they are all one the same subnet you can use the IP addresses.Which you don't necessarilly all know. Or do you propose just sweeping through all possible IP addresses in the subnet's range? That would be a sure trigger for your network admins to immediately kick you out.
    This should take a few seconds at most.Until the automatic safeguards kick in and you're thrown off the net :)In that case, what would you suggest?Not to bother. The server address should be part of the application configuration, not guessed at runtime.

  • How Oracle Installation cannot get fully qualified name of the server?

    Hi,
    I'm installing Oracle Internet Application Server (10.1.2) on Windows. The Win machine has fully qualified name as myserver.mydomain.com
    However, after the installation, Oracle shows that the URL to Internet Application Server is only
    http://myserver:7777
    I have changed the hosts file of the Win machine and add the line, e.g.,
    10.1.10.10 myserver.mydomain.com myserver
    where 10.1.10.10 is the IP of the Win machine.
    I re-install Oracle Internet Application Server again, but it still cannot picks up the fully qualified name as myserver.mydomain.com for the URL of Internet Application Server page.
    Any ideal?

    I'm installing Oracle Internet Application Server (10.1.2) on Windows. The Win machine has fully qualified name as myserver.mydomain.com
    I have changed the hosts file of the Win machine and add the line, e.g.,
    10.1.10.10 myserver.mydomain.com myserverInstead, use the following in your hosts file, and then try again.
    10.1.10.10 myserver.mydomain.com # myserver

  • Find the bean name in the server environment

    Hi,
    I'm trying to get the bean name (Session or Entity) that had called another bean.
    I mean, there is a method in my entity bean the ask the following: "Hey, who called
    me?"
    I think it's so easy :)
    Could anybody help me?

    If you mean that you want the username of the person who used the bean, you
    can get that by entitycontext.getCallerPrincipal(). If you want to know
    what's the class/method that called, it's not possible without tapping into
    the low-level guts, which is not something that a vendor would document
    openly. More easy is developing it yourself:
    void doSomething() {
    StatefulHome home= ...
    Stateful sfb = home.create(this.Class().toString(), //caller class
    "thisEJB" //caller's JNDI name
    Emmanuel
    "Denis" <[email protected]> wrote in message
    news:3d418e31$[email protected]..
    >
    The entity bean that had been called has a column in the database (aforeign key,
    for example) that represents the caller.
    Did you understand me?
    Rob Woollen <[email protected]> wrote:
    It's not so easy :< What are you trying to achieve? Something for
    security purposes or something else?
    -- Rob
    Denis wrote:
    I have to get also the EJBModule name.
    Thanks!
    "Denis" <[email protected]> wrote:
    Hi,
    I'm trying to get the bean name (Session or Entity) that had called
    another
    bean.
    I mean, there is a method in my entity bean the ask the following:"Hey,
    who called
    me?"
    I think it's so easy :)
    Could anybody help me?

  • When I click on an email address in an excel spreadsheet, an email to that address is generated but it will not send because the host 'AOL' could not be found and that I should verify that I have entered the name of the server correctly. in English

    I am not sure this is a Firefox problem or not, but did not know where to go to get it solved. I am using a spreadsheet to find email addressess and I wanted to just click on the address to begin an email. But I keep getting the error message, Socket Error 11001, Error #0x800CCC0D

    It may be profile specific [http://kb.mozillazine.org/Disappearing_mail Disappearing Mail] for more troubleshooting.
    If the above information does not resolve your issue, please consider creating a new thread containing the specific details of your issue.
    Doing so will allow the Mozilla volunteers to give you solutions that are more helpful to you. This may help them to solve your problem faster and more efficiently.
    Please, feel free to post the link to your thread on this thread for volunteers interested in assisting you.
    Thank you.

  • Connection Failed: The server "name" may not exist or it is unavailable...

    So I think I know what caused this problem, but I can't figure out how to make it stop...
    When I go to print, if I try to click on the pop-up to change the default printer setting, there's a LONG delay, then I get a dialog that says:
    Connection Failed
    The server "name" may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, then try again.
    Then there's another delay and I get the message a second time. I can then select any of my printer settings and print fine, it's just an annoying delay if I click on that pop-up accidentally or need to change it.
    I have a new iMac and I migrated from my old G5. The "name" of the server it is seeking is my old G5, so that must be in the settings somewhere, but I can't find it. I tried going into the Print & Fax settings in System Preferences, deleting the printer there, and then re-adding, but that didn't clear it up.
    Thanks for any insight you can provide!
    --John

    Hmm, well, this stopped working again for me. I tried swapping ethernet and re-installing the Airport client update - to no avail. I could always see my Mac shares from PCs though. However, I have (for now) managed to connect to the PC using ip address rather than name even though finder quite clearly sees the name. Does your printer connection work by ip rather than name ? I'm going to play name lookup detective for a bit now - it's some kind of Netbios name lookup issue I guess as I've no local DNS service. resolv.conf is apparently not used so a bit of learning to do! ...
    ... nmblookup seems to work but nslookup doesn't. Looks like SL connect via Finder isn't using nmblookup properly and I can't see how to make that work. When this gets reported enough it should get a publicised work-round or a fix. If only I can get dig/nslookup to slave out to nmblookup ...must be something I can configure for that ??

Maybe you are looking for

  • Can we push a Custom Type Object on Stack in BCEL?

    Hi All, I know how to push Primitive Types on Stack IN BCEL using InstructinoList.append(new PUSH(ConstantPoolGen,343)); Now i want to push Custom Type Object(Obj of some user defined class i.e EngineClass obj) on Stack in BCEL. Let me explain some c

  • How to genrate and check wait statistics in oracle 10g

    Dear all, how to genrate and check WAIT STATISTICS in oracle 10g on RHEL4. Regards, Ali

  • Required Checkboxs

    I am new, please be patient with me.  I have a form and I want my question to be required.  The choices for the answer are "None" or 1 or more of 5 other choices.  If they choose 1 or more of the 5 choices, I want the "None" to be unchecked and if th

  • Flash CS5.5: Loading XML-file causes a "Security Sandbox Violation"

    Hi, after upgrading from CS3 to CS5.5, i get a "Security Sandbox Violation" when loading a XML-file. With CS3 everything was fine, but now my file is not working any more. The XML-file and my SWF-file are stored in the same directory and it nether wo

  • Back ground job missing

    Hi Experts, I've scheduled some background jobs and they were running fine from last few months. Suddenly i'm not able to view anything in SM37 under my name. please suggest me Moderator message : Duplicate post locked. Edited by: Vinod Kumar on Nov