How do I Find the exact version of safari on my ipad

I have used whatismybrowser.com but it does not give the exact version only safari 6.
Thank you

Should work better than 2007, but I beleive file uploads, unless you are using an app such as iCab that has document/file storage, will still be an issue. You will want to do some serious testing against your SharePoint deployment, including any custom solutions or third party web parts you may have added.
Expecting Microsoft to support iOS native apps just might not be realistic. They still refuse to put out an iOS version of Office even though it completed development over six monthsd ago (at least rumor has it). Guess I am being cynical, but I don't think that is an accident or oversight (I support a sizable collection of workspaces myself).

Similar Messages

  • I have OS X Yosemite - my current version of iPhoto is not compatible with it / how do i find the correct version of iPhoto?  The APP Store keeps sending me back to the same 'current version' that is NOT Compatible...

    I have OS X Yosemite - my current version of iPhoto is not compatible with it / how do i find the correct version of iPhoto?  The APP Store keeps sending me back to the same 'current version' that is NOT Compatible...

    If you have Yosemite you need iphoto 9.6 from the App store - what is the exact error message you are getting?
    Try dragging the iphoto Application to the trash from your applications folder (wait tot empty the trash) and then install iPhoto 9.6 from the App store
    LN

  • How do I find the iTunes version on my iPad?

    How do I find the iTunes version on my IPAD?

    You can't. The version is whatever the version is for the iOS that you are running. The preinstalled apps are updated when the iOS is updated so whatever iOS your are running determines that version.
    If you are asking because you are trying to submit feedback or trying to communicate with Apple via some support link that is asking for the version, just ignore that and enter the information in any special instructions field or whatever is available.

  • How do I find the installed version of Firefox?

    How do I find the installed version of Firefox?

    Option>Advanced>Show update history shows the precise version e.g. I have Firefox 35.0Beta1. It also shows the download date.

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • ITunes 11.0.1.12 is a total disaster, how do I find the previous version?

    iTunes 11.0.1.12 is a total disaster.  How do I find the previous version?

    You can restore much of the look & feel of the previous version with these shortcuts:
    Ctrl-B to turn on the menu bar.
    Ctrl-S to turn on the sidebar.
    Ctrl-/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library to restore the previous search behaviour.
    You can also open the menu bar temporarily by pressing Alt.
    To roll back to iTunes 10.7 first download a copy of the 32 bit installer or 64 bit installer as appropriate, uninstall iTunes and supporting software, i.e. Apple Application Support & Apple Mobile Device Support. Reboot. Restore the pre-upgrade version of your library database as per the diagram below, then install iTunes 10.7.
    See iTunes Folder Watch for a tool to scan the media folder and catch up with any changes made since the backup file was created.
    tt2

  • I was trying to restore an earlier back up on the time capsule and lost all previous versions!  How do I find the earlier versions again???

    I was trying to restore an earlier back up on the time machine and somehow lost all previous versions!  How do I find the earlier versions again?  I am getting a message that say ?volumes/Data/Yipper101's MacBook Pro.sparsebundle is already in use from my time machine and will also not back up.  There is also an error message that says -6584 error code.  HELP!

    There is a forum for Lion and TimeMachine, also MacBook Pro
    http://www.apple.com/support/timemachine

  • How can I download the latest version of Safari?  Exact instructions.

    How do I download the latest version of Safari?  I keep getting a message that my current version is no longer supported.  Isn't there something I can just click on?  I can't see how to actually download it (gen x, not as smart as I once was ), but please help me anyway.

    You may have to settle for as recent of version of Firefox, as your OS X 10.6.8 will allow.
    Even an older archived Firefox would be more recent than Safari from that era.
    https://www.mozilla.org/en-US/firefox/new/
    see:
    https://support.mozilla.org/en-US/kb/how-download-and-install-firefox-mac
    The method to get a later version of Safari, would be to see if the computer can be upgraded
    to a later fully new OS X which includes a period-correct Safari version. That's about it.
    And an upgrade to a later OSX may compromise the kind of computing experience you'd
    found acceptable with Snow Leopard 10.6.8. I'd consider a later computer, as a vehicle to
    access later OS X versions, and keep the older computer (with backups) in Snow Leopard.
    The online App Store may suggest a later OS X version than you have. The latest it may
    (or not) support is Yosemite. That would likely require a RAM upgrade and perhaps a new
    hard disk drive of faster rotational speed, or perhaps an upgrade to SSD, to add speed to
    allow the bulkier newer OS X to work OK. Then you may need to get newer applications.
    Other available OS X versions, not as new as Yosemite, would be available by purchase
    in the Apple Store online. A code would be sent to your email, to unlock these downloads.
    If you fall into the potential upgrade trap, be sure to create viable external clone or bootable
    copy of your current system on external device; and have backup Time Machine archive, too.
    In any event... there isn't a newer Safari for Snow Leopard 10.6.8.
    Good luck & happy computing!

  • How do i get the latest version of safari on my macbook pro? where is this in the apple store??

    How do I get the latest version of safari on my macbook pro?

    Upgrading to Yosemite
    You can upgrade to Yosemite from Lion or directly from Snow Leopard. Yosemite can be downloaded from the Mac App Store for FREE.
    Upgrading to Yosemite
    To upgrade to Yosemite you must have Snow Leopard 10.6.8 or Lion installed. Download Yosemite from the App Store. Sign in using your Apple ID. Yosemite is free. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
        OS X Mavericks- System Requirements
          Macs that can be upgraded to OS X Yosemite
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.

  • How can I download the newest version of safari?

    How can I download the newest version of safari? I can't find a link anywhere.

    Safari is tied to the Operating System.
    Jessicaadele wrote:
    How can I download the newest version of safari? I can't find a link anywhere.
    What version of OS X are you running?

  • How/where do i find/load latest version of safari on mini ipad

    how/where do i find/load the latest version of safari on mini ipad?

    Found I can do most of what I want via their mobile app, just doesn't work with safari. But there are a couple of features not available in their mobile app that I sometimes need so when needed can use pc based browser. Really don't want to load another browser just for this so will make do. Also will try and call and talk to them b4 I give up.
    Thanks again.
    Sent from my iPad

  • How can I find the location of an app on my iPad 2?

    How can I find the location of an app on my iPad 2? The app comes up with a search, but that seems to be the only way to find it. I just installed the app today, but I can't figure out where it is. It has a pretty distinctive icon, and I've looked through all of my apps and even in folders (even though I don't know how it would have gotten there). I want to put it in an appropriate folder under the right subject, but I can't find it to do this. I can use the app, since I can find it through a search though. I have a lot of apps, but I looked very carefully and can't find it. Is there a way to ask my iPad to locate it for me? It's a $25 app and one I plan to use regularly, so I want it located in the folder of my choice.This problem makes we wonder if I have other "missing" apps, apps that I could  find if I happened to think to search for them, but that don't appear to be on my iPad (even though they actually  are).

    You were right about the homescreens. I had turned my iPad off for the night with less than three full homescreens of loose apps, those not in folders. When I turned the iPad on this morning to try your suggestions, I had five full pages of loose apps. They just appeared when I restarted, and there was the app I was looking for, easy to find. Last night I was deleting apps I decided I wouldn't use, organizing useful apps into folders, and making sure I had as few pages as needed by making sure the gaps made by the moved/deleted apps were closed. The missing apps didn't show up at that point; I was just left with fewer than 11 pages. The apps only showed up when I restarted this morning. There were almost three extra pages of apps that weren't there last night. I know there must be other things missing, since all of the pages are full. So I tried your suggestion in iTunes. I connected my iPad, found an app in the alphabetical list on the left, and double clicked it. This brought me to the app's homescreen (and its home folder when applicable), the place where it was located. In order to identify which page that was, I had to scroll through the screen shots of the homescreens that was below the homescreen that was showing until I found the homescreen whose number was in white. Then I could count the pages on my iPad until I got to that page. I'll have to delete more apps and organize more into folders to see what else might show up. There are just too many apps available for special education, and I'm in the process of figuring out which are the best for my needs. Thanks so much!

  • HT5318 How can I download the latest version of iTunes to my iPad when I don't have enough space in my local c disc on my laptop?

    How can I download the latest version of iTunes to my iPad when I don't have enough space in my local c disc on my laptop?

    You don't download itunes to your ipad at all.

  • HT5275 How do I find the password pane in safari? It is mentioned as a new feature, but I can't find it.

    How can I find the password pane in safari?
    I have looked through all of the obvious menus.
    Would like to find one of my stored website passwords.
    Thank you.

    In Safari: Preferences>Passwords

  • HT4550 how do i download the newest version of safari?

    How do I download the newest version of Safari software?

    If what you indicated is correct, you are using Mac OS X 10.7.5, so the most recent Safari version for Lion is Safari 6.
    Safari 6.1 is available for OS X Mountain Lion, and Safari 7 is only available for OS X Mavericks, so if you want to upgrade Safari, you will have to upgrade OS X. See > http://www.apple.com/osx

Maybe you are looking for