I just submitted a repair/service request for my iPhone 5.

It says that I should take to the UPS to ship back.  Do I need to wait for an email back from APPLE to see where to send it?

I don't understand why you need to buy a new one every week. I've had my iPhnoe 5 for almost a year, never had a problem with the cable. In addition, your phone is can't be more than a year old. Therefore, unless you're damaging them, your cable is under warranty and Apple will replace it. Perhaps you should have tried actually availing yourself of Apple's customer service before complaining about it.
Best of luck.

Similar Messages

  • Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop?

    Something keeps trying to download on my mac and I don't know what it is. It is not in the apple store and just comes out nowhere and request for my password to download something and I don't know what it is. How to make this stop? It pops up every single day.

    Erica,
         I can, with 99.99% certainty, tell you that you are absolutely right in not wanting to download or install this "Helper," whatever it is (but we can be equally certain it would not "help" anything).
         I cannot comment as to Oglethorpe's recommendation of 'adwaremedic'; I am unfamiliar with it.  His links to the Apple discussion and support pages warrant your time and attention.
         It might be really simple -- Trying looking in your Downloads folder, trash anything that you don't know with certainty is something you want to keep, and then Secure Empty your Trash. Then remove the AdBlock extension, LastPass, and Web of Trust extensions to Safari and re-boot. If the issue goes away, still be extraordinarily careful in the future.
         Unfortunately, it's probably not going to be that simple to get rid of, in which case I'd then try the line by line editing in HT203987. 
         I have no further suggestions (other than a complete wipe and re-install...but that's a pain because trying to restore from Time Machine would simply ... restore the Mal).
       For the rest of us, please post when you find a solution.
         Best.
         BPW
      (Also, try to edit your second post -- black out your last name on the screenshot and re-post it for others)

  • Hi! Can someone help me with repair service address for Palm TX?

    Hi! Can someone help me with repair service address for Palm TX?
    This question was solved.
    View Solution.

    Good luck, and please let us know here how it works out for you.  We love knowing of current resources who can help solve people's problems with these older devices.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • Can I have multiple Serialized items on a service request for an "Installation" type of SR?

    Can I have multiple Serialized items on a service request for an "Installation" type of SR? We normally ship our machines out in batches of 6, 12, and 20 with installation by our Field Servie Techs. They would like to be able to open a single SR for the installation but would want to "Tag" the Machines for it. I am not sure the posibility of this?
    Thanks
    Jesse

    More info:
    How to add a Reviewer to a Review Activity through Orchestrator
    http://www.scsm.se/?p=895
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • I just got the new iOS5 update for the iPhone 3GS and I cannot receive messages because it says that the SMS is full. I deleted all my texts, but still cannot receive texts. Is there something I can do???, I cannot receive texts with the new iOS5 update

    Hi everyone, I just got the new iOS5 update for my iPhone 3GS. I receive a message saying that "Your SMS mailbox is full. New messages cannot be recieved until you delete some messages." I deleted all of my messages but still could not receive texts after restoring and restarting my phone. Can anything be done to remedy this??? Thanks!

    Apple is screwing the pooch on this one.  Need to call in and be vocal. 

  • TS4006 how can i cancel request for erasing iPhone?? i pressed erase an iphone instead of lost mode or display message =( i want to cancel this operation

    how can i cancel request for erasing iPhone?? i pressed erase an iphone instead of lost mode or display message =( i want to cancel this operation
    my lost iphone is still offline and erasing not started yet and i want to cancel this request!

    You can't, but after the erasure the activation lock will still be in place, so the device will be useless for anyone not knowing your apple-id and password.

  • Customer Service request for all mobile users

    To all cellular subscribers, first off, I wish to say I am a proud VZW user. Second, I want to say I am a customer service rep for a competitor carrier. Personally, a few of my coworkers and I believe there really isn't any competition. Thirdly, I want to remind everyone... When you get your bills and you don't understand them, or your service isn't working correctly, try to have your duckies in a row BEFORE you call customer service. We do not work for the company in question, we are a 3rd party outfit that is hired by the big guys (T-Mo, ATT, Sprint, Verizon....) to handle the calls coming in. We are trained, but remember, we are in a call center, some may be overseas, some may be in the US, but our paychecks do not come from the big guys, but our real bosses. Yes, you are customers, just like I am, but before you call us, put yourself in our place. Seriously, if you had to talk to a person over the phone who is yelling and calling you names, would you want to help them?
    So, my request to you is follow the Golden Rule: Do unto others as you would have others do unto you. Trust me, staying calm in the face of any hardship will go farther than flying off the handle.

    Yes, my coworker's sister works for the same company we work for  and she handles VZW calls. Also, just the other day, I helped someone cancel her contract with the competitor's company because she was just hired on as a rep with the same company we work for but in a different state. BTW, that new VZW customer/CSR says that the service for Verizon is WAY BETTER than with her old company 

  • How do I set-up my Dataset to pull data for Service Requests for a report

    I am using SQL Server 2012 Report Builder 3.0.
    I have my Data Source added - DWDataMart
    I want to build my Dataset to query and find a very specific item. Basically I am creating a daily report that will show what each "team" or Support Group (AD Object) Closed that day. He also wants the ability to open it by date, so if he misses
    a day he can get it later.
    I am totally new to this report building and only got this far by following a guide on a blog, but he used incident Reports in his example, and I do not know what objects to query for service requests.
    Thanks for any information you can provide.

    First, you will need to get the support group ID's in the warehouse before you can run reports for them.  I found that putting these queries in their own stored procedure was a better path.
    select IR.IncidentTierQueuesId, IR.IncidentTierQueuesValue
    from dbo.IncidentTierQueues as IR
    where IR.IncidentTierQueuesId != 0
    select SR.ServiceRequestSupportGroupId, SR.ServiceRequestSupportGroupValue
    from dbo.ServiceRequestSupportGroup as SR
    where sr.ServiceRequestSupportGroupId != 0
    Enter the the support group ID's into your work item query.
    Incident information is in dbo.IncidentDim and Service Requests are found in dbo.ServiceRequestDim.  Both incidents and service requests link to relationship data through dbo.WorkItemDim.  You can INNER JOIN on BaseManagedEntityId to link the incident
    or service request to the workitem entry and from there to the Assigned Users, Affected Users, or Affected Configuration Items.  Each relationship has it's own separate fact views.
    If you poke about in the tables, you will find it pretty easy to pull back all sorts of information from the data warehouse.

  • Create Service Request for Customer

    hi,
    can u pls tell me how to create Service Requset for Customer using BAPI??????
    regards
    Guru

    hi,
    thanks for ur response
    how to assign a service request to person who is suitable for service.
    (for example customer faced problem with our product so he will make a complaint on that product, i think this is service request ,  we need to resolve that problem  as we assign that service request to some other person who can able to solve .
    <b>Am i thinking in Correct way</b>)
    i need bapis to ful fill for the above senario
    regards
    Guru

  • Wish to create an Installation Service Request for Field Service with Multiple S/N

    We are using Oracle 12.1.3 with Teleservice, Field Service and Installed Base. We ship multiple Serial Numbers in a given order then need to dispatch our Field Service technicians in order to install them at the customers locations. I am having a hard time thinking or figuring out the best way to record this in Oracle EBS. Using a Service Request is difficult as there is not a way to list multiple Serial Numbers that we are aware of. Any help or suggestions would be very welcomed.
    Thanks
    Jesse

    You are not able to add user input while working "My Activities" or "My Requests" in the portal.  They would have to use the Console, and then in the SR they would be able to update the User Input if that is where you wanted to store it.  I would
    create your own Activity Class (Inherit from Manual Activity) and add the fields for what you want, IP, Hostname etc.. then on the portal when the user request the vm map those values to that activity which is assigned to your network team. when they open
    their activity in the console they can add the value for ip.  There are many ways you can do this. Which way do you think your team will be most likely to follow.

  • Service request for produce a product

    Hi experts,
    A similar company to us is asking us to produce one of its products, due to this kind of requests are received rarely we do not want to handle them through a production order   at our plant,  we want to handle them through a service request
    Can you tell me how to handle this kind of subcontracting through a service request?
    What transactions I have to use to créate, process, close, etc the service requisitions?
    Regards,
    Arnulfo Cordero Pradel

    Hi Arnulfo
    What exactly do you mean by service request? Is this a CS order? If it's the case, this is not the proper space to open your thread, since the SAP ERP Manufacturing - Production Planning (SAP PP) is related to production orders.
    BR
    Caetano

  • Self service - request for groups - OIM

    I would like to allow end-user to request groups from end-user interface?
    I would appreciate your guidance...
    Out of the box only resources are available for request.

    I can suggest you one approach to meet this req.
    1. Create a scheduler which will fetch all groups(findGroups()) in OIM and write the result to Lookup, say Lookup.OIM.Groups
    2. Create a Process Form with a a field as Groups and make the field type as lookup type and attach the lookup Lookup.OIM.Groups to this field.
    3. Create an adapter which would use addMemberUser() in groupOperations and adds the user to specific group.
    4. Create a RO, say "Provision Groups" then create a Process Def and attach the above created adapter to process task, say "Add User to OIM group".
    Have an approval process in place which allows users to select a group and request for approval. Once approval completes the task "Add User to OIM group" gets called which adds the user to specific group.
    It would be better if you show Groups field in child form which allows user to add more groups.
    This is one approach which i can think of as of now.
    lets see what experts say..

  • Service request question with iPhone 4

    Tody I requested a service on my iPhone 4 and did all the steps they required, and it went successfully. I took my iPhone to the UPS store and gave it to them while giving them my repair ID. Later I realized that I needed to change the return address so I called Apple and while I was doing this someone in the dispatch department cancelled my first service request. The representative that I had talked to was kind enough to create a new one for me and that worked out but I had already given my iPhone to the UPS store with the old repair ID. Should I be worried that I will not recieve my iPhone back now that the repair ID I used to give the iPhone to the UPS store has been cancelled? The representative told me that the dispatch department would take care of everything, but I am still worried that now I might not get my phone successfully returned...

    Hello Blowem,
    call Apple Support back maybe in the AM
    tomorrow to see if they have all of your
    info correct. Make sure you have your serial
    number and all of the UPS data on hand.
    Be patient and polite. I have never had anything
    but excellent support from Apple. Hope this holds
    true for you.
    Good Luck,
    A

  • Service request for replacement ipod

    my replacement ipod is stuttering and the battery is not retaining it's power
    my replacement ipod is still under the 90 day replacement ipod warranty but how do i put this down during the service order
    do i just put the date i recieved the ipod when it ask for the date of purchase or do i put down the original ipod's date of purchase?

    I would contact Apple and and fix the problem.
    Note that unless you purchased the optional AppleCare+ extended warranty a cracked screen is not covered by the warranty,
    even with AppleCare+ the exchange price is $29. Without it the exchange price depends upon the model and capacity of the iPod
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
      Apple - iPod Repair price

  • Self Service Requests for OIM Access Policies

    In the absence of a Role Management product, is there a good way to enable OIM End User Self Service to process requests and approvals for OIM Access Policies or OIM Groups?
    Any suggestions are appreciated!
    KC

    Ultimately the group membership will trigger an access policy. The access policy assignment is the goal, the group assignment is the typical method to assign the access policy to the user.
    When creating a dummy resource, I assume that resource would have a lookup on the form to select the group name. Is this what you are suggesting?
    KC

Maybe you are looking for