IPhone 4 keyboard keys stuck in Caps, lower case works and all functionality.

I just noticed today that my keyboard keys are stuck in the CAPS mode. When the shift key is off, it does input as lower case letters but the keyboard still shows the letters as upper case? Has anyone had this issue?
My iPhone 4 iOS is up to date and this just happened all of a sudden. Its more annoying more than anything.
Cheers.

The letters on the keyboard always show as capitals.  No issue exists.

Similar Messages

  • My iPhone 4s is stuck on the apple logo page and will not start up is there anything i can do to fix this problem ?

    My iPhone 4s is stuck on the apple logo page and will not start up is there anything i can do to fix this problem ?

    If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • With the iphone 4s sometimes the spotlight search does not work and you must restart the device. There will be an update that will fix the problem?

    with the iphone 4s sometimes the spotlight search does not work and you mustrestart the device. There will be an update that will fix the problem?

    Hi. I have 3 different casemate hard cases and i have been experiencing same problem.

  • Case statement and Decode function both are not working in Select cursor.

    I have tried both the Case statement and Decode function in Select cursor, but both the things are not working. On the other hand both the things work in just select statement.
    See the first column in select (PAR_FLAG), I need to have this evaluated along with other fields. Can you please suggest some thing to make this work. And also I would like to
    know the reason why decode is not working, I heard some where Case statement do not work with 8i.
    Author : Amit Juneja
    Date : 06/20/2011
    Description:
    Updates the Diamond MEMBER_MASTER table with the values from
    INC.MEM_NJ_HN_MEMBER_XREF table.
    declare
    rec_cnt number(12) := 0;
    commit_cnt number(4) := 0;
    cursor select_cur is
    Select DECODE(1,
    (Select 1
    from hsd_prov_contract R
    where R.seq_prov_id = PM.seq_prov_id
    and R.line_of_business = H.line_of_business
    and R.PCP_FLAG = 'Y'
    and R.participation_flag = 'P'
    and SYSDATE between R.EFFECTIVE_DATE AND
    NVL(R.TERM_DATE,
    TO_DATE('31-DEC-9999', 'DD-MON-YYYY'))),
    'Y',
    'N') PAR_FLAG,
    H.SEQ_ELIG_HIST,
    H.SEQ_MEMB_ID,
    H.SEQ_SUBS_ID,
    H.SUBSCRIBER_ID,
    H.PERSON_NUMBER,
    H.EFFECTIVE_DATE,
    H.TERM_DATE,
    H.TERM_REASON,
    H.RELATIONSHIP_CODE,
    H.SEQ_GROUP_ID,
    H.PLAN_CODE,
    H.LINE_OF_BUSINESS,
    H.RIDER_CODE_1,
    H.RIDER_CODE_2,
    H.RIDER_CODE_3,
    H.RIDER_CODE_4,
    H.RIDER_CODE_5,
    H.RIDER_CODE_6,
    H.RIDER_CODE_7,
    H.RIDER_CODE_8,
    H.MEDICARE_STATUS_FLG,
    H.OTHER_STATUS_FLAG,
    H.HIRE_DATE,
    H.ELIG_STATUS,
    H.PREM_OVERRIDE_STEP,
    H.PREM_OVERRIDE_AMT,
    H.PREM_OVERRIDE_CODE,
    H.SEQ_PROV_ID,
    H.IPA_ID,
    H.PANEL_ID,
    H.SEQ_PROV_2_ID,
    H.SECURITY_CODE,
    H.INSERT_DATETIME,
    H.INSERT_USER,
    H.INSERT_PROCESS,
    H.UPDATE_DATETIME,
    H.UPDATE_USER,
    H.UPDATE_PROCESS,
    H.USER_DEFINED_1,
    H.SALARY,
    H.PEC_END_DATE,
    H.REASON_CODE,
    H.PEC_WAIVED,
    H.BILL_EFFECTIVE_FROM_DATE,
    H.BILLED_THRU_DATE,
    H.PAID_THRU_DATE,
    H.SUBSC_DEPT,
    H.SUBSC_LOCATION,
    H.USE_EFT_FLG,
    H.BENEFIT_START_DATE,
    H.SEQ_ENROLLMENT_RULE,
    H.MCARE_RISK_ACCRETION_DATE,
    H.MCARE_RISK_DELETION_DATE,
    H.MCARE_RISK_REFUSED_DATE,
    H.COMMENTS,
    H.USER_DEFINED_2,
    H.USER_DEFINED_3,
    H.RATE_TYPE,
    H.PCPAA_OCCURRED,
    H.PRIVACY_ON,
    H.PCP_CHANGE_REASON,
    H.SITE_CODE,
    H.SEQ_SITE_ADDRESS_ID,
    PM.seq_prov_id rendered_prov
    from hsd_member_elig_history H,
    INC.PCP_REASSIGN_RPRT_DATA P,
    hsd_prov_master PM
    where P.subscriber_id = H.subscriber_id
    and P.rendered_pcp = PM.provider_ID
    and H.elig_status = 'Y'
    and (H.term_date is NULL or H.term_date >= last_day(sysdate))
    order by H.Seq_memb_id;
    begin
    for C in select_cur loop
    rec_cnt := rec_cnt + 1;
    update hsd_member_elig_history
    set term_date = TRUNC(SYSDATE - 1),
    term_reason = 'PCPTR',
    update_datetime = SYSDATE,
    update_user = USER,
    update_process = 'TD33615'
    where seq_elig_hist = C.seq_elig_hist
    and seq_memb_id = C.seq_memb_id;
    INSERT INTO HSD_MEMBER_ELIG_HISTORY
    (SEQ_ELIG_HIST,
    SEQ_MEMB_ID,
    SEQ_SUBS_ID,
    SUBSCRIBER_ID,
    PERSON_NUMBER,
    EFFECTIVE_DATE,
    TERM_DATE,
    TERM_REASON,
    RELATIONSHIP_CODE,
    SEQ_GROUP_ID,
    PLAN_CODE,
    LINE_OF_BUSINESS,
    RIDER_CODE_1,
    RIDER_CODE_2,
    RIDER_CODE_3,
    RIDER_CODE_4,
    RIDER_CODE_5,
    RIDER_CODE_6,
    RIDER_CODE_7,
    RIDER_CODE_8,
    MEDICARE_STATUS_FLG,
    OTHER_STATUS_FLAG,
    HIRE_DATE,
    ELIG_STATUS,
    PREM_OVERRIDE_STEP,
    PREM_OVERRIDE_AMT,
    PREM_OVERRIDE_CODE,
    SEQ_PROV_ID,
    IPA_ID,
    PANEL_ID,
    SEQ_PROV_2_ID,
    SECURITY_CODE,
    INSERT_DATETIME,
    INSERT_USER,
    INSERT_PROCESS,
    UPDATE_DATETIME,
    UPDATE_USER,
    UPDATE_PROCESS,
    USER_DEFINED_1,
    SALARY,
    PEC_END_DATE,
    REASON_CODE,
    PEC_WAIVED,
    BILL_EFFECTIVE_FROM_DATE,
    BILLED_THRU_DATE,
    PAID_THRU_DATE,
    SUBSC_DEPT,
    SUBSC_LOCATION,
    USE_EFT_FLG,
    BENEFIT_START_DATE,
    SEQ_ENROLLMENT_RULE,
    MCARE_RISK_ACCRETION_DATE,
    MCARE_RISK_DELETION_DATE,
    MCARE_RISK_REFUSED_DATE,
    COMMENTS,
    USER_DEFINED_2,
    USER_DEFINED_3,
    RATE_TYPE,
    PCPAA_OCCURRED,
    PRIVACY_ON,
    PCP_CHANGE_REASON,
    SITE_CODE,
    SEQ_SITE_ADDRESS_ID)
    values
    (hsd_seq_elig_hist.nextval,
    C.SEQ_MEMB_ID,
    C.SEQ_SUBS_ID,
    C.SUBSCRIBER_ID,
    C.PERSON_NUMBER,
    trunc(SYSDATE),
    C.TERM_DATE,
    C.TERM_REASON,
    C.RELATIONSHIP_CODE,
    C.SEQ_GROUP_ID,
    C.PLAN_CODE,
    C.LINE_OF_BUSINESS,
    C.RIDER_CODE_1,
    C.RIDER_CODE_2,
    C.RIDER_CODE_3,
    C.RIDER_CODE_4,
    C.RIDER_CODE_5,
    C.RIDER_CODE_6,
    C.RIDER_CODE_7,
    C.RIDER_CODE_8,
    C.MEDICARE_STATUS_FLG,
    C.OTHER_STATUS_FLAG,
    C.HIRE_DATE,
    C.ELIG_STATUS,
    C.PREM_OVERRIDE_STEP,
    C.PREM_OVERRIDE_AMT,
    C.PREM_OVERRIDE_CODE,
    C.SEQ_PROV_ID,
    C.IPA_ID,
    C.PANEL_ID,
    C.SEQ_PROV_2_ID,
    C.SECURITY_CODE,
    SYSDATE,
    USER,
    'TD33615',
    SYSDATE,
    USER,
    'TD33615',
    C.USER_DEFINED_1,
    C.SALARY,
    C.PEC_END_DATE,
    C.REASON_CODE,
    C.PEC_WAIVED,
    C.BILL_EFFECTIVE_FROM_DATE,
    C.BILLED_THRU_DATE,
    C.PAID_THRU_DATE,
    C.SUBSC_DEPT,
    C.SUBSC_LOCATION,
    C.USE_EFT_FLG,
    C.BENEFIT_START_DATE,
    C.SEQ_ENROLLMENT_RULE,
    C.MCARE_RISK_ACCRETION_DATE,
    C.MCARE_RISK_DELETION_DATE,
    C.MCARE_RISK_REFUSED_DATE,
    C.COMMENTS,
    C.USER_DEFINED_2,
    C.USER_DEFINED_3,
    C.RATE_TYPE,
    C.PCPAA_OCCURRED,
    C.PRIVACY_ON,
    C.PCP_CHANGE_REASON,
    C.SITE_CODE,
    C.SEQ_SITE_ADDRESS_ID);
    commit_cnt := commit_cnt + 1;
    if (commit_cnt = 1000) then
    dbms_output.put_line('Committed updates for 1000 records.');
    commit;
    commit_cnt := 0;
    end if;
    end loop;
    commit;
    dbms_output.put_line('Total number of MEMBER_ELIG_HISTROY records inserted : ' ||
    rec_cnt);
    exception
    when others then
    raise_application_error(-20001,
    'An error was encountered - ' || sqlcode ||
    ' -error- ' || sqlerrm);
    end;

    user10305724 wrote:
    I have tried both the Case statement and Decode function in Select cursor, but both the things are not working. Please define what you mean by not working even if your computer screen is near the internet we can't see it.
    You should also look at the FAQ about how to ask a question
    SQL and PL/SQL FAQ
    Particularly *9) Formatting with {noformat}{noformat} Tags* and posting your version.
    know the reason why decode is not working, I heard some where Case statement do not work with 8i.
    Does this mean you are using 8i? Then scalar sub queries - selects within the select list, are not supported, along with CASE in PL/SQL.
    Select DECODE(1,
    * (Select 1
    from hsd_prov_contract R
    where R.seq_prov_id = PM.seq_prov_id
    and R.line_of_business = H.line_of_business
    and R.PCP_FLAG = 'Y'
    and R.participation_flag = 'P'
    and SYSDATE between R.EFFECTIVE_DATE AND
    NVL(R.TERM_DATE,
    TO_DATE('31-DEC-9999', 'DD-MON-YYYY')))*,
    'Y',
    'N') PAR_FLAG,
    >
    exception
    when others then
    raise_application_error(-20001,
    'An error was encountered - ' || sqlcode ||
    ' -error- ' || sqlerrm);
    http://tkyte.blogspot.com/2008/01/why-do-people-do-this.html                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • When syncing iPhone with iTunes I get an iTunes stopped working and the network connection timed out message. I reinstalled iTunes and checked settings still no go.

    When syncing iPhone with iTunes I get an iTunes stopped working and the network connection timed out message. I reinstalled iTunes and checked settings still no go.

    Disable or turn off your firewall, anti-virus, and all security software and try the download again.
    Stedman

  • Upgraded to ios6 this morning on iphone 4. Now my email will not work and the settings are correct

    upgraded to ios6 this morning on iphone 4. Now my email will not work and the settings are correct

    Try a couple of basic troubleshooting steps that can apply to any iPad issue.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    Quit the mail app and restart. In order to quit or close apps - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    None of these things may work, but without more specific information, they are a good place to start.

  • Hi,  Is it possible to redownload purchased apps for free? My iphone just reset to factory settings on its own and all of my files are gone.

    Hi,  Is it possible to redownload purchased apps for free? My iphone just reset to factory settings on its own and all of my files are gone. 
    Appreciate any help. thanks

    Typing "AppStore re-download purchased apps" into Google found this:
    http://support.apple.com/kb/ht2519

  • Iphone Keyboard got stuck

    This is a pretty funny picture of my friend's Iphone's keyboard getting stuck sideways as he was tilting the phone. This picture was taken by my Iphone.
    http://img233.imageshack.us/img233/9965/iphonekeyit9.jpg
    All the keys were still functional, and you could still move around the page he was in.
    Dear Apple, nice glitch.

    First time I've seen this particular problem reported here.
    Dear Apple, nice glitch.
    You aren't addressing anything to Apple here. This is a user to user help forum only.
    Standard troubleshooting steps in order are; power the iPhone off and on, Reset, Restore.
    If none of these 3 steps resolves the problem, time to give AppleCare a call (800) 694-7466, or make an appointment at an Apple Store if there is one nearby.

  • How do I correct the arrow keys to change from lower case to higher case

    The arrow ,   shift key,  will not allow me to change from upper to lower case letters when in I Tunes.    the arrow keys seem to work in every other application.  I cannot properly enter a password  to enter I Tunes.  I reset the password from my note book and the password works.  only the I pad and I tunes are giving me fits.
    charliecache

    the pop-up box comes up just as you said. i then type in the corrected artist's name. i click 'ok', expecting the updated info to appear on the main iTunes library list
    As you have discovered, changing the info on the CD after you have RIP'd it will not change any of teh songs you RIP'd.
    If you select the CD in iTunes and update the info before you RIP the songs, they will go into iTunes with this new info.
    In addition, the CD will display this info if/when you reinsert it into this computer.
    If you only change the RIP'd songs in iTunes, they will display the updated info but if you reinsert the CD, it will display the previous info.
    Best way to do it is to rename the files on the CD before you RIP.

  • ThinkPad Yoga - Keyboard key stucks - how to remove it correctly

    Hi everybody, 
    this is maybe a simple and stupid question but I won't do anything wrong.
    One of my keyboard keys does not work correctly, I think there is something under the key which is blocking because when I press the key I feel a stronger resistance than on the other keys. Sometimes I need to press the key 3 or 4 times before the letter is written - realy annoying
    Obviously I should remove the key and clean it or remove whatever is under the key. Since my ThinkPad Yoga is quite new I don't want to damage it or lose my warrenty through "learning by doing"...
    So can anybody tell me how to remove a key from the ThinkPad Yoga keyboard correctly and reassemble it correctly as well? -> without any damage
    Reagards,
    Ben

    Thanks for the link, but don't you think there is a possibility to remove a single key and not the whole keyboard?
    I found this video for "ThinkPad keyboards" - however, like you mentioned the lift and lock keyboard is probably a special case.
    Does anyone know if the method from the video works for the TP Yoga also?

  • Is the lower case L and the upper case I different sizes?

    Does the upper case I and the lower case L have a slightly different font on the iphone?

    In the Mail and Messages apps, the upper case I (eye) looks slightly 'wider' than the lower case l (el).
    FWIW, I have Bold Text on.

  • HT1414 My iphone 4 is stuck. master reset did not work. won't slide to unlock and if do get to the passcode screen, it won't recognize my entries.  I have tried connecting to itunes through a pc, but since I can't unlock my phone it won't let me do it the

    Iphone 4 is stuck.  I have tried a master reset and it didn't work.  it won't slide to unlock or power off.  I did somehow get to the passcode screen but it didn't let me enter anything.  I have also tried on a pc through itunes but since I can't unlock it, it won't let me do that either.

    http://support.apple.com/kb/ht1808

  • Hi! i recently got a macbook pro 15" retina display, and i tried to play assassin's creed 2 and other games on it, but the thing is, the keyboard keys will not respond except the trackpad, and the keyboard keys work fine outside of gaming.

    Hi! so like i said in the title, i tried to play any game like assassin's creed and minecraft, but the keyboard wont respond but the trackpad does, also i tried restarting reinstalling checking if mouse key is on or off and all that, and it still wont fix this problem.  Outside of gaming though, the keyboard works with no problem. Please help me!

    You should also ask this in the MacBook Pro forum. This is the forum for the 13” white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_pro

  • Ho to convert to lower case values and upper case

    hi
    pls let me know how to convert the varlues to lower case
    and how to conver values to uppoer case
    whichis funtion module to do so?
    regards
    Arora

    Hi,
    <b>TRANSLATE</b>
    Converts characters to strings.
    Syntax
    TRANSLATE <c>  TO UPPER|LOWER CASE
                  |USING <r>.
    The characters of the string <c> are converted into upper- or lowercase, or according to a substitution rule specified in <r>.

  • Iphone 4s Battery stuck at 0% - other apps working.

    Hey everybody,
    My Iphone 4s battery one day almost drained out, got to 0%. happened before.
    I plugged it in my original charger, and since then, it is stuck. It's been over 2 months now.
    I ordered a new original by apple battery and replaced it. Unfortunately, it is still stuck on 0%.
    The funny thing is, other apps are able to read my battery precentage perfectly.
    I have IOS 6.1.2
    tried hard reboot,
    battery replacement,
    battery recalibration,
    nothing worked.
    Any advice?

    My phone now is not working at all. It only works for a few minutes while it is plugged into the wall and then it shuts down and pops right back up showing it has 75% battery. It has been doing this since yesteday afternoon.
    I tried the reset and it is still acting up. Dreading having to take this to the Apple store since it is past the initial 90 days and I will probably get charged for it. :( Dont want to shell out money for a new one since I just got this one in October.
    Thanks for your help.

Maybe you are looking for