Help on Shopping Cart Upload Program

Hi All,
I am trying develop a program for uploading Shopping Carts from EXCEL Spread Sheet.
I have gone through the following thread. But still I am facing the problems:
/message/3082168#3082168 [original link is broken]
Procedure 1: I developed program with 'BBP_PD_SC_CREATE_EXTERNAL', I got the following erros
Shopping Cart Upload Program
00001 E 008
No account assignment exists. Enter an account assignment
                     000000
00001 E 047
Please specify Account Assignment by selecting "Known" radio button for
                     000000 Please specify Account Assignment by selecting "Known" radio button for
00001 E 247
Plant for follow-on document missing
                     000000
Procedure 2: I used BBP_PD_SC_CREATE. I am getting the following Errors:
Shopping Cart Upload Program
A
Interface data contains errors
A
Interface data contains errors
A
Interface data contains errors
A
No data found
A
No data found
A
The document does not exist. Check entries
A
Incorrect interface data for set PDDEP in method C
A
Incorrect interface data for set PDDYN in method C
A
Incorrect interface data for set PDFRT in method C
A
Incorrect interface data for set PDHCF in method C
A
Incorrect interface data for set PDORG in method C
A
Incorrect interface data for set PDTAX in method C
A
Incorrect interface data for set PDTOL in method C
A
Incorrect interface data for set PDWGT in method C
E
Enter at least one item or one limit
Procedure 1 Sample Program:
DATA: i_basket        TYPE TABLE OF bbp_basket_ext_device,
      i_basket_back   TYPE TABLE OF bbp_basket_back,
      i_basket_errors TYPE TABLE OF bbp_oci_errors.
DATA: w_basket        TYPE bbp_basket_ext_device,
      w_basket_back   TYPE bbp_basket_back,
      w_basket_errors TYPE bbp_oci_errors.
PARAMETERS: p_user TYPE sy-uname DEFAULT 'REQUESTER'.
CLEAR w_basket.
w_basket-basket_name = 'Test Shopping Cart'.
w_basket-line = '00001'.
w_basket-description = 'Mat Desc New'.
w_basket-quantity = 1.
w_basket-unit = 'EA'.
w_basket-price = 10.
w_basket-priceunit = 1.
w_basket-currency = 'USD'.
w_basket-vendor = '0000301300'.
w_basket-category_id = 'L03621101'.
APPEND w_basket TO i_basket.
CALL FUNCTION 'BBP_PD_SC_CREATE_EXTERNAL'
  EXPORTING
    user_name     = p_user
  TABLES
    basket        = i_basket
    basket_back   = i_basket_back
    basket_errors = i_basket_errors
  EXCEPTIONS
    not_saved     = 1
    OTHERS        = 2.
IF sy-subrc EQ 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
          WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ENDIF.
LOOP AT i_basket_back INTO w_basket_back.
  WRITE:/ w_basket_back-basket, w_basket_back-basket_number.
ENDLOOP.
LOOP AT  i_basket_errors INTO w_basket_errors.
  WRITE:/ w_basket_errors-line,
          w_basket_errors-type,
          w_basket_errors-code,
          w_basket_errors-message,
          w_basket_errors-log_no,
          w_basket_errors-log_msg_no,
          w_basket_errors-message_v1,
          w_basket_errors-message_v2,
          w_basket_errors-message_v3,
          w_basket_errors-message_v4.
ENDLOOP.
Procedure 2 Sample Program:
DATA: v_header_guid  TYPE crmd_orderadm_h-guid,
      v_item_guid    TYPE crmd_orderadm_h-guid,
      v_account_guid TYPE crmd_orderadm_h-guid,
      v_partner_guid TYPE crmd_orderadm_h-guid,
      v_orgdata_guid TYPE crmd_orderadm_h-guid.
DATA: i_messages TYPE TABLE OF bbp_pds_messages,
      i_item     TYPE TABLE OF bbp_pds_sc_item_d,
      i_account  TYPE TABLE OF bbp_pds_acc,
      i_partner  TYPE TABLE OF bbp_pds_partner,
      i_orgdata  TYPE TABLE OF bbp_pds_org.
DATA: w_header   TYPE bbp_pds_sc_header_ic,
      w_e_header TYPE bbp_pds_sc_header_d,
      w_messages TYPE bbp_pds_messages,
      w_item     TYPE bbp_pds_sc_item_d,
      w_account  TYPE bbp_pds_acc,
      w_partner  TYPE bbp_pds_partner,
      w_orgdata  TYPE bbp_pds_org.
CLEAR i_messages.
v_header_guid  = 1.
v_item_guid = 2.
v_account_guid = 3.
v_partner_guid = 4.
v_orgdata_guid = 5.
*header-guid = 1.
*item-parent = 1.
*item-guid = 2.
*accounting-guid = 3.
*accounting-p_guid = item-guid.
*partner-partner_guid = 4.
*partner-p_guid = item-guid.
*organization-guid = 5.
*organization-p_guid = item-guid.
*I_HEADER
CLEAR w_header.
w_header-guid = v_header_guid.
w_header-object_id  = 'BUS2121'.
w_header-description = 'Test SC Upload'.
w_header-currency = 'GBP'.
w_header-process_type = 'SHC'.
w_header-posting_date = sy-datum.
*I_ITEM
* DELIV_DATE, PRODUCT_TYPE, LOGSYS_FI, BE_CO_CODE.
CLEAR w_item.
w_item-guid = v_item_guid.
w_item-parent = v_header_guid.
w_item-number_int = '0000000001'.
w_item-number_ext = '0000000000'.
w_item-product = '45ACB1298F870099000000000A8E0327'.
w_item-description = 'Lay Main <=180'.
w_item-category = 'FC888C591C4CFC4081AE49F48750CBAB'.
w_item-category_id = 'L03621101'.
w_item-ext_quote_item = '0000000000'.
w_item-quantity = 1.
w_item-unit = 'EA'.
w_item-ordered_prod = '/EC_1A001'.
w_item-price = 2.
w_item-price_unit = 1.
w_item-gross_price = 2.
w_item-currency = 'USD'.
w_item-del_datcat = 1.
w_item-deliv_date = sy-datum.
w_item-product_type = '01'.
w_item-logsys_fi = 'DEVCLNT100'.
w_item-be_log_system = 'SRDCLNT100'.
*w_item-be_stge_loc = 'MAIN'.
w_item-be_plant = '1020'.
*w_item-be_move_type = '281'.
w_item-be_pur_group = '50002754'.
w_item-be_pur_org = '50000040'.
w_item-be_co_code = '1020'.
w_item-be_doc_type = 'ECPO'.
APPEND w_item TO i_item.
*I_ACCOUNT
CLEAR w_account.
w_account-guid = v_account_guid.
w_account-p_guid = v_item_guid.
w_account-distr_perc = 100.
w_account-acc_no = '0001'.
w_account-acc_cat = 'OR'.
*w_account-SRC_GUID 00000000000000000000000000000000
w_account-g_l_acct = '0000621101'.
*w_account-BUS_AREA VTRS
w_account-cost_ctr = ' 0000012061'.
w_account-sdoc_item = '000000'.
w_account-sched_line = '0000'.
w_account-co_area = 'EXEL'.
*w_account-profit_ctr = 'NM01'.
*w_account-PROF_SEGM 0000000000
*w_account-CMMT_ITEM 500411060
*w_account-FUNDS_CTR 6589
APPEND w_account TO i_account.
*I_PARTNER
CLEAR w_partner.
w_partner-partner_guid = v_partner_guid.
w_partner-p_guid  = v_item_guid.
w_partner-partner_fct = '00000016'.
w_partner-partner_no = '48ED292BF5193C52E1000000AC1D061F'.
w_partner-addr_type = '3'.
w_partner-addr_origin = 'A'.
w_partner-addr_no = '0000011078'.
w_partner-partner_id = '0000000941'.
APPEND w_partner TO i_partner.
CLEAR v_partner_guid.
CLEAR w_partner.
w_partner-partner_guid = v_partner_guid.
w_partner-p_guid  = v_item_guid.
w_partner-partner_fct = '00000020'.
w_partner-partner_no = '4896D1636F351467E1000000AC1D061F'.
w_partner-addr_type = '3'.
w_partner-addr_origin = 'A'.
w_partner-addr_no = '0000011078'.
w_partner-partner_id = '0000000941'.
APPEND w_partner TO i_partner.
CLEAR v_partner_guid.
CLEAR w_partner.
w_partner-partner_guid = v_partner_guid.
w_partner-p_guid  = v_item_guid.
w_partner-partner_fct = '00000027'.
w_partner-partner_no = 'B106B75848BC9B4584C8A1C1EB89EC94'.
w_partner-addr_type = '1'.
w_partner-addr_origin = 'B'.
w_partner-addr_no = '0000015958'.
w_partner-partner_id = '0000000915'.
APPEND w_partner TO i_partner.
*I_ORGDATA
CLEAR w_orgdata.
w_orgdata-guid = v_orgdata_guid.
w_orgdata-p_guid  = v_item_guid.
w_orgdata-proc_org_resp_id = '50002754'.
w_orgdata-proc_group_id = '50002754'.
w_orgdata-proc_org_id = '50000040'.
APPEND w_orgdata TO i_orgdata.
CALL FUNCTION 'BBP_PD_SC_CREATE'
  EXPORTING
    i_ref_guid = v_header_guid
    i_park     = 'X'
    i_save     = 'X'
    i_header   = w_header
  IMPORTING
    e_header   = w_e_header
  TABLES
    i_item     = i_item
    i_account  = i_account
    i_partner  = i_partner
    i_orgdata  = i_orgdata
    e_messages = i_messages.
LOOP AT i_messages INTO w_messages .
  WRITE:/ w_messages-msgty,
*  w_messages-msgid,
*  w_messages-msgno,
  w_messages-message
*  w_messages-msgv1,
*  w_messages-msgv2,
*  w_messages-msgv3,
*  w_messages-msgv4
ENDLOOP
Thanks a lot in advance to help me out this.
Please send if you have code to complete this to sudarsan.srm at gmail (gmail id - sudarsan.srm)
Best Regards,
Sudarsan

Hi All,
I forgot to mention SRM Version. I am working on SRM 4.0.
Thanks,
Best Regards,
Sudarsan

Similar Messages

  • Error in Shopping Cart Upload from Portal Using Excel

    Dear All ,
                      I am facing problem when i try to upload excel file for creating Shopping cart from Portal . For doing this i have created a transaction from SRM r/3 and using Transaction i view i published the tcode on portal . But when i try to upload a excel file using the transaction i am getting a Exception UPLOAD_OLE . For uploading excel we copied the Fm ALSM_EXCEL_TO_INTERNAL_TABLE . Its working fine in SRM R/3 environment.but facing issue on portal . Please help us out on this .
    Regards
    Shankar

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • How to Disable/Customize Search Help in Shopping Cart tables?

    Hi,
    Is there a way to disable/customize the search helps associated in a field within the Shopping Cart detail/items table? Eg. G/L Account field. I already tried disabling the Input Help in the Attribute associated with the field in the COMPONENTCONTROLLER but the seach help is still showing up.
    Please advise.

    Hello again,
    Prasanna is right: the easiest way to change the search help for certain fields is to use the WD-Exits, in this case use of the WDDOMODIFYVIEW exit by creating an enhancement implementation.
    Here can dynamically change the help-value for certain fields. I will give you a sample for accounting field G-L-Account:
    METHOD pst4es1711jmkl7v3y2nb6isgkme . "Exit of WDDOMODIFYVIEW (in ZENH_ACCT......
    data .....
    *--- set value_help
        lo_node1       = wd_context->get_child_node( 'COMP_CONTEXT' ).
        lo_node2       = lo_node1->get_child_node( 'ACCOUNT_DETAIL' ).
        lo_node_info   ?= lo_node2->get_node_info( ).
        CALL METHOD lo_node_info->set_attribute_value_help
          EXPORTING
            name            = 'G_L_ACCT'
            value_help_mode = if_wd_context_node_info=>c_value_help_mode-application_defined
            value_help      = 'USG_ACCTF4'.
    Hope this will satisfy your request. Have success!
    Regards
    Joe

  • How to put search help for shopping cart fields.

    Hello Gurus,
    I need to put search help for some of the fields in shopping cart. Pls let me know do we have any standard way with out abap work. pls suggest me how to proceed.
    Thanks,
    kamal

    Check out the field and do a mapping od the same in se11, ie field and the table from which you want to search

  • Shopping Cart Upload to SRM5.0

    Hi All,
    We want to upload existing shopping carts with history from EBP 3.0 to SRM5.0 in classic scenario. Any idea how to go ahead about this?
    BR
    Akash

    Hi
    Please go through these link->
    <b>/message/3082168#3082168 [original link is broken]</b>
    Regards
    - Atul

  • ******Need help on shopping cart javaBean code*******

    Compiling the following code outputs the error that the javaBean curItem does not exist. However, my other code depends on a javaBean curItem. I don't understand why I cannot update the quantity property of a specific object (curItem) in the arrayList lineitems if I am declaring curItem to be an object inside lineitems using the var attribute. Please clarify and perhaps help update the quantity property in an object in lineitems using a curItem javabean. Thanks!
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    <%@ taglib prefix="wxshop" uri="http://www.wrox.com/begjsp/eshop-functions-taglib" %>
    <%@ page session="true" %>
    <c:set var="EXAMPLE" value="/example1"/>
    <c:set var="SHOP_PAGE" value="/estore.jsp"/>
    <c:set var="CART_PAGE" value="/shopcart.jsp"/>
    <html>
    <head>
    <title>Endivian.com Shopping Cart</title>
    <link rel=stylesheet type="text/css" href="store.css">
    </head>
    <body>
    <c:if test="${!(empty param.sku)}">
    <c:set var="prod" value="${wxshop:getItem(param.sku)}"/>
    </c:if>
    <jsp:useBean id="lineitems" class="java.util.ArrayList" scope="session"/>
    <c:choose>
    <c:when test="${param.action == 'clear'}">
    ${wxshop:clearList(lineitems)}
    </c:when>
    <c:when test="${param.action == 'inc' || param.action=='buy'}">
    <c:set var="found" value="false"/>
    <c:forEach var="curItem" items="${lineitems}">
    <c:if test="${(curItem.sku) == (prod.sku)}">
    <jsp:setProperty name="curItem" property="quantity"
    value="${curItem.quantity  +1}"/>+
    +<c:set var="found" value="true" />+
    +</c:if>+       
    +</c:forEach>+
    +<c:if test="${!found}">+
    +<c:remove var="tmpitem"/>+
    +<jsp:useBean id="tmpitem" class="com.wrox.begjsp.ch03.LineItem">+
    +<jsp:setProperty name="tmpitem" property="quantity" value="1"/>+
    +<jsp:setProperty name="tmpitem" property="sku" value="${prod.sku}"/>+
    +<jsp:setProperty name="tmpitem" property="desc" value="${prod.name}"/>+
    +<jsp:setProperty name="tmpitem" property="price" value="${prod.price}"/>+
    +</jsp:useBean>+
    +${wxshop:addList(lineitems, tmpitem)}+
    +</c:if>+
    +</c:when>+
    +</c:choose>+ 
    +<c:set var="total" value="0"/>+
    +<table width="640">+
    +<tr><td class="mainHead">Wrox JSTL Web Store</td></tr>+
    +<tr>+
    +<td>+
    +<h1></h1>+
    +<table border="1" width="640">+
    +<tr><th colspan="5" class="shopCart">Your Shopping Cart</th></tr>+
    +<tr><th align="left">Quantity</th><th align="left">Item</th><th align="right">Price</th>+
    +<th align="right">Extended</th>+
    +<th align="left">Add</th></tr>+
    +<c:forEach var="curItem" items="${lineitems}">+
    +<c:set var="extended" value="${curItem.quantity * curItem.price}"/>+
    +<c:set var="total" value="${total+  extended}"/>  
    <tr>
    <td>${curItem.quantity}</td>
    <td>${curItem.desc}</td>
    <td align="right">
    <fmt:formatNumber value="${curItem.price / 100}" type="currency"/>
    </td>
    <td align="right">
    <fmt:formatNumber value="${extended / 100}" type="currency"/>
    </td>
    <td>
    <c:url value="${CART_PAGE}" var="localURL">
    <c:param name="action" value="inc"/>
    <c:param name="sku" value="${curItem.sku}"/>
    </c:url>
    <a href="${localURL}"><b>Add 1</b></a>
    </td>
    </tr>
    </c:forEach>
    <tr>
    <td colspan="5"> 
    </td>
    </tr>
    <tr>
    <td colspan="3" align="right"><b>Total:</b></td>
    <td align="right" class="grandTotal">
    <fmt:formatNumber value="${total / 100}" type="currency"/>
    </td>
    <td> </td>
    </tr>
    <tr>
    <td colspan="5">
    <c:url value="${CART_PAGE}" var="localURL">
    <c:param name="action" value="clear"/>
    </c:url>
    <a href="${localURL}">Clear the cart</a>
    </td>
    </tr>
    <tr>
    <td colspan="5">
    <c:url value="${SHOP_PAGE}" var="localURL"/>
    <a href="${localURL}">Return to Shopping</a>
    </td>
    </tr>
    </table>
    </td></tr>
    </table>
    </body>
    </html>
    Error(34,37):  This bean name does not exist.

    curItem is not a java bean; it is a variable that points to a value from the lineitems list. setProperty requires a an actually declared bean (something you declare with jsp:useBean).
    What gave you the conclusion that you should be using jsp:setProperty anyway? Everywhere else in the page you are using c:set :s

  • Help  on  shopping  cart  line  items

    Hi,
    i  am    working  on  srm  ,  i  has  to  display error message  if items of different types are in SRM-shopping cart,
    the  details  in  technical  spec  is  as  below ,
    1.     Implement the BADI BBP_DOC_CHECK_BADI.
    2.     Create a custom table ZSRM_WGR_SORTEN and also create a table maintenance generator for it and maintain the entries in it.
    3.     The specification for the custom table is given in section 3.1.1
    4.     We need to populate an error message if the SC has line items of different types
    5.     The logic for this is given in section 3.1.3. We have the header data in ls_header based on which we will get the Shopping Cart data via FM u201CBBP_PROCDOC_GETDETAILu201D.
    6.     Then looping through item data we will process our logic to check if the SC line items are of same type or not.
    7.     If the line items are of different type, we need to populate the error message u201CThe item &1 has the same type as item &2u201D
    8.     A separate message class has been defined for it by the name ZSRM
    The check occurs in CHECK-BADI. The steps to be executed are:
         Read the shopping cart items
         Run all items:
         Determine and note the product categories-ID and process-ID (using item data, process-ID is a customer field,  see     CD 2553_E_1_procurement_010 for process-ID) of an item in an internal table.
         If 1st item: continue, otherwise: check, whether same product category and process-ID are noted already. If no: is the combination of WGR_ID_ADD and PROCID_ADD as per table ZSRM_WGR_SORTEN is allowed: If no: Display an error message
    i am  doing  coding  as  below ,
      CALL FUNCTION BBP_PROCDOC_GETDETAIL
        EXPORTING
          i_guid     = iv_doc_guid
        IMPORTING
          e_header   = ls_header
        TABLES
          e_item     = lt_item
          e_account  = lt_account
          e_limit    = lt_limit
          e_partner  = lt_partner
          e_orgdata  = lt_orgdata
          e_messages = lt_in_messages.
    The item data then exists in lt_item (incl. process- IDs of the items), using which it can be iterated with the LOOP command:
    LOOP AT lt_item INTO ls_item WHERE del_ind EQ space.
    what  will  be  code  here  , please  guide
    ENDLOOP.
    and  also  how  to  handle  message ,  i  am  doing  coding  as  below,
      DATA: ls_message         TYPE bbp_smessages_badi.
            ls_message-msgno   = '002'. //Meldungsnummer
            ls_message-msgty   = 'E'.
            ls_message-msgid   = 'ZSRM'.
            ls_message-msgv1   = ls_item-number_int.
            ls_message-msgv2   = <Pos.Nummer mit schon vorhandener Sorte>
        what  will  be  code  here  , please  guide
            APPEND ls_message TO et_messages.

    Hi. To get the SC number on the backend PO you must be using a BADI, probably either BBP_DOC_CHANGE_BADI or BBP_CREATE_BE_PO_NEW or BBP_CREATE_PO_BACK.
    Look in these BADIs, the cart data is probably not being looped around correctly.
    Regards,
    Dave.

  • Need some suggestions or help with shopping cart.

    I am looking and searching and searching and looking for a
    good e-commerce package I can use with my future sites as well as a
    current one I am developing. It is a automotive site with multiple
    sizes of parts and accessories, I have opted to use a drop down for
    selecting the size but need to figure out how to incorporate that
    when I do the shopping cart and etc... I have looked at cartweaver
    and cannot afford that right now I am looking for something similar
    to it but cheaper in price if not free...

    I've used Cartweaver and found it rather good. It's one of
    the few that can be licensed so as you can use it on as many sites
    as you want. Most only allow you to use a shopping cart on a single
    site.
    I've used Cartweaver ColdFusion. They also have a PHP and ASP
    version of the software, you'll need to decide what back-end
    technology you want to use: ASP, PHP, ColdFusion. and buy that one.
    I would check with your hosting company and see what back-end
    technology they offer you.

  • Shopping cart awaiting approval error

    Hello all, I have a shopping cart with two approvers, first approver approves on 13.10.2008 and second on 14.10.2008.
    If I see transactions SWI6 and SWIA workflow appears as completed (I can't complete manually work item because its status is completed).
    But when I see status for shopping cart still has awaiting approval and I can't run program BBP_GET_STATUS_2 and CLEAN_REQREQ_UP for this shopping cart.
    Program BBP_GET_STATUS_2 throws this error: No Shopping Cart (REQUIREMENTS) Found with Status = Transferred.
    What can I do?
    Thanks
    Rosa

    looks like there is problem in the transfer process..
    you can find details in the transaction --> bbp_pd -->
    with object type --> bus2121 and object id --> shopping cart number..
    you can see --> status --> error in transmission -->

  • Shopping Cart needs to be Held Status when created from Upload Program

    Hi All,
    Shopping Cart is created from Custom Upload Program. In Upload Program, we used BBP_PD_SC_CREATE, BBP_PD_SC_UPDATE, BBP_PD_SC_SAVE and BBP_PD_SC_COMMIT.
    Once the Shopping Cart is created from this upload program, I want ot put Shopping Cart as Helad Status.
    I exported the parameter I_PARK as 'X' in BBP_PD_SC_CREATE and BBP_PD_SC_UPDATE. But it is not working i.e., the SRM system is not keeping the Shopping Cart as Held Status.
    Scenario:
    I am uploading the Shopping Cart Items (Shopping Cart creation) on behalf of my manager. My manager has to approve Shopping Cart.
    If shopping cart is created maually and Shopping cart value is within the spending limit, work flow is not triggered approval proceess. If I am creating shopping cart behalf of some one, I am adding the approver manually while creating.
    When ever we create shopping cart through custom upload program, the shopping cart needs to be approved by the Requestor (my manager, to cross check shopping cart items). So I want to park the Shopping Cart and I want to add Approver as my manager.
    Please suggest me or guide me to get the solution for my issue.
    Thanks,
    Sudarsan
    Edited by: KOYYA SUDARSANA NAIDU on Nov 14, 2008 9:12 PM

    Completed

  • Shopping cart created for a MDM material uploaded from MARA

    Hello,
    I need to create an interfase from ECC6 material master (MARA) to MDM1.0
    I can not test the creation of a shopping cart for a catalogue material at the moment.
    My question is.
    Someone know can confirm me if is possible
    . to upload to MDM the "MARA" table
    . and the SRM shopping cart will be created for a catalogue material (uploaded from MARA, ECC6.0.
    AND the purchase requisition created in the back-end (ECC6) will take the MARA material number not a free text.
    I think that this is possible, but what do I have to define in MDM? How MDM will reconize the material number to transfer that information from the shopping cart to the purchase requisition?
    Thank for your help.
    Cheers,
    Marta
    Message was edited by:
            Marta Canabal Mazorra

    Hi Marta,
    Check for details under "Loading Master Data"
    <u>http://help.sap.com/saphelp_mdmgds55/helpdata/en/ae/82b24265e8b211e10000000a155106/frameset.htm</u>
    Regards
    Rehman

  • Flash shopping cart..... Help Please

    Hi Guys,
    I Would like to add a shopping cart to my flash website. The
    current website is working with actionscript 2. selling 10+ items
    Anyone knows of a good tutorial, book, program or advise that
    would help me from start to finish? should i use xml or php? Any
    open source codes with instructions? what can i use to processes
    credit cards inside of flash?
    Really need the help, thanks

    quote:
    because of the questions you're asking, you should off-load
    the handling of secure transactions to a third party. paypal is the
    most well-known of these. check their website for details on how
    you can accept a variety of payments, including credit cards. it's
    relatively simple (compared to creating your own secure shopping
    cart).
    Thank you kglad, What would u recommend i do for the coding
    of the shopping cart before the total amount is sent to a 3rd
    party? Like the add to cart, remove from cart, total etc.

  • Shopping Cart Creation - SAPLBBP_PD program error

    Hi Folks,
    I have one query. Need your help on this.
    We are using Product category. In extended attributes, for company code i deactivated the product category. Now, how is the possibility that i can use these product categories again back in my SRM system.
    I'm also observing the error in SRM shopping cart processing as below:
    Error application is coming up.
    20110315
    168996
    085921
    ISVSAPSRMDEV
    http://isvsapsrmdev.ad.infosys.com:8001/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    SYNTAX_ERROR
    Syntax error in program SAPLBBP_PD .
    Method: CREATE_SC_INT of program /SAPSRM/CL_PDO_FACTORY_SC_ADV=CP
    Method: CREATE_SC_INT of program /SAPSRM/CL_PDO_FACTORY_SC_ADV=CP
    Method: CREATE_NEW_INSTANCE of program /SAPSRM/CL_PDO_FACTORY_SC_ADV=CP
    Method: CONSTRUCTOR of program /SAPSRM/CL_CH_WD_BOM_SC=======CP
    Method: /SAPSRM/IF_CH_WD_MAP_FACTORY~CREATE_SC_MAPPER of program /SAPSRM/CL_CH_WD_MAP_FACTORY==CP
    And short dump while processing BBP_PD
    Kindly guide.
    thanking you all.
    Sangmesh Hiremath

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Shopping Cart creation using Upload File

    Hi
    We want to create Shopping cart using the Upload Program in SRM 7.01. We can use the FM BBP_PD_SC_CREATE and BBP_PD_SC_SAVE for this.
    However wanted to understand the check points that we need to keep in mind while creating the SC from any legacy system using Flat File. Are there any constraints, precautions that we should take or some prechecks/prerequisites that need to be fulfilled.
    Any input in this regard would be welcome.
    Regards
    Raj

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • Which program / BADI to create a PR after shopping cart in backend R3

    Hi SRM experts
    In our system after shopping cart creation a purchase requisition get create in backend system R3.
    Some how ADDRESS number field not get populated in Purchase requisition at the item level under deliery address tab.
    I need to debug the process to find out the reason.
    I want to know which program and BADI is responsible to create the PR in backend.
    How can i debug this scenario. I am not sure on this.
    Please help me.
    Thanks
    Sandeep

    Hi
    Depend upon your backend version this class may called to create a PR
    CL_BBP_BS_ADAPTER_RQ_CRT_31I   Adapter for Backend Purchase Requisition
    CL_BBP_BS_ADAPTER_RQ_CRT_40B   Adapter for Backend Purchase Requisition
    CL_BBP_BS_ADAPTER_RQ_CRT_45B   Adapter for Backend Purchase Requisition
    CL_BBP_BS_ADAPTER_RQ_CRT_46C   Adapter for Backend Purchase Requisition
    CL_BBP_BS_ADAPTER_RQ_CRT_470   Adapter for Backend Purchase Requisition
    CL_BBP_BS_ADAPTER_RQ_CRT_ERP10 Adapter for Backend Purchase Requisition
    method create_document
    ADDR_SHIPT - Are you maintaing this attribute in SRM - This is a delivery address in r/3
    regards
    Muthu

Maybe you are looking for

  • New MBP and old PBG4 don't share Airport connection well.

    Hi - My 2 laptops are both on a wireless network via a Snow ABS. They don't seem to be able to share the signal. If one computer is downloading a file, the other one won't be able to connect to the internet. Without knowing exactly what I'm talking a

  • Endless spinning wheel on starting Mail 2.1.3

    The Activity Viewer shows that 'Fetching new mail' never completes it stalls at the last message on the server. The mail application will only quit when forced. Each restart of Mail re-downloads the same messages from the server as the previous resta

  • FileInputStream's read() outputs differently when not stored in a variable

    Here's my original code: import java.io.*; class ShowFile {      public static void main(String[] args)      throws IOException{           FileInputStream fin = new FileInputStream(args[0]);           int i;           do {                i = fin.read

  • Comma and quote problem in csv file

    Hi My requirement is to append data in an csv file. This is Proxy to File FCC Scenario. for some of the fields from proxy which contains comma(,) and also double-quote("). for these fileds the in the csv file it is spiting in to two columns and appen

  • XML to DataGird encoding problem

    XML is in windows-1250 encoding (beacuse special character čćžšđ) when I load XML into DataGrid there are no special chars like čćžšđ