Got the new battery from the exchange program and.....

It doesn't seem to be any better than the "defective" battery that it was to replace. I mean, I can sit here and watch the indicator literally inch it's way down. Did I forget to rub the magic pixie dust onto the battery before I installed it?
What's up with this?
~B

Hi all,
I got my MBP last week. For the first six days it was running like something off a shovel and as sleek as the next mans. On day six I calibrated the battery according to the correct procedure (off a PDF from Apple).
Now ever since I did this, it has being doing these similar problems to what other have described here. It could be sitting comfortably, for example, at 53% and then BOOM, the screen is black and its died on me. I can't believe its a week old and I am having such fundamental problems as this. Not even two weeks old. How can this be resolved...in fact, CAN IT BE RESOLVED???

Similar Messages

  • For some reason , when i restore my iphone 4s to factory settings my headphones work when listening to music or youtube videos but when i backup my information onto it , it only comes out of one ear bud and i just got a new one from the apple store.

    for some reason , when i restore my iphone 4s to factory settings my headphones work when listening to music or youtube videos but when i backup my information onto it , it only comes out of one ear bud and i just got a new one from the apple store. my old iphone 4s audio jack was messed up but i just got a new one with my warranty , can anyone help me please.

    It doesn't matter what it is in your backup that's causing the problem because you can not selectively restore things from your backup. It's all or nothing.
    Set you phone up as a new device and start over.

  • Can you please how to retrive the new netprice from the new validity period

    Hi,
    When you display  a contract using ME33K and you click on  a item and view its conditions(shift+F6), there might be 2 validity periods for a given item.
    and each period will have different netprice in it.
    One will be old date before the PO was created and the other new one which has validity till 31.12.999..We want to fetch the netprice for the new validity date but currently the program is fetching this data from the table EKPO which is having the netprice of the old date only..
    Can you please how to retrive the new netprice from the new validity period

    Thank you so much.
    But I need more help specific to my problem.
    Let me describe the same.
    Suppose the PO creation date is 04.07.2007
    The conditions for an item in a contract for the PO are as follows;
    1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
    2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
    We need to always fetch the netprice from the validity period which always matches with the PO creatio date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
    But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
    This data is then used to fetch the get the netpr data from EKPO.
    <u>what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date</u>..
    Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
    FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
                                p_c_k_bstyp  TYPE ebstyp
                                p_p_bukrs    TYPE bukrs
                                p_p_ekorg    TYPE ekorg
                                p_p_ekgrp    TYPE bkgrp
    *Begin of Mod-004
                                fp_p_cernam   type ty_r_ernam
                               p_p_cernam   TYPE ernam
    *End of Mod-004
                                p_s_werks    LIKE s_werks[]
                                p_s_matnr    LIKE s_matnr[]
                                p_s_lifnr    LIKE s_lifnr[]
                                p_s_val_dt   LIKE s_val_dt[].
    *mod-002
        data : l_amount   type BAPICURR_D,   " Net price
               l_waers    TYPE waers,        " Currency Key
               l_eff_amount type BAPICURR_D. " Effective value
          data: l_v_netpr type bprei.
    *mod-002
    SELECT  ebeln
              bukrs
              bstyp
              aedat
              ernam
              lifnr
              zterm
              ekorg
              ekgrp
              waers
              wkurs
              <b>kdatb
              kdate</b>
              inco1
              INTO TABLE i_ekko
              FROM ekko
              WHERE    ebeln IN p_s_cebeln
                   AND bstyp EQ p_c_k_bstyp
                   AND bukrs EQ p_p_bukrs
                   AND ekorg EQ p_p_ekorg
                   AND ekgrp EQ p_p_ekgrp
    *Begin of Mod-004
                  AND ernam EQ p_p_cernam
                   AND ernam IN fp_p_cernam
    *End of Mod-004
                   AND lifnr IN p_s_lifnr
                   AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
      IF sy-subrc EQ 0.
    Populates internal table i_ekpo using EKPO table.
        SELECT   ebeln
                 ebelp
                 loekz
                 txz01
                 matnr
                 werks
                 ktmng
                 menge
                 meins
                 bprme
                 netpr
                 peinh
                 webaz
                 mwskz
                 uebto
                 untto
                 erekz
                 pstyp
                 knttp
                 repos
                 webre
                 konnr
                 ktpnr
                 ean11
                 effwr
                 xersy
                 aedat
                 prdat
                   INTO TABLE i_ekpo
                   FROM ekpo
                   FOR ALL ENTRIES IN i_ekko
                   WHERE ebeln = i_ekko-ebeln
                     and aedat = i_ekko-aedat
                     AND werks IN p_s_werks
                     AND matnr IN p_s_matnr.
    LOOP AT i_ekpo INTO rec_ekpo.
          MOVE rec_ekpo-ebeln  TO rec_contr-ebeln.
          MOVE rec_ekpo-ebelp  TO rec_contr-ebelp.
          MOVE rec_ekpo-loekz  TO rec_contr-loekz.
          MOVE rec_ekpo-txz01  TO rec_contr-txz01.
          MOVE rec_ekpo-matnr  TO rec_contr-matnr.
          MOVE rec_ekpo-werks  TO rec_contr-werks.
          MOVE rec_ekpo-ktmng  TO rec_contr-ktmng.
          MOVE rec_ekpo-menge  TO rec_contr-menge.
          MOVE rec_ekpo-meins  TO rec_contr-meins.
          MOVE rec_ekpo-bprme  TO rec_contr-bprme.
         MOVE rec_ekpo-netpr  TO rec_contr-netpr.
         move l_v_netpr        TO rec_contr-netpr.
    mod-002
          read table i_ekko into rec_ekko with key
                           ebeln = rec_ekpo-ebeln.
            l_waers =  rec_ekko-waers.
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
      EXPORTING
        currency              =  l_waers
        amount_internal       =  rec_contr-netpr
    IMPORTING
       AMOUNT_EXTERNAL       =  l_amount.
                rec_contr-netpr = l_amount.
    mod-002
          MOVE rec_ekpo-peinh  TO rec_contr-peinh.
          MOVE rec_ekpo-webaz  TO rec_contr-webaz.
          MOVE rec_ekpo-mwskz  TO rec_contr-mwskz.
          MOVE rec_ekpo-uebto  TO rec_contr-uebto.
          MOVE rec_ekpo-untto  TO rec_contr-untto.
          MOVE rec_ekpo-erekz  TO rec_contr-erekz.
          MOVE rec_ekpo-pstyp  TO rec_contr-pstyp.
          MOVE rec_ekpo-knttp  TO rec_contr-knttp.
          MOVE rec_ekpo-repos  TO rec_contr-repos.
          MOVE rec_ekpo-webre  TO rec_contr-webre.
          MOVE rec_ekpo-konnr  TO rec_contr-konnr.
          MOVE rec_ekpo-ktpnr  TO rec_contr-ktpnr.
          MOVE rec_ekpo-ean11  TO rec_contr-ean11.
          MOVE rec_ekpo-effwr  TO rec_contr-effwr.
    mod-002
          CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
       EXPORTING
          currency              =  l_waers
          amount_internal       =  rec_contr-effwr
       IMPORTING
          AMOUNT_EXTERNAL       =  l_eff_amount.
               rec_contr-effwr = l_eff_amount.
    *mod-002
          MOVE rec_ekpo-xersy  TO rec_contr-xersy.
          APPEND rec_contr TO i_contr.
          CLEAR: rec_ekpo,rec_contr.
    mod-002
          CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
    mod-002
        ENDLOOP.
    Modifying i_contr using i_ekko.
        SORT i_ekko BY ebeln.
        LOOP AT i_contr INTO rec_contr.
          READ TABLE i_ekko INTO rec_ekko WITH KEY
                              ebeln = rec_contr-ebeln
                              BINARY SEARCH.
          MOVE rec_ekko-bukrs  TO  rec_contr-bukrs.
          MOVE rec_ekko-bstyp  TO  rec_contr-bstyp.
          MOVE rec_ekko-aedat  TO  rec_contr-aedat.
          MOVE rec_ekko-ernam  TO  rec_contr-ernam.
          MOVE rec_ekko-lifnr  TO  rec_contr-lifnr.
          MOVE rec_ekko-zterm  TO  rec_contr-zterm.
          MOVE rec_ekko-ekorg  TO  rec_contr-ekorg.
          MOVE rec_ekko-ekgrp  TO  rec_contr-ekgrp.
          MOVE rec_ekko-waers  TO  rec_contr-waers.
          MOVE rec_ekko-wkurs  TO  rec_contr-wkurs.
          MOVE rec_ekko-kdatb  TO  rec_contr-kdatb.
          MOVE rec_ekko-kdate  TO  rec_contr-kdate.
          MOVE rec_ekko-inco1  TO  rec_contr-inco1.
          MODIFY i_contr FROM rec_contr.
        ENDLOOP.
      ENDIF.
      REFRESH: i_ekko,
               i_ekpo.
      CLEAR  : rec_ekko,
               rec_ekpo,
               rec_contr.
    ENDFORM.      "select_contracts
    Thanks.

  • I Have a Ipod Classic that all my music is on. After my previous computer crashed I have not had any of my music able to be transfered to the new computer from the Ipod. Is there a way to do this

    I Have a Ipod Classic that all my music is on.
    After my previous computer crashed I have not had any of my music able to be transfered to the new computer from the Ipod.
    Is there a way to do this?

    Unfortunately, unless you have a backup and can restore the iTunes library to the new computer, you are stuck with the current state of the iPod. This is one of those things that makes doing backups so important.
    Unless your music is all purchased from iTunes (not from your own CD's that you imported into iTunes and then downloaded to the iPod), you will be able to re-download all your iTunes store music back to the iPod when you install iTunes on the new computer. When you first attach the iPod to the new computer and new iTunes the first time it will tell you that this iPod is synced with another iTunes library and let you initialize the iPod (which will erase everything on the iPod - so don't do this unless you don't care about the stuff on the iPod now).
    I've seen 3rd party apps in the past that will let you copy music/content from iPod to computer and bypass iTunes, but not sure if they still exist as this was several years ago.
    good luck

  • If I have iWork 09, will I have to buy the new app from the mac store?

    I already have iWork 09 on my computers.  Will I have to buy the new app from the App Store?

    Larry,
    After you install Mavericks, run Software Update. You should be offered the updates in the normal update mode. No charge.
    Jerry

  • What do I do with my old CS4 when downloading the new versions from the cloud?

    What do I do with my old CS4 when downloading the new versions from the cloud?
    Do I just uninstall via the control panel on my computer?

    if you no longer need cs4, deactivate it (help>deactivate) and uninstall it.
    otherwise, leave it installed along with cc.  you can use both if you need.

  • Ive got a new iphone, backed up the old phone now when i go to restore the new one from the old it wants a backup password - i dont know it

    im trying to restore my new phone from the old phone backup but it asks for a backup password - ive tried everything but no luck with the password

    If you don't know the password to decrypt the backup, it can't be restored to any phone, including the old one.  You had to enable backup encryption and create password at some time in the past or maybe the backup is not from your old phone...

  • HT1483 can i buy a new battery from my apple store and will they fit it? UK

    Can I buy a new battery from my apple store in the UK and will they fit it?

    Welcome to the Apple Support Communities
    They will replace the battery. See > http://www.apple.com/support/ipod/service/prices/

  • Ok so my ipod screen cracked and i got a new one from the apple store but now its cracked again, but i only dropped it when i was sitting on the florr and it even had a case on it so i would like to know what happened and is it possible for me to  get a n

    is it possible for me to get a new one and also some of the metal on the back has been shedding why is that happening??

    LaurenW147 wrote:
    How much does a new one cost??? And this still doesnt answer my question of why it broke i had a screen protecter and a case on it it makes no sense to me
    Screen protectors are for protection against scratches, not for protection against the iPod being dropped. As to the case, you may wish to take this issue up with the case manufacturer, though again, most claim protection only against scratches and mars, not against being dropped. Either way, such damage is not covered by the devices. warranty.
    As to cost, Apple does not repair iPods, but will replace the entire iPod for a flat fee; see the Repair Pricing section here (as also mentioned by Limnos):
    http://www.apple.com/support/ipod/service/faq/
    There are independent iPod repair services that may be able to replace the screen for less. Do a web search for "ipod repair". Note, though, that if you elect to have the iPod serviced by an unauthorized shop, all further warranty will be void.
    Regards.

  • Problem in populating the new field from the extract structure. Kindly help

    my requirement a new text field is added on R/3 side and I have to populate
    the same field into BW.
    In the R/3 a new customization table 'AAA' is created which will have
    code - char 3 and
    text - char 30.
    The code field is added to a table BBB.
    The SAP standard generic data source exracts data from the table BBB where in the new code field have been added.
    Now I can the see the code field in the extract structure and not in the data source as the filed has selection value 'A' when checked in the ROOSFIELD table.
    To populate the value in BW, I will be creating a Generic Master Data text wherein I fetch the values from the table 'AAA' which the fields code and text  and replicate the same in BW.
    In the reporting level, the code InfoObject will be selected as display both KEY and TeXT, by doing I can populate the values of TEXT in the reporting.
    But to achieve the same I need to add the field code in the ODS but cannot do the same because I am not able to see the field code in the data source.
    Kindly let me know how to achieve the same.
    Also let me know if there is any alternate solution to populate the text field in BW.
    Any Inputs will be appreciated.
    Thanks

    > You should get the userdatasources bound to the
    > columns and assign the values of the recordset to
    > each one and after that use "setLineData" to write in
    > the matrix.
    >
    > hope it helps
    Hi all,
    i have created tables (non BO Tables) directly on the SQL-server and want to use recordset to populate a user form matrix.
    Is there any workaround to achieve this using non BO tables?
    Please provide some sample code since it is a very urgent matter.
    regards
    Daniel

  • I accidentally managed to delete the "New Tab" from the Navigation tool bar and I can't get it back. Can you help?

    I wanted to rearrange to Navigation toolbar and accidentally deleted the "Add new tab" from it. I now have the "Stop loading this page", "Reload current page" and "Home" buttons, but the new tab button is gone! I checked the "Customize" panel, but it's vanished from there too. All that's there is a "Open in a new window" tool. I'm aware that i can open a new tab just by clicking the plus next to the open tabs or Ctrl+T, but I'm used to doing it with the actual button, so I'd be grateful if you could help me.
    Thanks :)

    You can find the New Tab button showing as a '+' on the Tab bar.<br />
    You can open the Customize window and drag the New Tab button that shows as a plus sign (+) from the Tab bar on another toolbar and it will become a regular toolbar button like the New Tab button that you have in Firefox 3 versions.<br />
    If you can't find the New Tab button then click the "Restore Default Set" button in the Customize window.<br />
    If you want the New Tab button at the far right end of the Tab bar then place a flexible space to the left of it.<br />
    * New tab toolbar button: https://addons.mozilla.org/firefox/addon/new-tab-toolbar-button/<br />

  • So how is the new battery in the 17" doing?

    some of you have been playing with the newest hardware toy, could you post your findings about the 8hrs battery life? Do you get near it in normal use. For me normal/light use being: surfing, mailing, text, dvd writing and watching,...
    I mean no heavy PS3, FCP and video converting, and all the other things that I don't know of taking a lot of cpu power.
    THX, Johan

    When I calibrated my battery I ran about 6:50 before I was forced to shut down, I haven't run it down since.
    The 8 hours of life is based on very specific usage patterns that are rare. In over a decade I've never had a battery that lasts as long as the manufacturers claims, I simply don't work that way.
    My expectations when Apple announced an 8 hour battery was that I'd probably see 5:30-6:30 hours from it. Thus far I'm getting the high end of that range and a bit more so I'm quite happy.

  • HT6114 Hello, I just updated from os 10.7.2 to os 10.9.2 and now I can't print to my HP 8600 plus printer.  I've downloaded the new driver from the hp site and still no printing.

    help!

    Did you run the installer for the driver from the downloads folder?
    Is the printer wifi or wired?
    Are you certain the printer has joined the wifi network if its wireless?
    If you go to sys prefs and the print and scan page is the printer red or green lit?

  • Please help. I need to register a new itouch for my daughter but confused about apple id's and getting all her stuff transferred to the new itouch from the old one. Plus I want her to have her own apple Id

    My daughter has an old itouch, she uses my apple I'd. I just got her a new I touch, and want to register it, but give her her own apple Id. I just backed up or synced her old itouch to the computer and now I am setting up her new one. If I give her a new apple Id will she then loose all her apps and songs from her old itouch? Please help!! I thought it was supposed to say something like restore from back up or something like that? Maybe that is a next step after I give her her own apple id?

    https://register.apple.com/cgi-bin/WebObjects/GlobaliReg.woa [register an Apple Product]
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/wa/createAppleIdForIK B?localang=en_US&path=%2F%2Findex.jspa [create new apple id]
    You must be logged in to register an Apple Product
    Message was edited by: michael08081

  • I have a new iphone 5 and need to transfer my apps to the new phone from the icloud back up HELP

    How do I pull in my apps to my new 5.  I can see the list on my old phone.  there is a list of apps I paid for and would like to keep.  the icloud use to be so easy, what the heck happend

    Quite a simple a process..
    You can use either iCloud or iTunes
    Just follow this :http://support.apple.com/kb/HT2109

Maybe you are looking for

  • Everything saved in PAGES has disappeared!! Help!

    everything i PAGES saved has disappeared!! Help!!"

  • VCR to DVD recording

    I have a bunch of old VCRs that I'd like to put onto DVD. does anyone know how to wire a VCR to a DVD-R to do this? Can it be done? Can you hook a DVD-R to a computer and do the same. thanks

  • Editing flash video player templates

    Hi! I am having trouble creating editable Video player Templates in Flash Pro. cs5 and Flash Catalyst. By editable I mean, other users can edit the video templates and upload and play  their videos with it. Can anyone help me please?! Thanks!

  • Any way to avoid absolute path names in property files?

    I would like to create property files that only rely on relative positions of files. Is there any way to accomplish this? It would be nice if the property file values supported property substitution, eg. weblogic.ejb.deploy=%weblogic.system.home%/cla

  • MSI R9 270X Hawk - Twin Fan question

    Hello everyone! So I noticed this problem a few days ago when I change my PC from the floor to the desk, but after lots of research I manage to collect some good and bad info but I'm not sure if its right. I have a R9 270x Hawk 1 year old, and when I