Touch screen while calling

Hello everybody.
My z2 has the problem that when i'm calling someone, even if the screen is off, the touch screen works and with the cheek the phone goes in the menu and sometimes in airplane mode.
THIS IS SO ANNOYING.
It's a good phone, but the software is really bad. It has many things that have to be changed or fixed.

Mine's doing this too - unless I keep the phone tightly clamped to my ear to the degree that it becomes painful, i end up cutting people off or putting them on hold. 
The only way I can confidently use the phone as a phone is by using a headset or the handsfree in the car. 

Similar Messages

  • How to Fill the selection screen while calling the transaction

    Hi All,
             my requirement is in one of the screen while i will press a push button it will call one transaction and it will fill the selection screen build order number field and skip the first screen i.e the selection screen it will show the output of that report directly.
    am using this code .
    case sy-ucomm.
    while 'FSLR'.
    set PARAMETER ID 'ANR' FIELD aufnr.
    RANGES s_aufnr FOR afko-aufnr.
          s_aufnr-sign   = 'I'.
          s_aufnr-option = 'EQ'.
          s_aufnr-low    = aufnr.
          APPEND s_aufnr.
    CALL TRANSACTION 'ZFS1' USING s_aufnr
         MODE 'E' .
        AND SKIP FIRST SCREEN.
    endcase.
    here the problem is i cant use both skip screen and using at a time nither the screen is filling nor its skipping the first screen.
    but its not working would any one please help how can i do this functionality?

    Hi
    Do in this way.
    DATA: rspar TYPE TABLE OF rsparams WITH HEADER LINE.
    rspar-selname = 'S_AUFNR'.
    rspar-kind = 'S'.
    rspar-sign = 'I'.
    rspar-option = 'EQ'.
    rspar-low = 'aufnr'.
    APPEND rspar.
    SUBMIT zfs1_prog  VIA SELECTION-SCREEN WITH SELECTION-TABLE rspar AND RETURN.
    If this doesnt suit yer requirement, I wud suggest you to use BDC as below.
    CALL TRANSACTION 'SE11' USING bdcdata
                           MODE   'E'
                           UPDATE 'A'.

  • How to supress the screen while calling the Fm

    hi all,
    i am using  a FM HRHAP_SHOW_DOUMENT,
    i am passing the ADD_ON_APPLICATION = ALL
    MODE = N
    S_APPRAISAL_ID = my appid(50000081).
    and also start date, end date,T_NEW_APPRAISER,T_NEW_APPRAISEE,
    and when i execute this FM i am getting a new screen,
    but when i call the FM it shud not be displayed,
    is there Fm to supress the screen
    please help me to go ahead.

    Hi rukmani,
    i don't think it is possible to supress the screen by calling any other FM. as all the screens are associated wid the function module. so if u don't want that screen in that case use any other fm for the same purpose.
    regards
    saurabh

  • My cheek/ear selects things on touch screen while taking calls. Proximity sensor problem?

    Hello all
    Had my X3 Compact for a couple of months now and really liking it.
    APART from the fact then when I am on a call the screen still seems to be a little sensitive to touch.
    I hear beeps of things being selected. Very often when I finish the call I see the screen is on Notifications or Quick Settings screen, or sometimes the Date and Time screen. Sometimes I notice that my cheek/ear has turned on Bluetooth from the Quick Settings screen.
    Sometimes while on a long call (ie more time in which to involuntarily press things) the other person will suddenly not hear me anymore - no doubt due to imprecise cheek/ear selection!
    Is there something wrong with the Proximity Sensor? I have tested the Sensor with the available diagnostic and it seems functional. And my peripheral vision tells me that the screen goes black as I raise the phone to my ear.
    I've heard that this model can occasionally overheat, but I've never noticed/felt any dramatic peaks in temperature.
    But something is clearly wrong.
    As I said I have tested the Proximity Sensor.
    I have not dropped or damaged my phone.
    I do not use any kind of screen protector or case.
    My software is up to date.
    Any thoughts/ideas would be very welcome!!
    (I have contracted the phone the EE in the UK - I have not contacted them yet as I thought it would be best to go straight to the manufacturers.)
    Thanks very much
    Jamie

    Well I have been facing this issue since the first day itself and this isnt any issue at all!!
    What happens is when we answer a call, out phone isnt in lock state and also we arent holding our phone constantly in one position to our ears/cheeks so theres rubbing of the screen (due to our ears/cheek) which eventually swipes down the Status bar Quick settings and then randomly turns on any feature icon our ear.cheek touches. And we keep hearing some beeps.
    So what I do is once I answer a call I always make it a point/habit to manually lock the phone via Power button. This way I have found my personal solution to this problem.
    And this is the only solution for this nagging issue
    Also if you want, you can completely remove all icons which bother you from Quick settings so that even if your phone isnt locked while on call, nothing will get activated in the background.
    So follow my steps and enjoy your Z3 without worrying about this issue.
    -------- If my Post or Answer helped you out, Please KUDOS me

  • Touch Screen during call

    It would be nice to lock the screen during a call preventing unnecessary muting and disconnecting of calls. At least redesign the keypad to have the MUTE button on the right side so the chin doesn't touch the mute button during a call.

    roaminggnome wrote:
    This is indeed a feature of the iphone. If your does not work, then make sure that you do not have a case on it that may be blocking the sensor.
    If the case were blocking the sensor, it would still turn the screen off, but it would do it as soon as the call started, rather than waiting for the iPhone to be brought up to his/her cheek. I only know this because I was using an original iPhone case for a week or so after I got the iPhone 3G, and the sensors are in different positions on the two devices, so cases for the original may not work with the 3G if they cover the top portion of the screen near the ear speaker in any way.

  • How to skip first screen while calling transaction

    Hi all,
    I am using interactive alv.
    if i select one line and press details
    that must go to another screen.
    In that i must skip first screen and directly go to the details of that first screen.
    suppose i am using the code as follows
    call transaction mm01 and skip first screen
    this is giving me error.
    how to solve the problem.
    thanks and regards,
    giri.

    hi giri,
    For ur requirement, u can use SKIP FIRST SCREEN addition for CALL TRANSACTION Command.
    Before this, u have to use SET PARAMETER ID Command to pass the required values for transaction.
    Example, In transaction VA01, we have to set parameter AUN to pass the sale order number to the transaction.
    <b>
    AT LINE-SELECTION .
    SET PARAMETER ID 'AUN' FIELD w_vbeln.
    CALL TRANSACTION 'VA01' AND SKIP FIRST SCREEN .</b>
    where w_vbeln contains the sale ordre number. Now VA01 runs for this sale order number..... And AUN is the PARAMETER to be set before calling VA01 TCODE.
    similarly, check the PARAMETER associated with MM01 Tcode and initialize that parameter and call the code in the similar way.
    To check parameter Id of MM01,
    1) Enter MM01 Transaction
    2) Press F1 on Material Field
    3) Select Technical Info
    4) u can find Parameter ID associated with this field.
    check these links for full details.
    call transaction...
    http://help.sap.com/saphelp_47x200/helpdata/en/78/21761c51ce11d189570000e829fbbd/frameset.htm
    at line selection,
    http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba2c435c111d1829f0000e829fbfe/frameset.htm
    get/set parameter:
    http://help.sap.com/saphelp_nw04/helpdata/en/5b/7bc3775d1111d295ad0000e82de14a/frameset.htm
    Reward me if useful........
    Harimanjesh AN

  • Touch Screen - Recieving Calls

    Received my IPhone 6 earlier the week - phone rings and shows "Swipe to answer" bar - but I can swipe all I like - no response. The "message" and "remind me" icons doesn’t work either.  When making a call I am unable to end the call with the red “end
    call” icon. Have to use the lock screen button. What am I to do?

    Try a reset, no data loss.  Hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.

  • Can the Touch Screen on iPhone be Disabled while Playing Video?

    My 16-month old son loves watching Sesame Street on my iPhone 3GS while we travel. Problem is, he keeps touching the screen and inadvertently stopping the video or exiting from the iPod application.
    Is there a way to disable the touch screen while watching video so that the only way of re-activating is by pressing the home button? Thanks.

    No, there is not. You can send feedback to Apple - http://apple.com/feedback

  • Touch screen does not work

    I just got an HP elitebook 2760p.   Everything works...except that I cannot seem to get the touchscreen to work.   Whether the screen is up (like a regular laptop), or flipped down (like a tablet), it does not respond to fingers or to the pen that comes with the computer.  I have tried using the touch screen while using internet explorer, while using the "desktop" of windows 7, and also while booting up the computer with it flipped like a tablet.
    There is probably a very simple answer...and once I get it, I'll feel like a beef mind, but for the life of me I can't figure it out.   I can't seem to find any swich to turn on, whether physical or in the windows setting pages.  The computer did not come with a manual, but I looked up on the online manual and there is no information on "how to use the touch screen" 
    Is there something that I must "turn on" in Windows 7, or a switch somewhere on the side of the computer which I need to flip to use the touch screen?   Could I be missing a driver?

    Your EliteBook is a Business model.  Your issue would be best answered on the HP Enterprise Business Community Forum
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Feature that locks touch screen but continues to display video?

    Is there an existing feature or application that will lock the touch screen but still display a video? I would like for my daughter to watch a video on my iPhone but I want to disable the touch screen while she is watching it so she won't accidentally turn it off or change any settings (she's only a toddler). I can do this with my iPod nano by playing a video and then locking the iPod (sliding the lock switch on the bottom of the device). Does the iPhone 3G have anything like this?

    I 100% agree with you. I have some Sesame street videos on there for my daughter but they don't really work because she is always touching the screen and stopping them. This would be a great feature to have, but unfortunately I don't believe this is possible.
    Jared

  • Unresponsive touch screens

    When i start playing games on my iphone 5, i start to notice that sometimes the buttons on the screen doesnt work. Also show people on the internet reporting that the touch screen sometimes freezes or if you touch soemthing on the screen, it doesnt work? Is this a software issue or hardware issues, i just got mine and really dont feel like returning it, because i love my phone. I hope they can update it in their next update.

        That's a great new phone pistolro1!! Let's make sure it works great too. Are you only having trouble with your touch screen while you're playing games? What game(s) seems to have the most trouble? Apple does have a great guide at http://www.apple.com/support/iphone/assistant/phone with help for iPhones that may not be responding properly too.
    JenniferH_VZW
    Please follow us on Twitter @vzwsupport

  • HT201406 IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even powe

    IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even power if off. I can't access the hardward ID which Apple support seems to require for Chat.
    It might have happened when I was accessing my camera bypassing the lock screen!
    All I know is that the thing is now useless and it looks like I will have to wait for the battery to run down to see if powering it back up afterwards will solve the problem.

    I have since discovered the "hold down home key and power button" together for a few seconds and this seems to have worked .... phew!

  • HT4528 how do i stop my iphone 4 from doing random commands while talking on calls via the touch screen? Can i lock the screen while talking?

    how do i stop my iphone 4 from doing random commands while talking on calls via the touch screen? Can i lock the screen while talking?

    The iPhone has a proximity sensor located on the top of the phone near the earphone speaker that is supposed to automatically turn off the screen when it is close to your face while on a call, to prevent that very thing from happening.  If your phone isn't doing that, try cleaning your screen.  Also, if you put a screen protector on your phone made for a different model it may lack the cut-out that is supposed to keep it from blocking the sensor.  Try removing your screen protector to see if that helps.  If it does, get another screen protector.

  • Ok my iphone 3g touch screen is not responding, i can recieve calls and it can charge and connect to itunes, but i cannot go any further than using the home button or the power button, but the slide feature and touch feature is non existent

    ok my iphone 3g touch screen is not responding, i can recieve calls and it can charge and connect to itunes, but i cannot go any further than using the home button or the power button, it is only the slide feature and touch feature that has become non existent.  Also, i have a f'ew cracks in my screen for a while now and it was running smoothly up until saturday when i sat on it applying large amounts of pressure to the phone screen.  Is there a way i can fix this myself without having to recover my phone to factory settings or wasting 50 bucks to get it fixed??

    Hi Dire Dawa,
    If the screen on your iPhone isn't responding, you may find the following article helpful:
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/ts3281
    Regards,
    - Brenden

  • Touch screen non responsive, can't answer calls.

    when my phone goes into sleep mode with non activity, I receive a call but cannot answer it because touch screen won't respond, no button is responsive, I have to reboot the phone.  What is this issue?

    Chiefterry,
    That's got to be quite annoying! Is this a brand new issue or one that has been going on for a while? Did any specific event - such as a new app installation, software update, or physical/liquid damage - prompt this issue to start?
    SarahO_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

Maybe you are looking for

  • Unable to install SQL Server CE Server Tool on SQL Server 2000 SP 4

    Hi I am facing problem with installing SQL Server CE Server Tool, I have installed SQL Server 2000 SP 4 which is working fine. While i am running Setup of "SQL Server 2000 Windows CE Edition version 2.0" ,Developer tools installed successfully but in

  • Problem with defining ints

    I have a method that defines ints to 4 and uses them in the method. But I only want them defined to 4 when the method is invoked the first time. public static void example() int x = 4, y = 4; x -= 1; y -= 1; }Is there a way for x and y to remain at 3

  • [SOLVED] Steam troubles. Segfault after login.

    Hello. I'm usually pretty good about solving my own problems, but this one has me beat. So, yay, first post. Recently my nephew brought me his computer for a nuke and pave, and since he doesn't have a legit Windows key and I don't use Windows anymore

  • Error Saving Mail Preferences

    I'm trying to set up Mail in 10.7.2 and whenever I try to change something in Preferences I get 'Error Saving Preferences' pop-up. It says 'Writing your preferences to disk has failed. Your preferences may not have been saved. The permissions on ~/Li

  • Ipod wont come up on itunes

    my iPod wont come up on iTunes, ever since I formatted it, i connect it and it displays the DO NOT DISCONNECT sign, and its on MY COMPUTER, but I open up iTunes and it doesn't recognize the iPod. Please help!!