Shopping cart problems with 7.6 (29)

I just installed Itunes 7.6 (29) and I can not view my shopping cart. I get a window that says the terms and conditions have changed. I put a check in (I have read and agree to the terms) and then press continue and it keeps jumping back to the same terms screen. I can not view my shopping cart. Anyone else have this problem?

This seems to be problem on the server end.
I tried to purchase with iTunes 7.4 and it came up with the new Terms and Conditions, so it is not limited to iTunes 7.6.
After logging out and quitting & restarting iTunes a few times it finally worked.
My guess is the iTunes store servers are being worked to death. These problems go away as the demand slows back to normal ( afew days).

Similar Messages

  • Items in the shopping cart appear with different price than in the catalog

    Hi All,
    We are running SRM 5.0 (Classic Scenario) with external catalogues.
    After selecting items from the external catalogue and transferring them to the shopping cart, the items appear with different price(the problem exists in the productive system)
    The strange thing is that there is no dependence or sequence between the differences. For example, in one shopping cart, one item is with correct price, the price of the other item is not correct (when I click on the icon which is  showing item details in the catalogue, the price is different than the one in the shopping cart). Sometimes the difference is significant, sometimes not - if the item price in the catalogue is 22.34 EUR, in the shopping cart is 21.22EUR or if the item is 45.62EUR in the shopping cart is 45.60 EUR. There is no logic.
    I tried to create a shopping cart in the support system, with the same items from this catalogue, and they are sent back in SRM with the correct prices.
    I traced all OCI parameters, sent from the supplier catalogue, and everything is correct.
    At the example given below the price in the shopping cart ordered in the productive system is 69.00CZK, and after that during the test the correct price of 73.870CZK has appeared.
    NEW_ITEM-DESCRIPTION==Durable-KeyClip-keytag%2C+black
    NEW_ITEM-MATNR==
    NEW_ITEM-MATGROUP==
    NEW_ITEM-QUANTITY==10
    NEW_ITEM-UNIT==EA
    NEW_ITEM-PRICE==73.870
    NEW_ITEM-PRICEUNIT==1
    NEW_ITEM-CURRENCY==CZK
    NEW_ITEM-NEW_ITEM-LEADTIME==1
    NEW_ITEM-VENDOR==
    NEW_ITEM-VENDORMAT==0176%2F1957001
    NEW_ITEM-MANUFACTCODE==
    NEW_ITEM-MANUFACTMAT==
    NEW_ITEM-CONTRACT==
    NEW_ITEM-CONTRACT_ITEM==
    NEW_ITEM-SERVICE==
    NEW_ITEM-EXT_QUOTE_ID==
    NEW_ITEM-EXT_QUOTE_ITEM==
    NEW_ITEM-EXT_PRODUCT_ID==23109
    NEW_ITEM-EXT_SCHEMA_TYPE==UNSPSC
    NEW_ITEM-EXT_CATEGORY_ID==55121504
    NEW_ITEM-LONGTEXT_1%3A132==Durable-KeyClip%0D%0Akeytag%2Cblack%0D%0A%0D%0A6pc
    I checked the error log in SLG1 for BBP_OCI, and no error message exists. In my opinion the problem can be in supplier system, because otherwise all items will be with wrong price. And at the moment, there are shopping carts in which all items are with the correct price!
    It is not something in the user profile, because in one shopping cart created by one user some items are correct, some of them not.
    I also checked with the supplier,  they said that they haven't change the price, recently.
    Has somebody of you met this problem?
    In the IMG-> Define External Web Services (Catalogs, Vendor Lists etc.) I have set all parameters for the standard call structure: the URL of the supplier, our company ID and password for their catalogue.
    In the Detail view for the catalogue, the following parameters are set
    u201CAdditional functions in the product catalogueu201D field:
    -     Display product data again in the catalogue
    -     Validate product data from SAP Enterprise Buyer
    -     Find supply sources
    u201CTechnical Settingsu201D field
    - Use Error Log
    Thanks,
    Desi

    That means that we are not maintaining material numbers in SRM, so there are no predefined price or info records for that materials in R/3 system, or in SRM.
    In the set up of external catalogues, validation of the price is set. Which means that, if a new shopping cart is created from already existing one, and meanwhile, a change of the price is done by the supplier in the catalogue, the new item price will be adopted in the shopping cart.
    No prices are maintained in the SRM system, everything is from the supplier catalogue.
    Desi

  • 2 Shopping Cart items with same item number

    Hi experts,
    We are facing a problem I never heared before : a shopping cart has been created with total of 51 items in SRM but some of them have the same item number in BBP_PD (2 items nr 16, 17...).
    For example, the 2 items nr 16 have a different Guid, only 1 entry in status section (I113 => OK), 2 entries in Partner section (vendor, requester, receiver, ship-to & site => OK), 2 entries in organization section, only 1 entry in item link section, 2 entries in concract section, 2 entries in account assignment section.
    Functionnally, these 2 items are not on the same article (even product categories are different).
    The problem now is that only one of the 2 items has been transfered to the backend, the other item has status "approved" but no "follow-on document created".
    The only thing diffrent from another SC is that this SC has been put on hold before being ordered (status I1009 is inactive).
    I didn't found any note on this problem, we are user SRM5.5 SP6 with classical scenario.
    I heared about a maximum item number in SC but I think in SRM5 there is no limitation, at least not less than 99 items.
    Thanks in advance for your help!
    Best regards,
    Benjamin

    Hi,
    please try to process the Held SB ,backend document will be created. since Creation of Shopping cart is in WEB processing of time take more normally .I think you can create a line item of
    999 line in SB because in backend SAP R/3 it will allow only 999 line items
    G.Ganesh Kumar

  • JSP Shopping Cart problem

    Hello,
    I'm writing a JSP page with a shopping cart so the user can add products to it, nfortunately the thing won't work.. I keep getting an NullPointerException.. I'm probably screwing up somewhere.. I would be very thankful if you could help me out..
    this is the code for the Shopping Cart Bean:
    [myCart.java]
    package myCart;
    import java.util.*;
    public class myCart implements java.io.Serializable{
         private Vector items;
    public String[] getItems(){
         String strTemp[] = new String[items.size()];
         items.copyInto(strTemp);
         return strTemp;
    public void setItems(Vector newItems){
         items=newItems;
    public void addItem(String newId){
         items.addElement(newId);
    This is the JSP page that I'm using:
    [myCart.jsp]
    <%@ page import="java.sql.*" %>
    <%@ page import="java.util.*" %>
    <jsp:useBean id="myCart" class="myCart.myCart" scope="session" />
    <%
    Connection con;
    try{
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:produkten");
    Statement stmt = con.createStatement();
         ResultSet rs = stmt.executeQuery("SELECT * FROM tblProdukten WHERE NR= "+request.getParameter("nr")+"");
    while (rs.next()) {
         String merk = rs.getString("MERK");
         long temp = rs.getLong("NR");
         String nr = Long.toString(temp);
    -----> myCart.addItem(nr);
         %>
         <BR>Nr     : <%=nr%>
         <BR>test :     <%=merk%>
         <HR>
    <% } %>
    <%
         con.close();
         catch(ClassNotFoundException cnfex)
              out.println("jdbc odbc driver not found // muzz");
         catch(SQLException sqlex)     
              out.println(sqlex);
    %>
    </TABLE>
    </BODY>
    </HTML>
    I think I probably(??) put the <myCart.addItem> in the wrong part of the code..??
    Greetings,
    Michael

    yes, I see, I forgot to initiate that, I'm still
    learning so please bare with me :)
    I now initiated the <items> vector like this:
    Vector items = new Vector();
    and added this:
    myCart.items.addItem(nr);
    But it still won't work correctly >>
    First error: Your Vector items is not a public variable. Therefore, outside classes will not be able to access it. No problem though, you have a method to take care of that. Instead of what you're doing, simply call
    myCart.addItem(nr)This calls the public method addItem(String) which accesses your private Vector items, and adds a string to the vector.
    Your second error should be taken care of. It is resulting from the fact that instead of calling the method addItem() from teh class instance, youre trying to access the Vector items first, and then trying to call addItem() from that... not only can you not access that variable, as stated above, but there is no method in Vector called addItems(). You could conceivably make items public, but I'd stick with what you've got.

  • ITunes Shopping Cart Problem

    Hello,
    I have the strangest issue with my shopping cart. I had some items that I was going to purchase but decided not too and left them in my cart. I went to remove them from my cart the other day and I can't! I recieve the following error when I clice the x next to each item:
    Could not remove an item from your cart. An Unknown error occurred (1011).
    There was an error in the iTunes Store. Please try again later.
    I did try again later, many times, to no avail. The items that are in my cart are no longer available in the iTunes store which I'm positive is contributing to the problem. Any help that someone could give would be appreciated!
    Thanks again.
    Dell   Windows XP Pro  

    This is a bit of a long shot, but it worked for another user, so it's worth a try. Go to the iTunes Store preferences, select "Buy and Download Using 1-Click", close the preferences window, reopen the preferences window and reselect "Buy and Download Using Shopping Cart". Then see if your Shopping Cart will clear.
    If that doesn't help, you'll need to contact the iTunes Music Store customer support department through the form at the bottom of this web page and explain the problem to them.
    Hope this helps.

  • New Customer Field in Shopping Cart (SRM) with default value

    We have requirement to add new Customer field in Shopping cart (SRM 4.0) and assign a default value to it.
    We have added the custom field and also assigned default value 'X' to it using BADI BBP_CUF_BADI_2 method MODIFY_OUTPUT. Problem we are facing is in case user changes the value and unchecks the custom field then it gets overwritten by default value once the shopping cart is saved. We have followed steps mentioned in link below in order to add custom field and populate it.
    /people/nanda.kondagunta/blog/2006/10/23/how-to-create-custom-fields-in-srm
    KR Jaideep,

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • Addign new customer field in Shopping cart SRM with default value

    We have requirement to add new Customer field in Shopping cart (SRM 4.0) and assign a default value to it.
    We have added the custom field and also assigned default value  'X' to it using BADI  BBP_CUF_BADI_2 method MODIFY_OUTPUT. Problem we are facing is in case user changes the value and unchecks the custom field then it gets overwritten by default value once the shopping cart is saved. We have followed steps mentioned in link below in order to add custom field and populate it.
    [/people/nanda.kondagunta/blog/2006/10/23/how-to-create-custom-fields-in-srm|/people/nanda.kondagunta/blog/2006/10/23/how-to-create-custom-fields-in-srm]
    KR Jaideep,

    Hi,
    In badi BBP_CUF_BADI_2, method MODIFY_OUTPUT,
    are you doing something like this?
    CASE IV_FIELDNAME.
      WHEN 'YOUR_CUSTOM_FIELD'.
        IF IV_VALUE IS INITIAL.
          MOVE 'YOUR_DEFAULT_VALUE' TO EV_VALUE.
        ENDIF.
    ENDCASE.
    Best regards.
    Edited by: Pablo Casamayor on Jul 23, 2009 12:32 PM

  • Shopping Cart creation with reference to Backend Contract

    Dear Experts,
    We are working in SRM 7.0 Classic Scenario.
    We have Backend Contract with document type PCTR which is available as Source of Suppliy when creating Shopping cart.
    I can use this contracts as source of supply but the issue is when the Shopping cart total quantity crosses the target value of the Contract quantity there was no error message as the quantity has exceeded the target quantity.
    The system is allowing me to create the Shopping cart but after approval the Shopping cart is showing the status as Approved and not creating PO or PR.
    Is there any configuration available to get the update if the quantity in SC crosses the Target quantity of the backend contract.
    It is also OK if the SC goes to Purchasers work list if the target quantity is crossed.
    Kindly reply to this thread immedeately.
    Regards,
    B.N.Karthikeyan.

    Hi
    target quantity or Target value ?
    what about your Contract value contract - target value or target quantity
    i aware value contract is throwing message if the sc exceeds the contract value.
    share your contract details.
    is it created in ECC or CCTR or GCTR . target quantity for materials or taget value for that material
    br
    Muthu

  • Tried the shopping cart trick, with mixed results...

    Since I have a recently-added false collection on my credit report, any hard pull is going to result in an automatic denial. I'm working on getting that removed, but I also want to get some more trade lines added to my credit reports. TU is currently 615 and EQ is 624.  I had been reading up on the shopping cart trick on these forums (to get credit accounts with soft pulls) and decided to try a few different ones. Here's how it went.  1. Express: I actually shop at this store fairly frequently, and buy my business casual clothes there. I put a couple of pairs of jeans in my cart, and went to checkout. I entered my information, and immediately got the preapproval popup. I applied and got a $500 credit line. Not bad. Plus I saved 20% on my jeans, and got an additional $20 off. Created my account on Comenity's website, and hit the LUV button: 7-10 day message.  2. Overstock.com: This is the one everyone says to try first, because they give generous limits and automatic CLI's. I decided to be adventurous and put a $1,200 patio set in my shopping cart, to see if that would have any effect on the credit line. I went to checkout, entered my details, got the popup and applied. This time it was only a $250 limit. I created an account on Comenity's website, and hit the LUV button, but no luck. Another 7-10 day message. I can't find anything on the site for $75 or less (30% of the limit) that I want to buy right now. I'm a bit disappointed in the limit, but we'll see how it goes over time. 3. Sportman's Guide: There is nothing I'd buy on this website, but since it's a VISA card, no need to bother. I put a couple of items in my cart, proceeded to the checkout, and got nothing. I tried several times yesterday, clearing my browser history each time. Still nothing. Just for giggles, I had my partner, who has amazing credit, try it as well, and still no popup. This might be one that you have to checkout as a member instead of a guest.  4. Walmart: Backed by Synchrony (amazon.com store card), not Comenity. Heard that they have the shopping cart trick as well, so I decided to try it: No luck. Couldn't get the popup to come up, and there's no way to check out as a guest.  5. Dillards: Another shopping cart trick that is not a Comenity card, but is backed by Wells Fargo. Added some stuff to the cart, went to check out, nothing. I think this might be because I used to be a Dillard's employee several years ago, and you had to get a Dillard's credit card to get your employee discount. They would give you a prepaid version of it if you couldn't qualify for the real deal, and I think somewhere in the system I still have that prepaid card.  6. Kirklands: Another Wells Fargo card. I couldn't get the popup to come up here either. Then again, I don't have a local store, so it's not all that important to me. So my takeaway was two new tradelines and a $750 bump in overall credit lines. It's better than nothing! 

     DeeBee78 wrote:
    Since I have a recently-added false collection on my credit report, any hard pull is going to result in an automatic denial. I'm working on getting that removed, but I also want to get some more trade lines added to my credit reports. TU is currently 615 and EQ is 624.  I had been reading up on the shopping cart trick on these forums (to get credit accounts with soft pulls) and decided to try a few different ones. Here's how it went.  1. Express: I actually shop at this store fairly frequently, and buy my business casual clothes there. I put a couple of pairs of jeans in my cart, and went to checkout. I entered my information, and immediately got the preapproval popup. I applied and got a $500 credit line. Not bad. Plus I saved 20% on my jeans, and got an additional $20 off. Created my account on Comenity's website, and hit the LUV button: 7-10 day message.  2. Overstock.com: This is the one everyone says to try first, because they give generous limits and automatic CLI's. I decided to be adventurous and put a $1,200 patio set in my shopping cart, to see if that would have any effect on the credit line. I went to checkout, entered my details, got the popup and applied. This time it was only a $250 limit. I created an account on Comenity's website, and hit the LUV button, but no luck. Another 7-10 day message. I can't find anything on the site for $75 or less (30% of the limit) that I want to buy right now. I'm a bit disappointed in the limit, but we'll see how it goes over time. 3. Sportman's Guide: There is nothing I'd buy on this website, but since it's a VISA card, no need to bother. I put a couple of items in my cart, proceeded to the checkout, and got nothing. I tried several times yesterday, clearing my browser history each time. Still nothing. Just for giggles, I had my partner, who has amazing credit, try it as well, and still no popup. This might be one that you have to checkout as a member instead of a guest.  4. Walmart: Backed by Synchrony (amazon.com store card), not Comenity. Heard that they have the shopping cart trick as well, so I decided to try it: No luck. Couldn't get the popup to come up, and there's no way to check out as a guest.  5. Dillards: Another shopping cart trick that is not a Comenity card, but is backed by Wells Fargo. Added some stuff to the cart, went to check out, nothing. I think this might be because I used to be a Dillard's employee several years ago, and you had to get a Dillard's credit card to get your employee discount. They would give you a prepaid version of it if you couldn't qualify for the real deal, and I think somewhere in the system I still have that prepaid card.  6. Kirklands: Another Wells Fargo card. I couldn't get the popup to come up here either. Then again, I don't have a local store, so it's not all that important to me. So my takeaway was two new tradelines and a $750 bump in overall credit lines. It's better than nothing!  $250 for Overstock, ouch that blows. Hope it grows if you decide to keep it. I tried the sc trick in November and I got the pop, entered my info and got approved for 2k. I registered for an online account right away and hit the luv button and got it increased to $2300. Haven't had much success getting an increase since. My DW tried it this week and she also got the pop up and got approved for $2000. She registered online and hit the luv button and got it bumped to $2200 hit it again and got the 7-10 day message. About Sportsman guide I have tried it constantly and never get the pop up and neither has my DW gotten the pop-up so it seems our reports don't fit their criteria because my sister tried it and she got the pop up and so did one of my uncles.

  • Shopping cart classic with reservation scenario?

    Dear Colleagues,
    I have created a shopping cart with internal goods (stock item). The shopping cart created a reservation in ERP MM system.
    Now, I try to create a confirmation against the shopping cart in SAP SRM system. However, the button 'confirmation' is not active for the shopping cart.
    If I try to create goods issue against the reservation in SAP MM (MB1A), the system is not allowing me to do so.
    Could you please help what is the sequence of activities in reservation scenario so that shopping cart can be completed from SRM side?
    Thanks in advance,
    Ranjan

    Version SRM ?sp ?
    give more details of the shopping cart? what about cost center like multiple cost center distribution .
    movement type in ECC for that reservation . what exactly you did on reservation.
    any errors you get while GI against that reservation.
    SRM just creates a follow on document in ECC for that shopping cart item since stock available and upon SRM configuration
    WHAT I STHE SHPPING CART item staus now?
    Does your reservation appear in the Stock/Requirements List MD04 ?
    give more clues for  others.
    Muthu

  • Shopping Cart Problem...plz help

    Hello Gurus,
    I have a Cart created by my user,
    the problem is the Cart is not moving to the backend to create
    the follow on document,i.e the PR,
    Checked the BBP_PD,it shows I111 as the status,
    i am unable to get where the exact problem is,
    The Approval is completed,
    can any 1 advise why this is stuck.
    where can i see the problem?
    (checked RZ20)no clues..:-(
    tried to Update by bbp_get_status_2...:-( no use...
    plz help..
    Points gaurenteed.
    Thanks

    Hi Arshad,
    You have to apply OSS notes to resolve this issue.Please find the relavent OSS notes :
    <b>Note 729967 - Shoppng cart:Status I1111,no follow-on docs->analysis report</b>
    <b>Note 949162 - Follow-on documents exist, status I1111 and I1113 active</b>
    <b>Note 854478 - Alert monitor: No longer possible to transfer shopping cart</b>
    <b>Note 728536 - Shopping cart: Follow-on docs => analysis-/correction report</b>
    <b>Note 900142 - BBP_PD_SC_RESUBMIT: All items set to status I1111</b>
    Hope the above notes will resolve your issue.
    Let me know once it gets resolved or in case of any further clarifications.
    Award points for suitable answers.
    Rgds,
    Teja

  • Shopping cart Issue with ( "Default settings:   Set values" ) link

    Hello SRM Gurus,
    I have an issue in shopping cart process:
    When creating a shopping cart, I am trying to change the u201CDelivery Address/Performanceu201D tab data through link u201CDefault settings:   Set valuesu201D, then add the items in to shopping cart and ordered. The change values are properly populating.  For example (Street/house number) .
    But when we re-creating the shopping cart,  the changed values are not populating  automatically (Itu2019s not updated in to master  table I guess) and  we need to  open the link u201CDefault settings:   Set valuesu201D  and  change the values again.
    So is this link (u201CDefault settings:   Set valuesu201D )  active only for that particular Shopping cart? Or is it missing to update the changed data in to master table?
    Because business wants, when changes happen through (u201CDefault settings:   Set valuesu201D) link, It should be update in to users master and when open next time the changed value should be populated.
    Is this standard behavior of shopping cart?
    Kindly let me know your comments.
    Thanks.
    Regards,
    Magesh.

    Hi Anubhav
    Thanks for the mail.
    Actually my issue is that,
    When creating new shopping cart, trying to change some values through "Default Settingsu201D will it be parentally stores the changed value into user master data? Or it is temporarily changes for that shopping cart alone?
    Because business wanted when changing the values in "Default Settingsu201D  the changed value should be appeared when creating shopping cart next time also..
    So I want to know that , What is the  standard behavior of u201Cdefault settingsu201D . Kindly let me know your experience.
    Thanks.
    Regards,
    Magesh Basavaraj.

  • Shopping cart created with one line item with qty 10  . PR need to be creat

    Hi gurus
    1SC created for  ONE LINE ITEM with QTY  10
    PR need to be created with  10 LINE ITEMS with Qty 1.
    Classic Scanario
    Advise .
    2.Also please let me know  what the batch jobs for  delta  ( user data or HR data) upload. To upload all user changed data synchonization job
    3.Also please let me know what is the batch job for  escalation emails for approvals
    SD

    close not answered

  • SRM Shopping Cart Problem in coding.please help

    Hi SAPGURUS,
    Please help me with this code,its fetching me no result in SRM for these conditions.This code is not changing anything and not giving the desired result.
    I am using BBP_DOC_SAVE_BADI
    Please see the doc for CONDITIONS
    [http://www.2shared.com/document/dXlymF0Y/rules.html]
    Please see the code here.
    [http://www.2shared.com/document/bMWByy1f/code.html]

    First you might want to describe what you are trying to achieve. In case you intend to change or validate the changed document, one common BADI to implement is BBP_DOC_CHANGE_BADI.

  • Shopping Cart created with delivery date outside factory calendar

    The user specified 13.08.2207 as the delivery date.  The Cart was approved and converted to a Purchase Requisition.  Status is now 'error in process' and of course no Requisition exists in table EBAN.  We cannot change the Cart because it is approved.  What other options do we have?

    Hi,
    Please check OSS note 814100.
    Also you can maintain calendar in SPRO or transation SCAL
    And you can also use BBP_DOC_CHECK badi to implement your own logic.
    Kind regards,
    Yann

Maybe you are looking for

  • Error in Sneak Preview BI JAVA SP9  instalation

    Hi All, I am getting following kid of error when try to install Sneak preview BI JAVA SP 9 version. INFO 2007-10-16 08:15:58 Copied file 'C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/inifile.xml' to 'C:/Program Files/sapinst_inst

  • HT201263 it shows this screen, but i dont want to restore because of losing data.  how do I stop it?

    Phone shows the symbol of usb cable with the ITunes symbol.  When I plug it in to the computer, it prompt to restore.  I dont want to restore and lose my photos and video.  How can I stop this?

  • Form builder is not opening in oracle linux

    Hi, I have installed Oracle EBS in enterprise linux 5.8 . when i am trying to open form builder with frmbld.sh following error occurs FRM-91113: Internal Error: cannot get default resource file name. FRM-10039: Unable to start up the Form Builder can

  • Password for mail viewing

    I've had my iPhone for a while and I was wondering if there is a way to require a password to view your e-mail? I don't like the idea of people looking at my mail when they are using my phone. It only seems logical that if I fail to give a password i

  • Button into the title of a JFrame

    How can I put Buttons or Icons (which can handle the mouse click) into the title bar of a JFrame? Is it possible anyway? Fast reply will be pleased. Bye Zafir