How to convert ip address to hostname

Hi
I want to know the process to covert ip address to dns name (e.g 10.12.138.40 -> xyz.domain.net after the Siebel, Oracle BI, SOA installation has been completed
If question isn't clear please let me know. Any help would be appreciated
Thanks

Anish,
Here are the forums where they can provide your guidance regarding OBI and SOA:
OBI: Business Intelligence Applications
SOA: SOA Suite
Thanks,
Wilson

Similar Messages

  • How to change IP address and hostname in solaris 9

    Hi experts,
    I want to change IP address and hostname of the server , Plese give steps, or any precise document .
    Thanks
    Mohan
    Message was edited by:
    mohan_sr

    did you already change your ip and host?
    if not, do the following instructions:
    * verify your hostname
    - uname -a
    - cat /etc/nodename
    both should show your hostname
    * alter your hostname
    - uname -S newname
    * verify the hostname
    - uname -a
    - cat /etc/nodename
    both should show your newname
    * edit /etc/hostname.ce0 (type ce0 depends on your net device)
    - echo 'newname' > /etc/hostname.ce0
    * verify /etc/hostname.ce0
    - cat /etc/hostname.ce0
    should show your newname
    * edit the following files
    - /etc/net/ticlts/hosts
    - /etc/net/ticots/hosts
    - /etc/net/ticotsord/hosts
    replace old with new hostname
    * edit /etc/inet/hosts
    replace ip and hostname
    * you have to look for
    - /etc/inet/networks
    - /etc/inet/netmask
    fit yout data
    After doing all changes you have to reboot your system.
    Use ipconfig to verify network data

  • How to configure IP address and hostname?

    May I know any method to configure IP address and Hostname? besides change it from /etc/hosts and /etc/inet/hosts.
    any other method?
    Any command to change?

    May I know any method to configure IP address and
    Hostname? besides change it from /etc/hosts and
    /etc/inet/hosts.
    any other method?
    Any command to change?Yes, to do it temperiorly you can use ifconfig command, but after the reboot, these things will go off.
    The syntax is:
    ifconfig <interface> <ip addr> netmask <input based on your nwt> broadcast <> up.
    ex:
    ifconfig ce3 180.144.67.40 netmask 255.255.0.0 broadcast 180.144.255 255
    HTH,
    Prabu.S

  • CUOM - How to add IP address with hostname (device name)

    Hello all,
    I have a quick question regarding CUOM(Operation Manager).
    How I could add devices' hostname to CUOM for monitoring?
    I could add IP address as below ,  if I only add IP address, then it looks NO "device name' field which I could add.
    Devices ->Device Management->Add  Devices
    Thank you for your help in advance.
    Howard

    It is resolved by updating host file on CUOM server.

  • How to map IP address with HostName?

    Following is the link to execute one servlet, if i give IP address it works fine but at the same time instead of IP address if i give the corresponding host name ..its not taking..
    My application is running on 'JRUN' not 'Tomcat'.
    FOR IP: http://192.168.152.18:8100/Brio/browse/login
    For Host name : http://AESOP_APP:8100/Brio/browse/login

    i think these code will be useful, just try it.
    import java.net.*;
    import java.io.*;
    import java.net.InetAddress;
    public class IPaddress
         public static void main(String args[])
         int[] xcluster= {192,168,7,198};
         try
              InetAddress in = InetAddress.getLocalHost();
              System.out.println(in.getHostName());
              catch(Exception e)
              System.out.println(e);
              String sunsite= " 198.168.7.177";
              try
              InetAddress in = InetAddress.getLocalHost();
              System.out.println(in.getHostName());
              catch(Exception e)
              System.out.println(e);
    }

  • IP Address of hostname can not change on SLD.

    Hi all,
    We have a problem with Netwaever CE 7.1 EhP1.
    <What have been done in our environment>
    IP address of the CE server was changed (with the same hostname).
    However, IP address setting on SLD(Technical systems) remains the same.
    <Symptoms - what we are trying to resolve>
    We can't create new Web service using CAF, and can't use existing Web services.
    What we asume is that the IP address setting on SLD, which does not point at the changed IP address of the CE server,  is referenced by WSDL when creating Web service using CAF or when trying to use existing Web services.
    <What we want to know>
    We want to know how to change IP address setting on SLD.
    We can't change IP address setting on SLD, because the IP address setting screen does not allow us to change the IP address setting, even though the screen displays the current setting.
    Below is the way you can bring up the IP address setting screen for your confirmation.
    We don't want to re-install, because we don't want to delete any existing Web services.
    <The IP address setting screen that we are looking at>
    Netweaver Application Server Java
    -> Web Dynpro
    ->Content administrator
    ->Start assigned SLD
    ->Technical Systems
    ->(Click the CE Server's Technical System (AS Java) )
    ->(Click CE Server's hostname on General tab)
    We are waiting for any information about this.
    Regards,
    Yumi  Ueki

    Footprints will track and report the User IP's.
    http://www.refineddata.com/index.php?option=com_content&view=article&id=62:footprints&cati d=43:custom-pods&Itemid=62

  • How to Convert file to excel and send it via email

    Hi experts.
    Can anyone tell me how to convert a spool data in to excel format and the send it through e-mail......
    We have a function module for converting spool data to pdf and send it through mail ie FM CONVERT_ABAPSPOOLJOB_2_PDF,
    but is there any FM for Excel ....
    Kindly help me.....
    Thanks
    Naveen

    you can send a file as an exel attachment in mail,
    step 1:
       send file data to an internal table.
    step 2:
       loop through the internal table(itab).
        concatinate itab-field1
                          abap_char_utilities=>horizontal tab
                         itab-field2
                         abap_char_utilities=>horizontal tab
                        abap_char_utilities=>vertical tab
            into t_attachment-line
    append t_attachment
    step 3:
    Fill the document data and get size of attachment
      CLEAR w_doc_data.
      READ TABLE it_attach INDEX w_cnt.  
      w_doc_data-doc_size =
      ( w_cnt - 1 ) * 255 + STRLEN( it_attach ).
    Describe the body of the message
      CLEAR t_packing_list.
      REFRESH t_packing_list.
      t_packing_list-transf_bin = space.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 0.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE it_message LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'RAW'.
      APPEND t_packing_list.
    Create attachment notification
      t_packing_list-transf_bin = 'X'.
      t_packing_list-head_start = 1.
      t_packing_list-head_num = 1.
      t_packing_list-body_start = 1.
      DESCRIBE TABLE t_attachment LINES t_packing_list-body_num.
      t_packing_list-doc_type = 'XLS'.
       t_packing_list-doc_size = t_packing_list-body_num * 255.
      t_packing_list-obj_name   = 'Attachment'.
      t_packing_list-obj_descr  = 'mail xls'
      APPEND t_packing_list.
    Add the recipients email address
      CLEAR t_receivers.
      REFRESH t_receivers.
        MOVE: mail id TO t_receivers-receiver,
        'U' TO t_receivers-rec_type,
        APPEND t_receivers.
      CALL  FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data              = w_doc_data
          put_in_outbox              = 'X'
          commit_work                = 'X'
        TABLES
          packing_list               = t_packing_list
          contents_bin               = t_attachment
          contents_txt               = it_message
          receivers                  = t_receivers
        EXCEPTIONS
          too_many_receivers         = 1
          document_not_sent          = 2
          document_type_not_exist    = 3
          operation_no_authorization = 4
          parameter_error            = 5
          x_error                    = 6
          enqueue_error              = 7
          OTHERS                     = 8.
    check the FM and creat the internal table types
    by this way you can send excel as an attachment 
    but problem in sending EXCEL attachment is if the data crosses the limit of excle file the file will not open.

  • How to convert xslt file into string

    i'm writting a java program to use xslt to transform the xml file. i'm encountering the problem when i try to convert the xslt file into string. i've defined my utility class called 'XmlUtil' to carry out the operation of transform xml file through xslt. but in my main java program i need to convert both xml and xslt file into a string in order to input them in my function argument. my function argument is as follows:
    String htmlString = XmlUtil.applyXsltString(xmlContent, xsltString);
    i've already converted xmlcontent into string by using:
    xmlContent = xmlContentBuffer.toString();
    but i don't know how to convert 'xsltString' now ? i've searched the google for an hour but i cannot find the solution. anyone can help ?
    detail of my souce code is as follow:
    import java.io.*;
    import java.net.*;
    import java.lang.*;
    import java.io.StringReader;
    import java.lang.reflect.Array;
    import java.util.Properties;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.sax.SAXResult;
    import javax.xml.transform.sax.SAXSource;
    import javax.xml.transform.sax.SAXTransformerFactory;
    import javax.xml.transform.sax.TransformerHandler;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.xml.serializer.OutputPropertiesFactory;
    import org.apache.xml.serializer.Serializer;
    import org.apache.xml.serializer.SerializerFactory;
    import org.w3c.dom.Document;
    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    import org.xml.sax.InputSource;
    import org.xml.sax.XMLReader;
    import org.xml.sax.helpers.XMLReaderFactory;
    import XmlUtil;
    public class FileDownload {
    public static void download(String address, String localFileName){
    OutputStream out = null;
    URLConnection conn = null;
    InputStream in = null;
    StringBuffer xmlContentBuffer = new StringBuffer();
    String temp = new String();
    String xmlContent;
    try {
    URL url = new URL(address);
    out = new BufferedOutputStream(
    new FileOutputStream(localFileName));
    conn = url.openConnection();
    in = conn.getInputStream();
    byte[] buffer = new byte[1024];
    int numRead;
    long numWritten = 0;
    System.out.println (in.toString ());
    while ((numRead = in.read(buffer)) != -1) {
    out.write(buffer, 0, numRead);
    numWritten += numRead;
    temp = new String(buffer);
    xmlContentBuffer.append(temp);
    System.out.println(localFileName + "\t" + numWritten);
    xmlContent = xmlContentBuffer.toString();
    String htmlString = XmlUtil.applyXsltString(xmlContent, xsltString);
    } catch (Exception exception) {
    exception.printStackTrace();
    } finally {
    try {
    if (in != null) {
    in.close();
    if (out != null) {
    out.close();
    } catch (IOException ioe) {
    public static void download(String address) {
    int lastSlashIndex = address.lastIndexOf('/');
    if (lastSlashIndex >= 0 &&
    lastSlashIndex < address.length() - 1) {
    download(address, address.substring(lastSlashIndex + 1));
    } else {
    System.err.println("Could not figure out local file name for " + address);
    public static void main(String[] args) {
    for (int i = 0; i < args.length; i++) {
    download(args);
    }

    I don't understand why you need load the XML and XLS files into a String. A Transformer can be constructed from a Source and there is a StreamSouce which can be constructed from an InputStream. The transform() method can take a Source as input and can produce a Result. There is no need to go near a String representation of either the input.

  • How to convert SQL server stored procedures to Oracle 11g

    Hi Experts,
    In SQL server 30 stored procedures are there how to convert all the stored procedure
    from SQL server to Oracle 11g.
    Please help me,
    Thanks.

    ramya_162 wrote:
    In SQL server 30 stored procedures are there how to convert all the stored procedure
    from SQL server to Oracle 11g.
    The single most fundamental concept you need to understand (grok in its fullness) is:
    ORACLE IS NOT SQL-SERVER
    There is very little, to NOTHING, in common between T-SQL (a language extension to SQL) and PL/SQL (integration of SQL with the language Ada, part of ALGOL family of languages that includes Pascal and C++).
    So taking a T-SQL procedure and porting it as is to PL/SQL is plain stupid.
    Why?
    Oracle sucks at trying to be SQL-Server.
    So how do you migrate from SQL-Server to Oracle?
    By taking the REQUIREMENTS that the T-SQL procedures address, and addressing these requirements using Oracle SQL and PL/SQL.

  • How to convert mime file to JPG

    Can anyone tell me how to convert mime-attachments to JPG files?
    Photos that I take on my cell phone and that I send to my e-mail address show as photos when I receive them but the file is converted from a JPG file (in the phone) to a mime-attachment when it arrives in Mail. If I forward the e-mail from my Mac to another e-mail address, the recipients can't open the attachment so they can't see the photo. I can't convert the file to JPG again because no programs I have seem to recognize the mime-attachment file and none will open it.
    Help! Thanks.

    I think I answered my own question. After checking out several sites with various information about MIME attachments, I added .jpg to the file and it opened. Soon I should find out if the newly renamed file can be read in the e-mails I send.

  • How to convert DataServices.Result into an Arraylist or ArrayCollection?

    I want to use an ArrayCollection or an ArrayList as a data provider
    for a dataGrid, and then later in a Graph.
    The problem is that the starting point is the FLEX Builder 4 created "datasource.lastResult" value Objects.
    I don't know how to access anything but the Column names.
    The fields returned are:
         gmtdate,hostname,CPUBusy
    I want to show CPU busy for "N" number of hosts.
    So I need to change my result from the SQL query in Action Script into:
        gmtdate, hostname1_CPUbusy, hostname2_CPUbusy, hostnameN_CPUbusy
    Are there any samples of how to convert the .lastResult into an ArrayList?
    The result set is Object based and I can't figure out how to read it.
    Thanks,
    David

    I wish I could change it, but Oracle SQL does not allow for an unknown number of hosts.
    Nor does this version of Oracle have the new pivot function.
    David

  • How do I import addresses from Address Book Ver 4.1.2 to the Lion Address Book version 7.0? Mountain Lion will not allow me to open Address book Version 4.1.2

    How do I import addresses from Address Book Ver 4.1.2 to the Lion Address Book version 7.0? Mountain Lion will not allow me to open Address book Version 4.1.2

    Do you have any addresses in the Lion version?
    If not, copy the AddressBook folder from your username/Library/Application Support/ folder on the old mac (or backup).
    Copy it to the same location on your new Mac, replacing the one that is there. Start Address Book in Mountain Lion and it should convert the files to the correct format.
    If you do have addresses, it is a little more complicated.
    First, create a Contacts Archive (from File>Export menu). This will be your backup.
    Next, export the current contacts as vCards.
    Then, follow the steps above.
    Then, import all the cards you exported. If you select all and double-click, it will ask if you want to add them. You'll then have to add them to whatever groups you had set up.

  • How do I import addresses from Address Book Ver 4.1.2 to the Lion Address Book version 6.1? Lion will not allow me to open Address book Version 4.1.2

    How do I import addresses from Address Book Ver 4.1.2 to the Lion Address Book version 6.1? Lion will not allow me to open Address book Version 4.1.2 to get to the addresses to copy

    Do you have any addresses in the Lion version?
    If not, copy the AddressBook folder from your username/Library/Application Support/ folder on the old mac (or backup).
    Copy it to the same location on your new Mac, replacing the one that is there. Start Address Book in Mountain Lion and it should convert the files to the correct format.
    If you do have addresses, it is a little more complicated.
    First, create a Contacts Archive (from File>Export menu). This will be your backup.
    Next, export the current contacts as vCards.
    Then, follow the steps above.
    Then, import all the cards you exported. If you select all and double-click, it will ask if you want to add them. You'll then have to add them to whatever groups you had set up.

  • How to convert from windows media into iTunes without creating two albums with one featured song by itself?

    I found out how to convert my windows media player music into my iTunes since I just joined the apple world. I was able to do one CD but I tried to convert Alicia Keys Element of Freedom and all of the songs converted except "Put It In a Love Song" featuring Beyonce. If it's going to do that, how do I keep it from doing all of my albums that have featured artists so it'll be in one album. I don't want the album and then the sole song sitting there. I've tried to find out if anyone's addressed that, but I'm not sure if people are addressing it because it's coming from Windows Media and not the store yet.

    Generally all you need to do is fill in an appropriate Album Artist. For more details see my article on Grouping Tracks Into Albums, in particular the topic One album, too many covers.
    tt2

  • How to find IP address of local machine

    I need to find the IP address of the local machine. I used the following code:
    import java.net.*;
    class test7
    public static void main(String args[])throws Exception
    InetAddress add=InetAddress.getLocalHost();
    System.out.println(add);
    }The output is:
    home/117.254.104.194
    But i need only the IP address without the name of my local machine. How to acheive it? I also need to convert IP address into either String, Byte, Double, Float or Int. Thanks in advance.

    If only there were something in the API docs in this direction!
    public byte[] getAddress()
        Returns the raw IP address of this InetAddress object.
    The result is in network byte order: the highest order byte of the address is in getAddress()[0].
    */

Maybe you are looking for

  • How do I restore my 2011 MacBook Air to its original settings?

    How do I restore my 2011 MacBook Air to its original settings for resale?  When I do the cmd R and go through the process, it begins the restore process for Mountain Lion because I upgraded to Mountain Liion on this machine a few months ago.  And it'

  • Sync'ing "Sent"-box between Mail.app and e-mail sent using the web-app (2)

    Hi, A while ago, I posted this question, and Allan Sampson provided the answer, how to do it quickly and efficiently (see below). However, that method turns out to have a flaw: Here's what I just posted to Apple's sofware feedback: ======== During th

  • Encoding PrPro-CS6

    Premiere Pro CS6 -- I need to create a wmv file of my AVC Intra 100 footage. Since there is no wmv out of AME (Mac) or PR, I was going to export my sequence as is (AVC Intra) then use Episode to create wmv.  My PR sequence say that it is AVC Intra, b

  • KKRC - No objects were summarized

    Hi, We created a hierarchy in KKR0 with the following levels. 1. Controlling area (kokrs) 2. Company Code (bukrs) 3. Sales document (vbeln) 4. Item number in sales order (kdpos) 5. Order (aufnr) while executing KKRC we are getting message like 'No ob

  • Need Help: Submit form through email

    I need to submit my form to an email address on single click of a button. The submit type can be either XML or PDF. But i should neither get any warning nor it should open the Email Client. And everything should happen within Adobe Reader 9. Is this