Is there a function to get the IP of this remote system

Hello EveryBody
Currently I have an application that runs on our network. When someone logs on to the network it checks there system and gets the pc name. I would like to also get the IP address of that system. As well I may later like to ping that computer.
1) Is there a function to get the IP of this remote system?
2) IS the a function to ping a remote system and receive back the response?
Thanks a lot.
R

Hello EveryBody
Currently I have an application that runs on our
network. When someone logs on to the network it
checks there system and gets the pc name. I would
like to also get the IP address of that system. As
well I may later like to ping that computer.
1) Is there a function to get the IP of this remote system?
2) IS the a function to ping a remote system and
receive back the response?Is this lan only?
Because if wan or internet then the remote computer would have to have an address that is reachable from your computer. For the internet this would mean it would have to be public. And for a wan the IP would have to be unique across the wan.

Similar Messages

  • Is there any function module getting the cpu type?

    Is there any function module getting the cpu type?

    I guess the database server...
    I would like to get the SAP system cpu type as done in transaction st06 under system information.
    Thanks.

  • Is there any function to get the name of the days?

    Hi,
    I'm using oracle 10.2.0.1.0
    Is there any function to get the days of the week?
    like i need to get sunday,monday,tuesday.....saturday.
    I know i can use union and select the name from dual one by one.
    But just want to know whether there is any other way.
    I need to show the 7 days in a poplist in my form, thats the requirement
    Thanks

    David_Aldridge wrote:
    BluShadow wrote:
    Note: you may want to include "fm" in the format mask, otherwise the name of the day is padded with spaces:
    SQL> ed
    Wrote file afiedt.buf
    1  select replace(to_char(dt,'Day'),' ','*') as fmt1
    2        ,length(to_char(dt,'Day')) as length_fmt1
    3        ,replace(to_char(dt,'fmDay'),' ','*') as fmt2
    4        ,length(to_char(dt,'fmDay')) as length_fmt2
    5  from (select TRUNC(SYSDATE ,'DAY')+Level-1 dt
    6        from   dual
    7        connect by Level<8
    8*      )
    SQL> /
    FMT1      LENGTH_FMT1 FMT2      LENGTH_FMT2
    Monday***           9 Monday              6
    Tuesday**           9 Tuesday             7
    Wednesday           9 Wednesday           9
    Thursday*           9 Thursday            8
    Friday***           9 Friday              6
    Saturday*           9 Saturday            8
    Sunday***           9 Sunday              6
    7 rows selected.
    SQL>
    I think you should use a pl/sql function for this.
    Nah ... just joking.
    I'd be tempted to just use a union all statement to return the seven literals. People will look at it and know exactly what it does.Yeah, agreed, I was just demonstrating that the format mask of a to_char(..., 'Day') pads with spaces, which seems to have been missed in the above answers. ;)

  • I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    I work for the County and we purchased a copy of Adobe Photoshop CS2 long ago.  The person that did the order is no longer here.  All I have is the CD Disk that is new but i did not know the key code is.  Is there a way to get the keycode for this?

    It would not work anyway. The activation servers have been retired and Adobe has provided a new CS2 download along with a new serial number for CS2 owners.
    Download Acrobat 7 and CS2 products
    Gene

  • I have  license for Adobe Design Std CS6 6.0 MLP .Is there any way to get the installer for this?

    I have  license for Adobe Design Std CS6 6.0 MLP .Is there any way to get the installer for this?

    Download CS6 products
    Mylenium

  • IPhoto on my macbook air does not see my ipod nano 2nd generation. Is there a way to get the photos from this device into my photo stream without wiping them, which will happen if I sync with iTunes

    I have photos on an old 2nd generation ipod nano, that have since been wiped from any other source.
    I now have a shared photostream through icloud between all my other apple deivces (iphone, ipod, ipad, macbook air, apple tv), but I cant find a way to get the ipod nano photos onto the stream. The original photo files were detroyed with an old computer, that also had the itunes library to which the nano was linked.
    The photos are the only items I want from the nano. Can anyone help?

    You need to copy the photos off of the Nano and onto your MacBook Air first.
    The photos you synced to your iPod through iTunes are no longer in their full resolution, but instead are scaled down thumbnails of those photos.  So if you do manage to get them off your iPod, they will be quite small in size compared to the original ones you lost.
    In order to get them off of your iPod, you'll need the help of some sort of 3rd party software. Here is one option.
    http://www.macroplant.com/podtopc/
    B-rock

  • IS THERE A FUNCTION TO RETURN THE NUMBER OF MONTHS OR DAYS?

    I know that you can do a months between function between 2 dates divided by 12 and get years but is there a function that can return the number of months between 2 dates or the number of days between 2 dates in a select statement for a report? These 2 dates are entered in an Oracle forms.
    I have 2 dates.
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    or I have 2 dates
    BEG_SVC_DT 10-JAN-2003 DATE FORMAT
    END_SVC_DT 050924 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I subtract 10 from 24 and get 14.
    In both scenarios the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT' . Is there a function in SQL that would compute the
    number of days between 2 dates?
    Is there a function to get the number of months between 2 dates?
    I have 2 dates.
    BEG_SVC_DT 12-JUL-2004 DATE FORMAT
    END_SVC_DT 050807 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT
    JUL is the 7th month.
    In PLSQL, I subtract 07 from 08 and get 01
    Or I have 2 dates
    BEG_SVC_DT 13-NOV-2004 DATE FORMAT
    END_SVC_DT 050429 VARCHAR2 FORMAT Positions 3 and 4 are months.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    NOV is the eleventh month. 04 is less than 11.
    In PLSQL I have to add 12 to 04 and subtract 11 from 16 to get 05.
    In both scenarios, the end_dt field must be VARCHAR2 because the user has to enter the word 'PRESENT'. In SQL, is there a function to compute the number of months between 2 dates?
    I am doing my calculations this way because this is the way that the user has been doing them when they created the report manually.
    The database that I am using is Oracle 9.2.0.6
    Report Writer Report Builder 6.0.8.22.0
    Forms 6.0.8.22.1

    In your example:
    BEG_SVC_DT 30-JUL-1995 DATE FORMAT
    END_SVC_DT 981007 VARCHAR2 FORMAT Positions 5 and 6 are the days.
    I must subtract BEG_SVC_DT from END_SVC_DT.
    In PLSQL I add 31 to 07 and get 38. I subtract 30 from 38 and get 8.
    Where is the "31" depending on, on year and month of BEG_SVC_DT or END_SVC_DT?
    What would be the answer for the following example
    BEG_SVC_DT 25-FEB-1995 DATE FORMAT
    END_SVC_DT 980407 VARCHAR2 FORMAT
    Do I add 28 (=number of days in FEB-1995),
    or 30 (=number of days in APR-1998),
    or 31 (= max number of days in any month?)

  • Is there any PLSQL defined function to get the content of a website?

    Hi There,
    I am using oracle 10G enterprise edition.
    In one of my functionality i need to mail the website content to the user. Is there a way to get the html content of the website in PLSQL when i pass the specific url?
    Please suggest me an idea to go with.
    Thanks
    Ram

    Yes, you can use the [UTL_HTTP Package|http://www.oracle.com/pls/db102/to_URL?remark=ranked&urlname=http:%2F%2Fdownload.oracle.com%2Fdocs%2Fcd%2FB19306_01%2Fappdev.102%2Fb14261%2Fpackages.htm%23sthref1930]

  • Is there ANY way to get the absolute bounds(including effects) of an object?

    I am currently working on a xml export script. I have stumbled across this problem:
    Our tool cant work with drop shadows, so I need a png for that purpose. So I am checking on a page item for applied effects(in our case only drop shadow) and if it returns true, it is exported as a png.
        function testEffects(object){
            if(object.transparencySettings.dropShadowSettings.mode === ShadowMode.drop)
                return true;
            else
                return false;
    So far so good. The problem is, that the bounds of the object, doesn't reflect the size of the .png. A workaround is easy. Place the exported .png somewhere on the page, get the bounds of this, width and height are defined. The big problem now: the correct x and y are missing.
    If the shadow is on the bottom or/and right side (you could test this with the angle and the shadow offset) the x and y stay the same. But what if the shadow is all around the object? And moreover, a little more on the left than on the right. How can I possibly get the right x and y coordinates, so that everything is perfectly aligned?
    Does anyone have an idea on this?
    Best regards and thanks in advance

    @Stamm – I think, I did understand you from the beginning. :-)
    Here my proof of concept with a snippet that is working on a selected pageitem with a drop shadow. There are no checks about the kind of selection, if it's anchored (that will break the script) and other things. Tested with InDesign CS5.5 so the resulting PNG is always 72 ppi with transparency.
    If you like to test this snippet, save the snippet with an appropriate name before running, because the exported PNG will be exported to the folder where your script snippet file lies.
    1. Before executing the snippet:
    2. After executing the snippet:
    Note 1: The original selected pageItem will be removed!
    Note 2: In this scenario, you do not need to know the exact bounds of the effect.
    Note 3: The clue is: Export the selected object two times. The first time to get the safety zone. The second time grouped with a rectangle that is the size and position of the safety zone. Move the placed PNG to the position of the group. Remove the group.
    Note 4: I tested this snippet with InDesign CS5.5! In InDesign CS6 and above you can refine the export to a higher resolution and you have to turn ON transparency by purpose (that all in the pngExportPreferences of the app). In InDesign CS5.5 transparency is automatically set and you cannot change resolution (72 ppi only by default).
    Here the code:
    //Path for the exported file is where the script file lies
    main();
    function main(){
    var myDoc = app.documents[0];
    var myCurrentSpread = app.documents[0].layoutWindows[0].activeSpread;
    var whatToCheck = myDoc.selection[0];
    var selGB = whatToCheck.geometricBounds;
    var _myScriptFile = new File($.fileName);
    var myIDAsString = String(whatToCheck.id);
    var myDateString = String(Date.now());
    var myFileToExport = File(_myScriptFile.path +"/"+ myIDAsString +"-"+myDateString+".png");
    whatToCheck.exportFile(ExportFormat.PNG_FORMAT, myFileToExport);
    app.select(null);
    myCurrentSpread.place(myFileToExport);
    var myPlacedObject = myCurrentSpread.pageItems.itemByID(returnMaxOfArray(myCurrentSpread.pageItems.everyItem().id)).graphics[0];
    var myPlacedObjectGBs = myPlacedObject.geometricBounds;
    var myWidth = myPlacedObjectGBs[3]-myPlacedObjectGBs[1];
    var myHeight = myPlacedObjectGBs[2]-myPlacedObjectGBs[0];
    myFileToExport.remove();
    myPlacedObject.parent.remove();
    var newRect = myCurrentSpread.rectangles.add({geometricBounds : [selGB[2]-myHeight,selGB[3]-myWidth,selGB[0]+myHeight,selGB[1]+myWidth]});
    var newGroup = myCurrentSpread.groups.add([newRect,whatToCheck]);
    newGroup.exportFile(ExportFormat.PNG_FORMAT, myFileToExport);
    myCurrentSpread.place(myFileToExport);
    myPlacedObject = myCurrentSpread.pageItems.itemByID(returnMaxOfArray(myCurrentSpread.pageItems.everyItem().id));
    myPlacedObject.move([ newRect.geometricBounds[1],newRect.geometricBounds[0] ]);
    newGroup.remove();
    function returnMaxOfArray(myArray){
        function numSortMaxToMin(b,a){return Number(a) - Number(b)};
        return myArray.sort(numSortMaxToMin)[0];
    Hope, that helps…
    Uwe

  • I have a Mac Pro OS 10.7.5 and have a DVD+R disc with files on it, but it ejects the disk after about 10 seconds--what to do?  How can I get the data off this disc?  I can see it has been already burned, so files are on there?

    I have a Mac Pro OS 10.7.5 and have a DVD+R disc with files on it, but it ejects the disk after about 10 seconds--what to do?  How can I get the data off this disc?  I can see it has been already burned, so files are on there?

    Try cleaning the lens and see if that will restore functionality to the DVD drive.  Use a DVD lens cleaning disk, if you have a can of compressed air, shoot some into the slot or wrap a fine microfiber cloth (eyeglasses cleaning cloth)  around a business card and insert it gently inside the slot.
    If no success, make an appointment at an Apple store genius bar and get a free diagnosis from them.
    Ciao.

  • Is there any function to change the width of froms'graphic ?

    Hi All,
    Is there any function to change the width of froms'graphic ?
    May be like set***property.
    Thanks,
    ke xiong

    Hi;
    For your issue i suggest close your thread here as changing thread status to answered and move it to Forum Home » Application Development in PL/SQL » Forms which you can get more quick response
    Regard
    Helios

  • Is there any function to get baseline date

    Dear all,
    Is there any function to get baseline date according to the payment terms?
    Thank you in advance.

    have a lokk here:
    determine due date
    A.

  • Is there a function to predict the next point accoding to the known point?

    For example
    ten points arranged in a parabola,
    is there a function to predict the coordinates of the six point behind according to the four points in front of?

    The ability to predict data values is predicated on your data having some sort of inherent structure. In cases where your data has that structure, curve fits can be very helpful. However, if your data does not have any inherent structure, or is too noisy to
    be able to see the structure, you can run curve-fits and still get results
    that look reasonable. Unfortunately those results would probably correlate better with the
    phase of the moon than they would what you are measuring. No matter how fancy, mathematics can only predict a probable value based on what it was given - and as in all things computer: GIGO. Hence, when working with this sort of thing, I always bear in mind this definition of a pocket calculator:
    "...a device that can divide a ball park estimate by a wild-ass guess and come up with an answer accurate to 13 decimal places..."
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Is there a way to get the version of the C++ coherence library

    Hi,
    I've noticed that the API for the PofExtractor class has changed from 3.5.1 to 3.5.2. It does break binary compatibility so I need a way to know if I'm loading the right dll.
    Is there a way to get the version of the C++ coherence library? I've been unable to find a "getVersion" like function in the C++ headers...

    Hi Serge,
    It sounds like you are looking for a way to do this at runtime, which unfortunately we do not have. We do have an existing enhancement request (COH-2399) to add this support, but it is currently not available.
    You can check the library version externally in a few ways however:
    - run "sanka -version", using the sanka.exe tool shipped with coherence, it will print out the version string of the coherence DLL it loads
    - use the standard UNIX "what" command supplying it the shared library, and it will do the same, even on Windows
    You could in fact write your own version of 'what' in a function and then do things programatically. Here is the description from the 'what' man page.
    what reads each file name and searches for sequences of the form
    ``@(#)'', as inserted by the source code control system. It prints the
    remainder of the string following this marker, up to a null character,
    newline, double quote, or ``> character.''
    So basically scan the library binary for the pattern and you'll find the version string.
    Regarding PofExtractor, it was unfortunate we had to break backwards compatibility, it is not something we do often, or take lightly. Please note that we did it in such a way to still retain on the wire compatibility, so if that is the reason for your question you should be able to simply not worry about it.
    thanks,
    Mark
    Oracle Coherence

  • Is there a way to get the voice memos from my iPhone on to my pc?

    Is there a way to get the voice memos from my iPhone on to my pc?

    See http://www.tech-recipes.com/rx/6403/iphone-transfer-voice-memos-from-iphone-to-c omputer/.

Maybe you are looking for

  • TS1404 ipod plays but no menu display

    my ipod plays but i cannot see anything on the display. I have reset it, saw the apple logo but still no display. how to I reset it back to normal.

  • Upload file dynamic

    Hi to all, I have a question for you. There is a method to upload some files automatically from some fixed folder without authorization or a method for upload a folder? The normal method to upload file need a human file selection and we want a method

  • Dbms_job - changing next date when run from itself

    Hi, <br><br> Can you change the next date of a job from a procedure that is called by the job you are changing?<br><br> I have a dbms_job that is scheduled to run on the first monday of the month. The job runs a procedure and this procedure needs to

  • Setting a password?

    I have a wireless router WRT54G and Im trying to set a password for my network. But when i type 192.168.1.1 or 192.168.1.245 to the addressfield, the Internet Explorer just says that the page cannot display. How can I set the password to the network

  • Bridge gallery web photos

    hi i can't to see my gallery  web photos in a frame