Could any please tell me if I can upgrade my iOS  on my iPhone 3 please

Can any one please tell me if I can upgrade my ios on my iPhone 3 ,, thanks

The iPhone 3G can be upgraded to iOS 4.2.1. The 3GS to iOS 6.1.3.

Similar Messages

  • Could any one tell me that How can i create the service User ie j2ee SID

    hi all,
    In the implementation of SPNego Authentication schem in my portal system.
    i want to create the service user ie .j2ee-<SID>.
    <b>could any one tell me that How can i create the service User ie j2ee-<SID> in my visual administrator??</b>.
    any help will be highly Appretiated .
    thanks and regards.
    vinit soni.

    Vineet,
    the user management tab opens in Read Only mode - thats why the button is coming as disabled. There is a button for switching into Edit mode - it looks like a pen / pencil on the top bar. Click on that - your "Create User" button would be enabled.
    Also regarding creation of Service User via code level you can see <a href="https://www.sdn.sap.com/irj/sdn/thread?messageID=1057074">THIS</a> thread. And <a href="http://HERE">http://help.sap.com/saphelp_nw04/helpdata/en/f9/e3162ec55f4df6922d161f3785012a/frameset.htm</a>HERE[/url] is the SAP Help documentation on required permission settings.
    Regards,
    Shubhadip
    Message was edited by:
            Shubhadip Ghosh
    Message was edited by:
            Shubhadip Ghosh

  • HT4623 The "Software Update" feature is not available in my Ipod 2nd Generation unit while the upgrade option in iTunes keeps on hanging while downloading the upgrade iOS (time out error). So, please tell me how I can upgrade the iOS.

    The "Software Update" feature is not available in my Ipod 2nd Generation unit while the upgrade option in iTunes keeps on hanging while downloading the upgrade iOS (time out error). So, please tell me how I can upgrade the iOS.

    The Settings>General>Software Update comes with iOS 5. The 2G can only go to iOS 4.2.1
    Try disabling the computer's security software during the download and update.

  • Could any one tell me nano sim can be cut from Normal sim like micro sim. I heard new iPhone uses nano sim

    Hi All,
             My friend told me he will get unlocked new iPhone on first week of launch .He is in Canada and i am in India. I heard new iPhone features nano sim. It is possible to cut nano sim from normal sim like we do for micro sim. iPhone releases in India only in November so if we cant get nano sim  from normal sim , then i have to postponed my new iPhone purchase

    No one here knows Apple's plans regarding any new iPhone & what type of sim that phone may or may not use. As to whether a Mico sim can be cut down to Nano size, the answer is yes. I suspect cutters will appear on the market shortly after such is released.
    The real question you should be asking is why, if you live India, are you looking to purchase an iPhone anywhere else other than India. iPhone warranty & support is country specific, only valid in country of original purchase. You purchase an iPhone in Canada, you prepared to physically bring the phone back to Canada for ALL warranty & support issues? You can't mail it back to Apple. Makes no sense to me.

  • Hi i want to download BW , please can any body tell me that where can

    hi i want to download BW , please can any body tell me that where can i have that
    thanks
    basu

    BW is not available, as far as I am aware, for free download at this time.
    matt

  • I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to my laptop.

    I had a trouble with my lap top and had to format hard disk and install all soft ware again. could any body tell me how to transfer the application and data in my i phone back to itune.

    You can't. It still thinks that your iPhone is synced with another iTunes library (the one that you had before you reformatted the hard drive.

  • Could any body tell me the significance of Partner Profiles in IDOC PROCESS

    Hi,
    Could any body tell me the significance of Partner Profiles in IDOC process.
    Thanks in Advance,
    BSV.

    Hi,
    The partner profile is used to validate the sender and receiver system for a given message type and to assign to the correspondence process code (function module) to post the IDoc to application system.
    This applies for both Inbound and Outbound IDOC's.
    Also please check this link for more information.
    http://help.sap.com/saphelp_46c/helpdata/en/dc/6b803343d711d1893e0000e8323c4f/frameset.htm
    Regards,
    Ferry Lianto

  • Could any one tell me how to do the left outer join or right outer join?

    Could any one  tell me how to do the left outer join or right outer join in Webi Rich Client? thanks.

    we can do it in two ways
    1.  In  web intelligence level  on the query panel click the sql query and write the statement what ever u want there by modifying the existing statement.
    2.  In universe level select the fields in the two tables that you want to make join and create the join between two tables directly by joining field in table 1 to the field in the table 2 by drawing a line and double click on the line to view the join properties,then on join properties if we check the table 1 outer then it is left outer join if we check on table 2 outer then it will be the right outer join.after exporting the universe to the central sever we are now ready to use in web intelligence with out being changed anything in the sql query.
    endorse me if it is useful.
    thanks & regards
    Sreekanth.

  • Could any buddy tell me what should i do my iphone wifi showing dim what should do

    could any buddy tell me what should i do my iphone wifi showing dim what should do

    Hi wasi99,
    Here is an article that has basic Wifi troubleshooting. See if following any of the steps can resolve your issue:
    http://support.apple.com/kb/TS1398
    Cheers,
    GB

  • Could any one tell me what is the difference between swfloader and module loader?

    Hi  All,
                          Could any one tell me what is the difference between SWFLoader and Module Loader in Flex3 in detail?

    Hi,
    ModuleLoader is a kind of strange API that is really just intended to look like SwfLoader for modules that contain a single visual component, and hides most of the module loading infrastructure, which is all about class factories.
    What I mean by "only loaded once" is that if you have several places in the code that call the ModuleManager.getModule("url").load() call, it will only ever get loaded over the wire and interpreted once, subsequent "loads" will just re-dispatch pseudo-load events to the new client.  In other words, the class factory is a singleton for a given url. Unloading is a totally different story.  As you note, not everything is truly unloadable, because there may be lots of references to stuff in
    the module that will keep it alive and un-GC'ed.
    I suggest playing with the low-level API so that you understand the backing implementation, and this should help you understand the limits of ModuleLoader.
    The main difference between modules and applications is that modules have lower overhead, and they only ever get loaded once, no matter how many times you load them. If you're using the ModuleLoader API, keep in mind that you're losing about half the functionality of the module system.  I will assume that you are, because otherwise it would be obvious where to expose methods.  You might want to play around with the lower level ModuleManager API just to get a hang of what's going on - ModuleLoader is a pretty thin veneer over the lower API.                
                    Basically, what you want to do is to have your module implement an interface, say IModuleWhatever.
    Also try and refer to this link which was previously discussed in this forum..
    http://forums.adobe.com/message/74404
    Thanks,
    Bhasker

  • Hi , Could any one tell me how to set icloud on iphone simulator (is it possible ?)

    Hi Developers, Could any one tell me how to set icloud on iphone simulator (is it possible ?).

    This is the iPhone user-to-user tech support forum.  You shoudl post this question in the iPhone developers forums.

  • Hi could any one tell me if the proxy configuration is a must for file to

    hi could any one tell me if the proxy configuration is a must for file to  mail scenario

    Not needed at all.
    Proxy are used when integrating with a SAP system and in the case of a file to mail scenario all you need is a sendr file adapter and receivr mail adapter and a mail server in the same netwrok as you XI server.
    Regards
    Bhavesh

  • I just did update of software and i lost all of my picture and songs from itune which is un usual .could any one tell me how could i get iphoto working again?

    i just did update of software and i lost all of my picture and songs from itune which is un usual .could any one tell me how could i get iphoto working again?

    What did you update with what?  Are we talking a computer?  A device like an iPhone?  You updated iTunes?  You updated the operating system?
    If you updated the iOS on a device, I believe it warns you it will erase the device and you should make a backup first.  Restore from the backup.
    iPhoto is an application pretty much separate from iTunes.  There is an iPhoto forum if you are having problems with that application.

  • Hello every one, am having issue with my itunes, for some reason or another my icon in the itunes doesnt change, its stuck on Songs, and will not let me get playlist or anything else. can any one tell me if that can be fixed

    hello every one, am having issue with my itunes, for some reason or another my icon in the itunes doesnt change, its stuck on Songs, and will not let me get playlist or anything else. can any one tell me if that can be fixed

    http://support.apple.com/kb/TS3694#error-1
    Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.

  • After upgrading to IOS 8 my iPhone 5 wifi is not working well at all .. and can't connect to any of apple services like apple store even can't upgrade my application

    After I upgraded to IOS 8 my iPhone is not working well at all .. the most serious issue is the wifi which is too slow and can't connect to apple store and can't update my application  .. also tried to search or update for ios 8 but also can't connect . safari also always can't connect to any the server . please check and advise

    Hey ahmedfromtanta,
    Thanks for the question. After reviewing your post, it sounds like trouble with Wi-Fi. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    iOS: Troubleshooting Wi-Fi networks and connections
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • Error in serialsation of simple transfromation to XMl

    1. i am getting  the below error during the call transformation error in serialsation of simple transfromation program xxxxxx Edited by: Dhandapani Satheeshkumar on Dec 10, 2009 5:11 PM

  • Why does it lag so much when I scroll in Safari? (OS X Lion)

    I've noticed that ever since the OS X Lion update, webpages in general are pretty laggy when scrolling.  I let the page completely load and when I scrollthere is stuttering and lag.  It is made most apparent when I use momentum to scroll a long webpa

  • How to Validate Email field & Other..

    Hi, 1. I have a requirement in which I have to check that the texinput field i.e EMail field should have @ in it. If not then I need to throw exception. Can anybody tell me how to check @ from VO attribute. 2. There is another text input field in whi

  • Games freeze or black screen after 1 1/2 hrs of playing..

    I first noticed this during Call of Duty, after about an hour to an hour and half of playing the screen would freeze, but the game would continue..I don't have any artifacting or tearing just freeze or ocassionaly black screen. I checked the temps on

  • VMware tools installation fails

    Hi, I decided to try out Arch Linux in VMware Player before installing it on my system. The installation so far has gone well but I can't succeed in installing the VMware tools services. During installation I get several errors and warnings. These ar