Call screen not working

Hi gurus,
I m developing a report and I m trying to call another screen after  a statement. I have a problem. ALthough ı m writing call screen 300, the 100 numbered screen comes. What may be the reason? Thanks in advance?

MY--CODES
  DATA: L_VALID TYPE C.
  DATA :
  TIMETICKETS TYPE BAPI_PP_TIMETICKET OCCURS 0 WITH HEADER LINE,
  RETURN LIKE BAPIRET1,
  LINK_CONF_GOODSMOV TYPE BAPI_LINK_CONF_GOODSMOV
                     OCCURS 0 WITH HEADER LINE,
  GOODSMOVEMENTS TYPE BAPI2017_GM_ITEM_CREATE OCCURS 0 WITH HEADER LINE.
  CALL METHOD CI_ALV->CHECK_CHANGED_DATA
    IMPORTING
      E_VALID = L_VALID.
CALL METHOD CI_ALV->GET_SELECTED_ROWS
   IMPORTING
     ET_INDEX_ROWS = LT_INDEX_ROWS.
LOOP AT LT_INDEX_ROWS INTO LS_INDEX_ROWS.
   READ TABLE GT_ITAB INDEX LS_INDEX_ROWS-INDEX.
   IF SY-SUBRC = 0.
   ENDIF.
ENDLOOP.
  REFRESH : DETAIL_RETURN.
  READ TABLE GT_ITAB WITH KEY CHK = 'X'.
  IF SY-SUBRC NE 0.
    MESSAGE E000(ZPP) WITH 'Lütfen operasyon seçin'.
  ENDIF.
  CLEAR : DETAIL_RETURN, DETAIL_RETURN[].
  LOOP AT GT_ITAB WHERE CHK IS NOT INITIAL
                    AND OK IS INITIAL.
    IF GT_ITAB-LMNGA LE 0 AND GT_ITAB-XMNGA LE 0.
      MESSAGE E000(ZPP) WITH
       'Operasyon' GT_ITAB-VORNR 'için miktar girin'.
    ENDIF.
    REFRESH : TIMETICKETS, DETAIL_RET.
    CLEAR   : TIMETICKETS, DETAIL_RET.
    TIMETICKETS-ORDERID        = GT_ITAB-AUFNR.
    TIMETICKETS-OPERATION      = GT_ITAB-VORNR.
    TIMETICKETS-YIELD          = GT_ITAB-LMNGA.
    TIMETICKETS-SCRAP          = GT_ITAB-XMNGA.
    CLEAR ACT_LMNGA.
    ACT_LMNGA = TIMETICKETS-YIELD + TIMETICKETS-SCRAP.
       export gv_lmnga to memory id 'GV_LMNGA'.
    TIMETICKETS-CONF_QUAN_UNIT = GT_ITAB-AMEIN.
    TIMETICKETS-FIN_CONF       = GT_ITAB-AUERU.
    TIMETICKETS-POSTG_DATE     = GV_BUDAT.
*--- Calculate activity
    SELECT SINGLE * FROM AFKO WHERE AUFNR = GT_ITAB-AUFNR.
    IF SY-SUBRC IS INITIAL.
      SELECT * INTO TABLE WLT_AFVC
                   FROM AFVC WHERE AUFPL = AFKO-AUFPL
                               AND VORNR = GT_ITAB-VORNR .
      IF NOT SY-DBCNT IS INITIAL.
        SORT WLT_AFVC BY APLZL.
        LOOP AT WLT_AFVC.
          CLEAR: AFVDB_TAB[],
                 AFVDB_TAB.
          CALL FUNCTION 'ZPP_CO_DB_AFVGD_SINGLE_READ'
            EXPORTING
              AFVG_AUFTRAG = WLT_AFVC-AUFPL
              AFVG_VORGANG = WLT_AFVC-APLZL
            TABLES
              AFVDB_TAB    = AFVDB_TAB
            EXCEPTIONS
              NOT_FOUND    = 1
              OTHERS       = 2.
          IF SY-SUBRC <> 0.
          ELSE.
            LOOP AT AFVDB_TAB WHERE AUFPL = WLT_AFVC-AUFPL
                                AND APLZL = WLT_AFVC-APLZL.
              CLEAR: ACT_AFVGD,
                     EXP_ACTIVITIES.
              MOVE-CORRESPONDING AFVDB_TAB TO ACT_AFVGD.
*-Calculate Activity values--
              PERFORM CALCULATE_ACTCONF_QTY USING GT_ITAB-MATNR
                                                  GT_ITAB-AMEIN
                                                  ACT_LMNGA
                                                  GV_ACTMG.
              CALL FUNCTION 'CO_R0_DET_TOTAL_ACTIVITY'
                EXPORTING
                  ACT_AFVGD             = ACT_AFVGD
                  ACT_FLG_CONSIDER_CONF = 'X'
                  ACT_QUANTITY          = GV_ACTMG
                  ACT_DATUM             = SY-DATUM
                  ACT_FLG_MST           = 'X'
                  ACT_ARBID             = ACT_AFVGD-ARBID
                  ACT_WERKS             = ACT_AFVGD-WERKS
                IMPORTING
                  EXP_ACTIVITIES        = EXP_ACTIVITIES
                EXCEPTIONS
                  DIVISION_BY_ZERO      = 1
                  OTHERS                = 2.
              IF SY-SUBRC <> 0.
              ELSE.
                TIMETICKETS-CONF_ACTIVITY1  = EXP_ACTIVITIES-ACTI1.
                TIMETICKETS-CONF_ACTI_UNIT1 = EXP_ACTIVITIES-UNIT1.
                IF GT_ITAB-CONF_ACTIVITY2 IS INITIAL.
                  TIMETICKETS-CONF_ACTIVITY2  = EXP_ACTIVITIES-ACTI2.
                ELSE.
                  TIMETICKETS-CONF_ACTIVITY2  = GT_ITAB-CONF_ACTIVITY2.
                ENDIF.
                TIMETICKETS-CONF_ACTI_UNIT2 = EXP_ACTIVITIES-UNIT2.
                IF GT_ITAB-CONF_ACTIVITY3 IS INITIAL.
                  TIMETICKETS-CONF_ACTIVITY3  = EXP_ACTIVITIES-ACTI3.
                ELSE.
                  TIMETICKETS-CONF_ACTIVITY3  = GT_ITAB-CONF_ACTIVITY3.
                ENDIF.
                TIMETICKETS-CONF_ACTI_UNIT3 = EXP_ACTIVITIES-UNIT3.
                TIMETICKETS-CONF_ACTIVITY4  = EXP_ACTIVITIES-ACTI4.
                TIMETICKETS-CONF_ACTI_UNIT4 = EXP_ACTIVITIES-UNIT4.
                TIMETICKETS-CONF_ACTIVITY5  = EXP_ACTIVITIES-ACTI5.
                TIMETICKETS-CONF_ACTI_UNIT5 = EXP_ACTIVITIES-UNIT5.
                TIMETICKETS-CONF_ACTIVITY6  = EXP_ACTIVITIES-ACTI6.
                TIMETICKETS-CONF_ACTI_UNIT6 = EXP_ACTIVITIES-UNIT6.
              ENDIF.
            ENDLOOP.
          ENDIF.
        ENDLOOP.
      ENDIF.
    ENDIF.
    APPEND TIMETICKETS.
    APPEND TIMETICKETSALL.
    DATA : GV_ZZSHIFT LIKE AFRU-ZZSHIFT,
           GV_ZZZOPER LIKE AFRU-ZZZOPER,
           GV_ZZZOPE1 LIKE AFRU-ZZZOPE1,
           GV_ZZZDRN1 LIKE AFRU-ZZZDRN1,
           GV_ZZZDRS1 LIKE AFRU-ZZZDRS1,
           GV_ZZZDRN2 LIKE AFRU-ZZZDRN2,
           GV_ZZZDRS2 LIKE AFRU-ZZZDRS2,
           GV_ZZZDRN3 LIKE AFRU-ZZZDRN3,
           GV_ZZZDRS3 LIKE AFRU-ZZZDRS3.
    GV_ZZSHIFT = GT_ITAB-ZZSHIFT.
    GV_ZZZOPER = GT_ITAB-ZZZOPER.
    GV_ZZZOPE1 = GT_ITAB-ZZZOPE1.
    GV_ZZZDRN1 = GT_ITAB-ZZZDRN1.
    GV_ZZZDRS1 = GT_ITAB-ZZZDRS1.
    GV_ZZZDRN2 = GT_ITAB-ZZZDRN2.
    GV_ZZZDRS2 = GT_ITAB-ZZZDRS2.
    GV_ZZZDRN3 = GT_ITAB-ZZZDRN3.
    GV_ZZZDRS3 = GT_ITAB-ZZZDRS3.
    EXPORT GV_ZZSHIFT TO MEMORY ID 'ZZSHIFT'.
    EXPORT GV_ZZZOPER TO MEMORY ID 'ZZZOPER'.
    EXPORT GV_ZZZOPE1 TO MEMORY ID 'ZZZOPE1'.
    EXPORT GV_ZZZDRN1 TO MEMORY ID 'ZZZDRN1'.
    EXPORT GV_ZZZDRS1 TO MEMORY ID 'ZZZDRS1'.
    EXPORT GV_ZZZDRN2 TO MEMORY ID 'ZZZDRN2'.
    EXPORT GV_ZZZDRS2 TO MEMORY ID 'ZZZDRS2'.
    EXPORT GV_ZZZDRN3 TO MEMORY ID 'ZZZDRN3'.
    EXPORT GV_ZZZDRS3 TO MEMORY ID 'ZZZDRS3'.
    CALL FUNCTION 'BAPI_PRODORDCONF_CREATE_TT'
      EXPORTING
        POST_WRONG_ENTRIES = '1'
      IMPORTING
        RETURN             = RETURN
      TABLES
        TIMETICKETS        = TIMETICKETS[]
        GOODSMOVEMENTS     = GOODSMOVEMENTS[]
        LINK_CONF_GOODSMOV = LINK_CONF_GOODSMOV[]
        DETAIL_RETURN      = DETAIL_RET[].
    IF RETURN-TYPE IS INITIAL .    "islem basarili
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          WAIT = 'X'.
      GT_ITAB-OK = 'X'.
      CLEAR GT_ITAB-CHK.
      GT_ITAB-ROWCOLOR = 'C510'.
      MODIFY GT_ITAB.
    ELSE.
      GT_ITAB-ROWCOLOR = 'C610'.
      CLEAR GT_ITAB-CHK.
      MODIFY GT_ITAB.
      CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
    ENDIF.
    LOOP AT DETAIL_RET.
      MOVE-CORRESPONDING DETAIL_RET TO DETAIL_RETURN.
      APPEND DETAIL_RETURN.
      GT_ITAB-MESSAGE = DETAIL_RET-MESSAGE.
      MODIFY GT_ITAB.
    ENDLOOP.
CALL SCREEN 300.
  ENDLOOP.
Edited by: OSMANBIYIK on Dec 21, 2010 7:40 AM

Similar Messages

  • BT 6500 answerphone - call screening not working

    Hi all,
    I wanted an answerphone that can be set to be un-obtrusive as possible, and completely silent when needed, so I went for the 6500 as it advertises a do not disturb feature:
    1 -  Do not disturb mode - this works, but is pretty cumbersome to enable / disable (menu, call control, <Pin Number>,incoming calls, do not disturb,On/off, Save ) so hardly conducive to easy acces / daily use. Dissapointed there is not a simple button control on the base station to turn this mode on or off (like the answerphone on/off button would have been ideal).
    2 - I tried to turn call screening off via the menu (Answer phone, settings, call screening, Off), but when the phone rings, the answerphone answers after 4 rings, and the answer message still plays out loudly, and then you can hear the caller leave their message. So call screening option doesnt appear to work?
    3 - When the caller hangs up, the answer phone base station plays "THANK YOU FOR CALLING" - seems very stupid and pointless thing to do, seeing that the caller cannot hear this message. To me it's just more needless noise, dissapointing, I wonder if it can be turned off?
    So I'm hoping that at least point 2 is just me not setting it up correctly? Has anyone else tried to turn off call screening on this phone? 
    Thanks,
    Simon.
    Solved!
    Go to Solution.

    So I found out a bit more....
    The "Call screening" option refers to the phone handset, not the base station! But there is a volume control on the base station, so you can turn the volume down to zero et voila! You dont hear the answerphone message or incoming calls, perfect!
    So I can also achieve pretty much what I wanted now without needing to fuss with the do not disturb option:
    1 - Base statio nvolume to zero
    2 - Turn off base station ringer (so have to rely only on handset ringer)
    3 - Handset has an easy access mute functio (press & hold *) - so easy to toggle the whole system on/off silent mode.
    So there are enough features, just, to achieve what I wanted to do.

  • CALLER ID not working for International incoming calls

    Hi,
    I've a strange issue where CALLER ID not working for International incoming calls, it shows INTERNATIONAL UNKNOWN NUMBER in the phone display, but the number shows correclty in Verizon Call assistant !!!
    Any clue?

    yashshankar wrote:
    Hi
    I recently  purschased an Online number but the caller id does not work for incoming calls.How do we resolve this problem?.
    Regards
    Yash
    You didn't mention what country your Online Number is in.  Not all of Skype's Online Numbers are eligible for use as Caller ID when calling telephones or sending SMS messages.  If your number is from one of these countries (Chile, Denmark, Estonia, Hong Kong, Poland, Sweden, the UK and the US), then it can be used this way.  Otherwise, you can use a mobile number from countries other than Japan or Mexico as Caller ID with Skype, after the number goes through a verification process where Skype sends SMS messages with codes to that number.
    To get to these settings, log into your Skype account here on the Skype web site using the "Account" link at the top of this page.  You'll see a screen that would include your current Caller ID settings, and a link to change that.  If your Online Number is from one of those countries I referenced above, just select it and you're done. 
    Hope that helps!
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly

    Hello, I'm having an issue with a LaserJet Pr0 200 color MFP M276nw Touch Screen not Working correctly. I have followed the instructions to reset the printer, but now am unable to select 'English' as my language because every time I select the 'English' option 'Spanish' is selected. I am then given two options to select 'Si' or 'No' both of which can not be selected on the touch screen?
    Anybody know of a way round this?

    Hi @dnhowes ,
    I see that you are having issues with the touch screen not working correctly. I will do my best to help you.
    Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation.
    Was it the Nvram reset back to factory settings that you tried or a hard reset?
    Try selecting the option on the display a little higher above the icon to see if that helps. Some touch screens are finicky.
    I find that on the Lab printers when I am selecting different menus.
    If the issue continues, please call our technical support at 800-474-6836 for further assistance. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • IPhone 4 touch screen not working

    iPhone 4 touch screen not working properly. Sometimes it activates icon itself. After updating to iOS 6.12, it stop working totally.

    Good Morning S.GOPINADHAN,
    I understand your iPhone screen is black and you are not able to turn it on.  The article below will explain what to do when your iPhone is not responsive.  I'll also include instructions on how to back up your iPhone when you are able to turn it on.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    https://support.apple.com/en-us/HT201412
    iCloud: Back up your iOS device to iCloud
    https://support.apple.com/kb/PH12520?locale=en_US
    Regards,
    - Judy

  • Caller id not working after syncing my iphone to my pc?

    caller id not working after syncing my iphone to my pc?

    Syncing with iTunes has nothing to do with this, especially when not syncing contacts with a supported address book app on your computer which very few Windows users seem to be inclined to do.
    Caller ID is not working in which way?

  • My iphone 6 connects to the car via bluetooth, the music works good, but the phone calles does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai and a Dodge rent car and get the same results.  I updated the last 8.0.2.

    My iphone 6 connects to the car via bluetooth, the music works good, but the phone calls does not work.  It looks like it is working but doesn't.  I have tried in my Hyundai Sonata and a Dodge Dart rent car and get the same results.  I updated the last 8.0.2.  It worked the first day i had the phone, and then i updated to Ios 8.0.2 and it quit working.
    Now when i get in the car, it acts like it is connected and makes the same call it was on after syncing to bluetooth, but it really isn't on a call.  This is happening on both cars.
    Does anyone know if this is the phone and i need to take it to Apple or if there is an issue that Apple is working on getting a fix for?
    My son in law has the exact same phone as me, we both got the on 10/6, he had a Dodge Dart and his is working via bluetooth.
    Someone HELP please, as i consider this a safety issue by not having my calls go to bluetooth.

    We had the same problem, but figure out the solution.
    You MUST have at least 1 song added to your ITUNE!  After you add a free song, then everything else should work as normal!
    Hope this helps!

  • Screen not working, says I need passcode to back up to PC and screen frozen

    Screen not working, stating I need a passcode to sync and back up to PC

    1st try the Restart and if need be try the reset
    Restart or reset your iPhone, iPad, or iPod touch
    https://support.apple.com/en-us/HT201559
    Best of Luck

  • Lenovo A1 - Touch screen not working after digitizer replacemen​t

    After dropping my tablet and breaking the digitzer, I ordered a replacement digitzer from a company in China. (It took about a month to get it) After watching this video, I was able to install my new digitizer and it finally looked new again....well at least the screen!
    But.....when I powered up my tablet, the touch screen wasn't working..... I emailed back and forth with the company and they told me to install drive program, and send me a link to a site with a video, this site may have contained more than the video, but it was all in Chinese and I couldn't figure it out even with Google Translate. So I started researching. I thought I would try and load ICS on it, I thought, "Whats the worst thing that could happen?" it wasn't much more than a brick at this point anyways. 
    I found this website that let me through installing ICS on it. I had absolutly no expectations...but IT WORKED!!!! MY TOUCH SCREEN IS NOW WORKING!!!! I COULDN'T BELIEVE IT!!!
    When I was researching for this problem, there was absolutly no posts anywhere for "Touch screen not working after new digitizer". So I wanted to share my experience.

    Yea you are correct.....it must be a hardware problem. You must contact service centre of Lenovo and get help from there.
    You can say thank you by pressing the star left to my post IF I HELPED YOU

  • Skype click to call is not working in Safari 6 wit...

    My Skype click-to call is not working on Safari 6 with OS X 10.7.4.  The number highlights, but when I click on the number, nothing happens. I do have Skype installed on the computer and it works fine. I am running Skype for the mac 5.8.0.1027 and skype extension for safari 2.1.0.10405. I have two other macs which are running OS X 10.6.8 and Safari 5.1.7 and the click to call (2.1.0.10405) works great on both of those. I can not get it to work on the mac running Lion. Any help? Thanks

    I reverted back to Safari 5.1.7 from Safari 6 and now Click To Call works.
    For anyone wondering how I did this, you can view instructions here:
    http://apple.stackexchange.com/posts/59342/revisions
    I am new to using Macs and was able to follow these simple instructions. Takes a while for Pacifist to install 5.1.7, but it's worth it to have Click To Call working now.
    You will not be able to do this if you have Mountain Lion as Mountain Lion requires Safari 6.
    Lastly, the next time you update your Mac and it asks if you want to upgrade to Safari 6, say NO. At least not until you see that a fix has been posted here in these forums by either Skype or Apple.
    P.S. I posted this reply using OSX 10.7.4 and Safari 5.1.7

  • After update to IOS 4.3.5 my Iphone incoming and out going calls is not working properly and I have to remove the SIM regulerly to conduct or receive a call

    after update to IOS 4.3.5 my Iphone incoming and out going calls is not working properly and I have to remove the SIM regulerly to conduct or receive a call
    It is not practicale to do this always any one faces the same problem

    There may be a problem with the SIM card. Get a new SIM card from your carrier - there should be no charge for a replacement.
    If no change with a new SIM card, the standard troubleshooting steps in order are:
    Power your iPhone off and on.
    An iPhone reset, which is done by pressing and holding the home button and the sleep/wake or on/off button simultaneously until you see the Apple logo and then release.
    Restore your iPhone with iTunes from your iPhone's backup.
    Restore your iPhone with iTunes as a new iPhone or not from your iPhone's backup.
    If no change after any of these steps in order, your iPhone has a hardware problem.

  • Caller display not worked since June 2014

    On 26/06/14 I reported a fault (VOL-**********) that the caller display function had stopped working following a thunderstorm in the area. According to the fault status this fault is showing as being corrected and closed on 02/07/14 when in fact the fault still exists. I tested the line using the BT test socket with a new BT2000 phone and this displayed ‘incoming call’ therefore my internal wiring is not part of the problem. I have also dialled the test code *#234# to check if the caller display service is available and confirmed that it is. I then tested the new BT2000 phone on the neighbour’s telephone line and this showed the caller ID for incoming calls, as did my other telephone as well; therefore none of the telephone handsets are at fault. Three times BT have informed me that the fault has been fixed and yet I still have no caller display. Reading through the forums it would appear that other people have encountered similar issues and that the problem is at the exchange, “An Openreach engineer discovered that the RS232 burst transferring the CLI number up the line was too weak and he then went down to the exchange to investigate. He then discovered that the fault lay in the ADSL device which lies between the analogue exchange equipment and the outgoing line”. 
    I’m surprised to see that BT are taking so long to trace a fault in their system last raised 5/8/2014 (VOL012-**********) and that they haven’t sent an engineer to the property or to the exchange to check the problem.
    My patience is wearing thin over this problem with my Caller Display not working as it started in mid June. I’m also becoming less enthusiastic about BT and find it harder to recommend them to others.
    My last message from BT, tells me that it should be back to normal on the 8 August. However, it is still not working. Their message that my phone should be back to normal now and if it isn’t report this to BT, is ridiculous. If an engineer had investigated what was causing the fault and found it, then he would have fixed it. However, either an engineer has not investigated the fault or BT is not competent in fixing their own service faults and makes these statements with crossed fingers?

    An engineer called yesterday and told me that he had been asked to test the line for a voice fault not a Caller Display fault. However, his testing revealed there is no line fault, CLI signal is strong and he was happy that the new BT2000 phone (bought after the lightning strike) is working properly. (This phone had also been tested on a neighbour’s phone line where it displayed the callers number). He also found that this same BT2000 phone on my line was not displaying the Caller’s number (CLI), but couldn’t offer any reason why.
    I conjectured with him that these tests must bring the problem down to a corrupted CLI signal which does not allow the phone to understand the phone number being sent.
    When the lightning struck the phone line back in June, it blew the telephone connection in the back of the Sky Box with a flash and bang (telephone cable now removed from the Sky box). It shorted the Openreach Faceplate (now replaced) so that the phones and broadband stopped working and it caused the phone to light up and react as it does when a call comes through.
    Now isn’t it possible that the lightning also travelled along the copper wire to the green cabinet just outside the house and damaged something there which is corrupting the CLI signal, but which does not not show up when the voice line is tested? If not, then there must be a problem further back in the infrastructure, possibly in the Exchange, that is causing a corrupted signal to be sent to my phone?
    He told me that another team would have to investigate the Caller Display fault as he was instructed to look into a voice issue and as a field engineer he was not able to investigate any problem that might be in the Exchange. I don’t know whether this Exchange Team would be able to investigate a problem in the Cabinet if nothing is found in the Exchange or can that only be done by a field engineer? He told me to contact BT again as he’d done all that he had been instructed to do and they would have to instigate a fault team to further investigate the problem.
    When all this is considered we have the basic problem that BT are unable to provide me with a Privacy and Caller Display Service that I have been paying for, because of a fault in their infrastructure. How much longer is it going to take before they correct the problem that’s been going on since June 2014?

  • Water damage to iphone screen not working

    I need to back up to icloud, but my touch screen not working.  Siri is working, i can text. Is there any other way to backup contacts to icloud without touch screen?

    UUsually when a phone gets wet you put it in a bag of uncooked rice for 5 to 7 days, but that doesn't guarantee that it will work.
    you can get an out of warrant iPhone at the Apple store.

  • 8500 All in One - touch screen not working

    One minute the touch screen with all it's functions was working fine and then, bam (!), the touch screen stopped working and I can't even use the one/off switch to power the unit off - it does not respond.  Funny thing is that the printer is still working from my computer so I can still send a print job via the wireless.   With the touch screen not working I can't use any function from the unit itself (copy a hard copy, fax a hard copy) and if the unit runs out of paper I have to unplug it to reboot since I can't hit the 'enter' on the touch screen once I've reloaded. 
    Bottom line --- nothing from the unit itself works.  Has a printer fairy locked me out or does this sound like a hardware error?  Thanks for any help ...
    Linda T

    Excellent.  Let me know how round 2 treats you.  The sad demise could have been due to a couple of things...as a side question, is the climate where you live especially dry right now?  I may request that our testers recheck how well we handle a static shock on the product if it is dry where you live. 
    Regards, CF
    I work for HP and hope to make your day Sproutastic!

  • Ipod touch screen not working even after resetting to factory specs

    ipod touch screen not working even after resetting to factory spec.  lock symbol appears at top

    That indicates you have a hardware problem. An appointment at the Genius Bar of an Apple store is in order.

Maybe you are looking for