How to send in for logic board / HD repair?

Not long before my trial AppleCare expired, my MacBook Pro started doing very strange things, freezing, crashing, making grinding noises, etc. After reporting the results of Disk Utility and a hardware scan to AppleCare, they gave me a case number and said that I most likely needed both a logic board replacement and a hard drive replacement, and that if I had further trouble, to take it in for repair.
Well, the local Apple Store's Genius Bar has been entirely booked up for two days now, and as my AppleCare trial has expired (though I'm under warrantee), I can't call Apple about it.
Can I simply walk in and drop it off? Do I mail it to Apple myself? I've never had to send a machine in to Apple, but it's seemingly not as straightforward as I thought.... how long might I expect my turnaround time to be?
MacBook Pro, 2Ghz   Mac OS X (10.4.7) {dying fast}

... as my AppleCare trial has expired (though I'm under warrantee), I can't call Apple about it.
There's really nothing "trial" about it, although I can see how it could be perceived that way. What expired was your 90 days of free phone support for any issue with your MBP, but since, as you know, you still have a one year hardware warranty, you still have free phone support for warranted hardware issues.
See Is phone support and warranty service free? for details.
As Kappy indicates, it's a very straightforward process. If Apple determines that you do have a hardware defect, they'll arrange for a shipper to drop off a shipping box and take it away when you've packed your MBP, and then they'll ship it back to your door when the repair is complete.

Similar Messages

  • Documaker : how to send Email for test

    Hi Experts,
    I want to do the test sending email from Documaker.
    I can created the HTML file, but I can not figure out how to send mail for test.
    This question might be very basic contents, but please let me know.
    Thanks,

    You can find all of the Documaker documentation online at the following link: Insurance Documentation

  • Sent 1.83 for logic board replacement?

    I haven't seen anyone saying they sent in their 1.83 for a logic board replacement. I was wondering if they are putting the 2.0ghz version in the 1.83s when they are sent it or are they sending them back with 1.83s.
    Thanks in advance.

    Nope... I just sent in my 1.83 for repair, and the MLB is an identical 1.83. In my experience, Apple keeps well enough stock of models going back beyond the AppleCare 3-year mark, so you'll get exactly the model you had before. (I've spoken with people who have iPods going back 3-4 generations who send in for repair or exchange, and still receive the same model.)

  • Re : How to send CC for mail

    Hi
           I send mail for to address using the functional module ,SO_NEW_DOCUMENT_ATT_SEND_API1,  
    Now i have to send CC also. How to do this.
    Thanks
    Anto

    HI Antony
    try this code
    DATA: OBJPACK LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: OBJHEAD LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: OBJBIN LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: OBJTXT LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: RECLIST LIKE SOMLRECI1 OCCURS 5 WITH HEADER LINE.
    DATA: DOC_CHNG LIKE SODOCCHGI1.
    DATA: TAB_LINES LIKE SY-TABIX.
    DATA L_NUM(3).
    Creation of the document to be sent
    File Name
    DOC_CHNG-OBJ_NAME = 'SENDFILE'.
    Mail Subject
    DOC_CHNG-OBJ_DESCR = 'Delivered Mail'.
    Mail Contents
    OBJTXT = 'Object text'.
    APPEND OBJTXT.
    DESCRIBE TABLE OBJTXT LINES TAB_LINES.
    READ TABLE OBJTXT INDEX TAB_LINES.
    DOC_CHNG-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + STRLEN( OBJTXT ).
    Creation of the entry for the compressed document
    CLEAR OBJPACK-TRANSF_BIN.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 0.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'RAW'.
    APPEND OBJPACK.
    Creation of the document attachment
    LOOP AT ITAB_DATA.
    CONCATENATE ITAB_DATA-PRODUCTOR
    ITAB_DATA-VBELN
    ITAB_DATA-POSNR
    ITAB_DATA-MATNR INTO OBJBIN.
    APPEND OBJBIN.
    ENDLOOP.
    DESCRIBE TABLE OBJBIN LINES TAB_LINES.
    OBJHEAD = 'ORDERS'.
    APPEND OBJHEAD.
    Creation of the entry for the compressed attachment
    OBJPACK-TRANSF_BIN = 'X'.
    OBJPACK-HEAD_START = 1.
    OBJPACK-HEAD_NUM = 1.
    OBJPACK-BODY_START = 1.
    OBJPACK-BODY_NUM = TAB_LINES.
    OBJPACK-DOC_TYPE = 'TXT'.
    OBJPACK-OBJ_NAME = 'WEBSITE'.
    OBJPACK-OBJ_DESCR = 'ORDERS.TXT'.
    OBJPACK-DOC_SIZE = TAB_LINES * 255.
    APPEND OBJPACK.
    Completing the recipient list
    target recipent
    clear RECLIST.
    RECLIST-RECEIVER = 'xyz'.
    RECLIST-EXPRESS = 'X'.
    RECLIST-REC_TYPE = 'U'.
    APPEND RECLIST.
    copy recipents
    clear RECLIST.
    RECLIST-RECEIVER = 'xyz2'.
    RECLIST-EXPRESS = 'X'.
    RECLIST-REC_TYPE = 'U'.
    RECLIST-COPY = 'X'.
    APPEND RECLIST.
    Sending the document
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = DOC_CHNG
    TABLES
    PACKING_LIST = OBJPACK
    OBJECT_HEADER = OBJHEAD
    CONTENTS_BIN = OBJBIN
    CONTENTS_TXT = OBJTXT
    RECEIVERS = RECLIST
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    OPERATION_NO_AUTHORIZATION = 4
    OTHERS = 99.
    hope this helps
    regards
    Aakash Banga

  • How to send parameters for POST request in AJAX?

    hi friends,
    I am sunil. I am working on ajax.
    My problem is how to send post parameters in AJAX.
    For GET request. I am using bleow and it is workin fine.
    var url = "GetCurrencyRateController?currid="+CurrId+"&lncurrid="+LnCurrID;
    For POST Requert i am sending as
    var url = "GetCurrencyRateController";
    req.send("currid="+CurrId+",lncurrid="+LnCurrID);
    but it is not working

    Check out the Apache HttpClient package and look for how to use the MultipartPostMethod.
    Here is some sample code:
                HttpClient client = new HttpClient();
                MultipartPostMethod filePost = new MultipartPostMethod("http://localhost:8080/MyApp/Push");
                filePost.addParameter("subName", sub.subName);
                filePost.addParameter("serverName", sub.getServerName());
                File file = new File("C:/dataFile.zip");
                filePost.addParameter(file.getName(), file);
                int code = client.executeMethod(filePost);

  • Wating for Logic Board

    Hello. I'm in the Dominican Republic
    My iBook display went dead in march 2005. A pass thru the discussions site pointed me to the logic board problem. We only have one AASP in Santo Domingo and it took three months to get the spare, but when they put it in, that one came damaged directly from Apple, so the AASP sent for a new one right away. That was a year from now. They have given me every excuse in the book and keep making me promises. I miss my baby. HELP, what can I do?
    iBook G3 900, eMac G4 1.0   Mac OS X (10.4.7)  

    Unfortunately, 1-800 numbers don't work from outside the United States. You might be better off calling Apple Public Relations at (408) 974-2042 and then asking to talk to an "operator". The operator should be able to connect you with Apple Customer Relations from there. I've never seen anyone here post an actual phone number for Apple Latin America, or I'd offer that number. It's also not listed on Apple's regular contact list.
    -Doug

  • How do I get the logic board serialized?

    I had the logic board replaced a year ago in my iMac. Ive been having some problems sharing maps with my other mobile devices. Someone suggested to check to see if the logic board is serialized. Anyone know how to do this?

    Go to About this Mac in the Apple menu.
    Tap the version number twice. If you see a serial number, it has been set. If not, then take it to an Apple Store or Service center and have them fix it.

  • Sub: How to send idoc for IW31.

    Dear All,
    Content: My requirement is to send the idoc for maintanance order- IW31. I found the message type as IORDER. I am not able to use change pointer  IORDER is not matching, as i am not able to find the message type, when executing BD21 (for change pointer).
    Please let me know the procedure for sending idoc for IW31.

    This is what it worked for me, to create an INBOUND IDOC to transaction IW31:
    I converted BAPI_ALM_ORDER_MAINTAIN to an IDOC
    1) In transaction SWO1 copy model BUS2007A to ZBUS2007A (make sure set the status to implemented Edit->Change Release Status->Object type -> to implemented.
    2)In transaction BDBG, check Object type, Object ZBUS2007A, Method ORDERMAINTAIN
    you can check
    http://help.sap.com/saphelp_nw04/helpdata/en/78/21740f51ce11d189570000e829fbbd/content.htm
    I Put in Message type ZORDERMAIN
    IDoc Type ZORDERMAIN01
    the function name will be: ZIDOC_INPUT_ZORDERMAIN
    3) configure transaction BD51
    4) Configure transaction WE57
    5) Configure transaction WE42
    6) and Finally Transaction WE20
    In my case it worked, still I modified function ZIDOC_INPUT_ZORDERMAIN, and in  the call function to BAPI_ALM_ORDER_MAINTAIN I  commented the releationship tables.(They were giving me some errors)
    Hope this info will help someone.
    Regards

  • How interchangeable are slot loading logic boards

    A friend has a 400Mhz slot loader that is working fine and is in the process of getting a 600Mhz snow iMac with a powersupply problem. Is it possible to just swap the logic boards? They are going to have me do the swap so I need to know some stuff going in:
    Any voltage issues I should know about? I assume they are similar in shape but does one draw a different amount of power I'd need to deal with?
    Do the ports line up with the case in the same way and shape on both logic boards?
    And the VRAM is mounted on the logic board too right? So the 16Mb on the 600Mhz iMac travels with it on the logic board, correct?

    Langdon,
    Any voltage issues I should know about?
    The dangerous voltages are on the board in the top of the case (the brown one, PAV) and you'd have to stick a wet finger or metal probe through holes near the bottom to reach anything dangerous. That would also be with the machine plugged in and turned on.
    I assume they are similar in shape
    They are identical and the mounting screws and snap tabs are identical
    but does one draw a different amount of power I'd need to deal with?
    AFAIK they're identical. The power derives from the down converter and you'll move that with the logic board. The down comverter plugs into the logic board. It's the little sub board off to the side that has coils, capacitors and transformer looking thingies on it.
    Do the ports line up with the case in the same way and shape on both logic boards?
    They're identical.
    And the VRAM is mounted on the logic board too right? So the 16Mb on the 600Mhz iMac travels with it on the logic board, correct?
    Right it's hard to tell the difference without close inspection.
    Richard

  • How to obtain dmg for logic pro 9

    Hi
    I have a volume licence agreement for Logic Pro 9 that was purchased March 2012.
    When installing Logic Pro 9 on our iMac's we did so from the App Store. We have recently purchased some more iMac's and want to install Logic Pro 9 but do not have an installation disk / dmg file. I have checked the App Store but cannot see anything for Logic Pro 9, is it possible to download this?
    I should say that the new iMac's have been updated to OS X Mavericks 10.9.1!
    Regards
    David

    I thought that was where i would end up going :-)
    Thank you for your reply.

  • Can Logic Boards be Repaired?

    I have a failed early 2009 24inch 3.06 GHz with ATI 4850 512 MB graphics.
    The hard disk and all other parts are fine, and the machine only boots in safe mode.
    Everything has been tried, plus sending to an authorised Apple support service.
    I am informed that the Logic Board has failed and face a huge bill to have it replaced.
    My questions are as follows.
    1. What has failed?
    2. Can it be repaired?
    3. What is the Apple experience of this?
    I have noticed I am also not alone with this problem.
    Logic dictates if the Board has failed, a replacement will also fail.
    So what is the real fault, and what is the real repair of it?
    Or is this a fault that is too complicated for Apple to have a fix other than replace it and repeat the problem.

    The logic board is a printed circuit board with hundreds capacitors resistors and similar small components soldered onto the fine copper strip.
    Additionally there are sockets for RAM drives and CPUs, GPUs etc...
    One of the common issues with PCBs in general is solder bleed shorting as a result of heat build up- If this happens its terminal !
    Apple have diagnostics that can identify a fault and provide a reference number however frankly if the fault IS on the board (broken copper strip solder bleed or tiny resister for instant) its remains easier and more cost effective to replace the board than attempt to strip the board out - bench test find fault replace and reassemble.
    Replacing PCBs is industry practice.
    Those fault diagnostic results ARE analyzed by Apple for trends and to identify quality issues.
    Lowluster is quite wrong in saying that Apple are secretive if there is an identified design or engineering issue.
    In fact there have been such problems in their products and they HAVE had programs to replace those FREE and after normal warranties such as a problem with iBook logic boards faulty MacPro graphic cards,Macbook damaged bottom panels and battery swelling are some.

  • How to send 997 for a partner documents to multiple IDs?

    We are using EDI X12, and we are facing a challenge to send 997's to different IDs based on transaction type. The partner in this case sends documents to us from different ISA/GS IDs for different document types, so we are required to send 997s to the respective ISA/GS ID.
    In B2B agreements we can't define more than one agreement with the same document type so we are restricted to only one ISA/GS ID for all the documents acknowledgements.
    One other option I thought of was to defer the acknowledgements and let SOA composite handle it, but again as we can't specify the ISA/GS ID in the message header, we will be restricted to only one ISA/GS id which is again an issue.
    Does anyone have any ideas on how to achive this?
    Thanks
    Venkat

    Hi Venkat,
    If you are using 11g, please set the "Functional Ack internal properties" to true in Administration -> configuration screen
    If 10g, please set oracle.tip.b2b.edi.FAInternalProperties to true
    Regards,
    Dheeraj

  • How to send Equipment for repair

    Hi,
    i want to send a machine or euipment for repairing.how to do it..iam having inventory and purchase,finance modules..pl provide solution
    regards,
    venkat

    You might need the service module other wise you have to create a custom solution with the existing modules.
    Srini C

  • How to send invitation for meeting using calendar

    How can I send an invitation for a meeting using Calender? (Is there a similar way as in Outlook?)

    Hi joss23,
    Welcome to the Support Communities!
    The information below may be able to answer your questions about sending invitations using Calendar on your Mac:
    Calendar (Mavericks): Invite people to events
    http://support.apple.com/kb/PH14974
    Calendar (Mavericks): Invite people using the Address panel
    http://support.apple.com/kb/PH14992
    This is how you would do it at the www.icloud.com website:
    iCloud: Invite people to an event
    http://support.apple.com/kb/PH2682
    Cheers,
    - Judy

  • How to Send Emails for failed messages without using Alert

    Hi Experts,
    In our project, we need to trigger Emails for the failed messages in SXMB_MONI / Adapter Engine without using Alert Framewrok.
    Please let me know the below :
    1. Is this really possible to avoid Alert?
    2. If possible, then can we accomplish this by creating any PI Scenario? Please provide me some knowledge.
    3. Can we do it by writing any ABAP Code? If ABAP report can make it, then please provide me the code/ tables which will be needed. If any Blog/ Wiki is there, then please let me know the URLs. 
    Thanks,
    Nabendu.

    Hi Nabendu,
       If your customer asks for mails with specific text for message failure, tell that it is not possible. Because Message will go through several engines like Adapter Engine, Integration Engine, BPE. You can not generate mails for the message failures in all these areas with out standard alert mechanism. These are pure technical alerts which only PI people can understand, not business alerts.
    Example: assume your sender channel is unable to connect FTP Server, in this case you can not generate even though you will develop adapter module to generate alerts.
                            So for message validation only you can send mails not for message failures.
    thanks,
    madhu

Maybe you are looking for

  • Is there an equivalent statement in Java for this PL/SQL stmt?

    Hi, I want to know if there is an equivalent statement in java for this PL/SQL statement: IF strTok IN('COM-1','COM-2','COM-3') Then /* Do Something */ End If; I tried using : // This is giving me errors.. if (strTok.equals(("COM-1") || ("COM-2") ||

  • Before , after images not populating in cube

    Hi All, we have a data flow wherein the data from the dso is extracted delta wise to cube . Now for a particulat document , the doc did come to ods and then to cube . then in r/3 there a change to the document , this was then again extracted to ods a

  • Report Generation Toolkit - Excel Templates

    Hi,  I've created an Excel Template with a single formatted worksheet.  I need to generate a report with a varying number of worksheets but all based on the same template.  I tried it using the ADD WORKSHEET vi but this just adds an unformatted works

  • Interfaces concept in web dynpro

    Hi all Can anyone tell me a way of approaching the interfaces concept in web dynpro? Thanks n regards chaitanya

  • Provide developer a username and password to access the weblogic

    Hi, we have a weblogic server with a domain name soa_domain and a managed server instance name soa_server1. we have 5 developer working. Our aim is to give each developer a username and password to access the weblogic for developing and deploying the