AppleCare & not having a purchase date?

The MacBook I currently have was never actually purchased, it was from insurance when the old one got damaged. Therefore I don't have a purchase date or any proof of purchase when trying to register my AppleCare agreement. Have I just wasted £203 or is there a way around this? Any words of wisdom would be much appreciated! :-)

Thank you very much for your response, Partha. I very much appreciate it. In addition to your response, I have 3 things that I would like to be able to fully comprehend.
1) When there are no Purchase Orders for an item and demand exists that can’t be satisfied by On Hand – I would like the system to create Planned Orders on the date the demand is due and ignore the Lead Time variables. This is so the supplier knows the true date we need the item.
2) When there are Purchase Orders for an item and demand exists that can’t be satisfied by On Hand + Purchase Orders – I would like the system to suggest rescheduling the Purchase orders to meet the demand and release a Planned Order after rescheduling all of the PO if demand suggests it is required.
3) I need to understand how to query and release Purchase Orders that need to be rescheduled IN (I want to ignore ones that need to be rescheduled OUT for now) and release them to Purchasing for further processing.
If you could assist me with those 3 examples, I would greatly appreciate it. If you need me to supply you with additional info, current profile settings, lead time attribute settings, etc, please let me know. Thanks again for taking the time to respond to this post. I really do appreciate your time.
Thanks,
DJ

Similar Messages

  • Vendor schema group not appearing in purchasing data of Vendor sub range

    Hi Experts,
    I have created a vendor sub range and when maintaining the purchasing data, the vendor schema group field is not visible.
    Is there any specific settings reqd. after maintaining the sub-range.
    Please provide pointers!!!

    HI Sandeep,
    As i said this is not possible in stanadard SAP.
    Even when you try opening VSR specific Purchasing data, there you will NOT get vendor schema group.
    Reason is, Vendor Schema group will be maintained at Main vendor level. So irrespective of VSR, it will pick pricing procedure in the purchasiong Document.
    VSR:  In the vendor master, you can maintain different data for particular vendor sub-ranges, such as ordering addresses or terms of payment, for example.
    When creating a purchase order with a known vendor, different data is only determined if the vendor sub-range is entered in the initial screen.
    Hope this clears.
    Rgds
    Utsav

  • Copy of leading document(PO) not having the same data as created in SRM

    SRM5.0 Extended Classic Scenario
    I have created the SC and PO for that is created successfully as 700006304.
    Now when I am trying to create any SC after that, the leading document of EBP goes into error in process in follow on document block.
    All the successive PO 7000063041, 7000063042 are going into error in process and displaying another data in the backend with the creation of goods/receipt and invoice.When I try to go into that invoice it says that it doesnot exist.
    When I see in the backend found out that data that I have taken for creating the PO is not copied to ECC system , It displays some another data, may be fetching different PO data having confirmation and invoice detail which i have not done at the SRM side.
    As we know that the leading document of EBP (PO) is copied to the ECC system in ECS( Extended classic scenario) but in our case I am surprised that from where it is fetching the different data for the copy of leading document in backend.
    I have scheduled  the two background jobs too mentined below even then this problem is not corrected.
    1) BBP_GET_STATUS_2
    2) ZCLEAN_REQREQ_UP
    Kindly advice.
    Edited by: SAP jayoti on Jul 1, 2010 11:36 AM

    I have seen details in BBP_PD :-
    For first PO its displaying workflow status complete & Document Completed. Its fine.
    For the successive PO's  - Status is Transfer Failed (E.Sys). But workflow status is complete.
    I have checked the external number range at SRM and ECC side too.
    At SRM side ,Number range set up for PO
    From Number 7000000000 To Number 7999999999 Current Number 7000063059
    At ECC ,Number range set uo for PO
    No - 70, From Number 7000000000 To NUmber 7099999999 Current Number 'Blank'
    External munber range is set at ECC for SRM PO.
    There is no overlaps for the different document type PO range .
    Kindly Advice.
    Edited by: SAP jayoti on Jul 1, 2010 2:38 PM

  • How to generate data in BPS via function, not having any reference data?

    <b>Hi everybody,
    My approach was to use FM 'API_SEMBPS_SETDATA' but the modified values neighter appear in the layout nor were saved to the infocube after launching 'API_SEMBPS_POST'.</b>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/2e/260a8563b111d4b2ea0050dadfb23f/content.htm">Application Programming Interface (API)</a>
    <b>What do I have to take into consideration?
    Is there an other way to generate data in BPS?</b>
    Thanks in advance,
    Zeljko
    Here my findings from debugging it:
    In Step 1 FM reads data from planning level/layout correctly:
    Line     ROW     COL     VALUE     INPUT
    1     0001     0001     11     1
    2     0002     0001     0     1
    3     0003     0001     11     1
    4     0004     0001     11     1
    5     0005     0001     11     1
    6     0006     0001     0     1
    (Input = 1 indicates that Input is allowed in this cell)
    In Step 2 FM modifies the values in all lines to 1:
    Line     ROW     COL     VALUE     INPUT
    1     0001     0001     1     1
    2     0002     0001     1     1
    3     0003     0001     1     1
    4     0004     0001     1     1
    5     0005     0001     1     1
    6     0006     0001     1     1
    Finally the modification is imported to FM 'API_SEMBPS_SETDATA'.
    FUNCTION Z_IPS_BPS_GENERATE_DATA_INIT.
    *"*"Local Interface:
      DATA:  area      TYPE upc_y_area             VALUE 'ZIPM0001',
             plevel    LIKE upc_plevel-plevel      VALUE 'ZPOB0091',
             package   LIKE upc_package-ppackage   VALUE '0-ADHOC',
             layout    LIKE upp_param-param        VALUE 'ZPOL0002',
             read_only LIKE upp_ys_flags-read_only VALUE ' '.
      DATA:  res LIKE sy-subrc, res_mess TYPE bapiret2 OCCURS 0.
      DATA:  lt_head   TYPE upc_ys_api_head OCCURS 0,
             lt_col    TYPE upc_ys_api_col  OCCURS 0,
             lt_row    TYPE upc_ys_api_row  OCCURS 0,
             lt_data   TYPE upc_ys_api_data OCCURS 0,
             lt_data2  TYPE upc_ys_api_data OCCURS 0,
             ls_data   like upc_ys_api_data.
    * 1. reading data from planning level/layout
      CALL FUNCTION 'API_SEMBPS_GETDATA'
        EXPORTING
          i_area      = area
          i_plevel    = plevel
          i_package   = package
          i_layout    = layout
          i_read_only = read_only
        IMPORTING
          e_subrc     = res
        TABLES
          etk_head    = lt_head
          etk_row     = lt_row
          etk_col     = lt_col
          etk_data    = lt_data
          etk_return  = res_mess.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    * 2. modify values in lt_data to 1
      LOOP AT lt_data INTO ls_data .
        ls_data-value = '1'.
        APPEND ls_data TO lt_data2.
      ENDLOOP.
    * 3. set dummy values into planning layout/level
      CALL FUNCTION 'API_SEMBPS_SETDATA'
        EXPORTING
          i_area     = area
          i_plevel   = plevel
          i_package  = package
          i_layout   = layout
        IMPORTING
          e_subrc    = res
        TABLES
          itk_row    = lt_row
          itk_data   = lt_data2
          etk_return = res_mess.
      IF sy-subrc <> 0.
        RETURN.
      ENDIF.
    *CALL FUNCTION 'API_SEMBPS_POST'.
    ENDFUNCTION.

    Hi Vlad,
    I tried both alternatives:
    1. Write data in buffer only, not in database
    2. Write data in buffer and then writes from buffer to database
    How can I check or see the data in the buffer? I tried the following: After executing the FM I opened the layout but the numbers are still the same.

  • BI publisher report is not showing all the data

    Hi All,
    I have created a report using BI Publisher in R12. The report is not showing all the records.
    I have checked the result XML it is also not having all the data. My query returns 846 rows but my report only has 662 rows.
    what might be the issue.please give me some idea to resolve this issue.
    Thanks in advance.
    Regards,
    P.Kalidoss

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • Inventory - last purchase date

    This is my first post, so my apologies if all is not correct.
    We were recently taken over and the new owners are trying to put a realistic value on the stock and it has fallen to me to provide the information. I need to ascertain the age of the stock and could do this 2 ways if the information was available:
    1. Use the last purchase date to determine how long we have held the stock. Acceptable but the last purchase field in OITM is not the last purchase date. For items it is, for others it is the last stock transaction date and for the rest I have no idea what the date relates to.
    2. Use a last transaction date, if only SAP had one. Our old system had this date and it made life very simple.
    I can find dates for last issue, receipt and sale but not for production order transactions. If I could then I can get the information merging a few spreadsheets.
    A last transaction date must be stored somewhere, maybe in the financials?
    Any help would be gratefully received.
    Regards
    Stewart Clark
    We are using 2005 SP1 PL45.

    Stewart Clark,
    To expand on what Petr has mentioned most of the information you are looking for is available in SAP Business One.
    The Inventory posting list contains an entry for every inventory transaction that has been processed inclusing Goods Issue, Receipt, Delivery, Production, .....
    The table these values are stored is OINM (warehouse journal).  If you could manage using SQL you could query this table and get the details you need.
    Let me know if you need further assistance with anything to help you move forward
    Suda

  • HT2404 Already purchase and sign. Lost internet data...aaaahh... .error - "We could not complete your purchase.The product distribution file could not be verified. It may be damaged or was not signed".

    Already purchase and sign. Lost internet data...aaaahh... .error - "We could not complete your purchase.The product distribution file could not be verified. It may be damaged or was not signed".

    Update: i spoke to a very knowledgeable applecare representitive who walked me thrue the process, we were trying to figure out what exactly was preventing Mountain Lion from installing & (after a process of elimination) it turns out you need to be log in as an Admin to download it, we also made sure everything was up-to-date. Downloading Mountain Lion took about 40 minutes (with roadrunner high speed internet, DSL might be a bit slower) once it was downloaded the installation process was very intuititive with just a few clicks and about 35 minutes i had the latest Operating System.

  • I purchased an apple gift card, but i am not having any success adding the money to my itunes account or apple account so i can purchase music or apps, how can i do this

    I purchased an apple gift card, but i am not having any success adding the money to my itunes account or apple account so i can purchase music or apps, how can i do this

    If you bought an Apple gift card, then you cannot use it in the iTunes store.  You can only use it in the Apple store for hardware.
    You would need an iTunes gift card to buy anything in iTunes

  • Anyone know how to recover deleted note from IPhone5 without having to purchase software?

    I accidently deleted a note.  I tried recovering it from ITunes and was not able to do so..  Is there a way to recover it from my phone without having to purchase software?

    No.

  • Since downloading iOS 7, I have been having trouble purchasing music from iTunes Store. When ever I try to make a purchase I always get the message "Your account    is not valid in the US  store"

    Since downloading iOS 7, I have been having trouble purchasing music from iTunes Store. When ever I try to make a purchase I always get the message "Your account    is not valid in the US  store" As I am new at this I don't know what I can do to remove this problem.

    What country are you in ? If you aren't in the US and the address on your account isn't in the US then try going to the bottom of the Featured tab in the App Store app on your iPad and tap on your account id, tap on 'View Apple ID' on the popup and log into your account, and then select the Country/Region section and select your country.

  • Having problem purchasing credit on my apps.....giving me an error message that my purchase could not be completed  for assistance contact itune support

    having problem purchasing credit on my apps.....giving me an error message that my purchase could not be completed  for assistance contact itune support

    If you haven't already done so, then to do so as the message says and contact iTunes Support (these are user-to-user forums) :
    - go to http://www.apple.com/support/itunes/ww
    - click on your country's flag
    - click on the Contact Support at the bottom of the left-hand column
    - click on Contact iTunes Store Support on the right-hand side of the page
    - then Purchases, Billing & Redemption

  • I set up Raid on my Mac Mini Server and lost my Server software. It is not listed in my "purchased" apps. How can I get it w/o having to purchase it? Will my serial

    I set up Raid on my Mac Mini Server and lost my Server software. It is not listed in my "purchased" apps. How can I get it w/o having to purchase it? Will my serial # be enough to show it is a mini server and under warrantee be enough to get it back?

    If it's not listed in Purchases, check that it's hidden, and if so, unhide it > http://support.apple.com/kb/HT4928 After that, go to Purchases and download OS X Server.
    If you can't download it, contact with the Mac App Store support > http://www.apple.com/support/mac/app-store/contact

  • TS1424 I downloaded a song that I purchased from the ITunes store, but the song does not play properly.  How can I re-download the same song without having to purchase it a second time?

    I downloaded a song that I purchased from the ITunes store, but the song does not play properly.  How can I re-download the same song without having to purchase it a second time?

    I could not find an option to "report a problem".
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not playing properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • In which IT To Date is not allowed & not having more than one record

    Hi all,
    Could you please tell me "In which IT To Date is not allowed & not having more than one record ?"
    Thanks in advance
    Regards,
    Asiya

    Hi,
    Just go through IT0003 and see if it fulfills the requirements or not.
    Param

  • HT1311 Since resetting my apple id on my iphone 4s, My apps won't update. Can you please help as this is frustrating, not having my mobile up to date. Many Thanks.

    Since resetting my apple id, my iphone 4s will not update my apps
    I have downloaded apps but will not update the existing ones. I
    Have contacted apple for help but to no benefit. I'd appreciate any
    Help to get my apps up to date as it's frustrating not having my phone
    In proper working order.
    Many Thanks.

    Double tap the Home button to bring up the multi-tasking bar. Tap & hold any app shown until they all start to wiggle. Tap the red minus sign next to every app shown & remove them all from the multi-tasking bar. Tap the Home button when finished. Now, reset your phone: Press the Sleep/Wake button & Home button at the same time, keep pressing until you see the Apple logo, then release.
    Try now...same result?

Maybe you are looking for