Splitting a shopping cart with one item line into a PO with several lines

Hi,
I am using SRM 6.0, I would like to know whether it is possible from a SC with one item line to generate only one PO but with multiple lines for the same vendor. The quantity would be the same.
Thanks

Hi,
No this is not available in the standard system. I am guessing you mean you have an SC with 1 item qty 10. And you want to split this into eg two items in the PO QTY 5 per item ? This is not possible in the standard system. An item has a unique GUID assigned so if you were to split this item it would lead to further complications generating follow-on documents and carrying out checks on the items.
I hope this helps,
Kind Regards
Lisa

Similar Messages

  • Shopping cart status I111 - Item in transfer Process

    Hello Experts,
    I have one issue in which enduser had created a shopping cart and now its approved but no follow on document is generated.
    I checked in the application monitor : I saw the item status is "Item is in Transfer in Process'.
    When i run the report BBP_ALERT_SB_NOTTRANSFERED. now the status changes from I111 to I1112. "error in transmission'.
    Please guide me how i can repost the document so that follow on document will get generated.
    I am in ECS scenario with SRM 7.0
    Help will be appriciated.
    Thanks
    Smriti

    HI Masa and the experts.
    I have checked the BBP_PD for the Shopping cart and the Item data.
    My finding are :
    BE_LOG_SYSTEM : VLBSRP300  " This is my SRM - SRP(Production) System and the client
    BE_OBJECT_TYPE : BUS2201       " Again this is the PO business object
    BE_OBEJCT_ITEM  : Blank
    BE_OBJEC_ID : 1                           "
    But there is no PO created .
    When i ran the report BBP_ALERT_SB_NOTTRANSFERED. then my Shopping cart status changed from I1111 to I1112.
    Now please let me know how i can process my shopping cart to create follow-on documents,
    Smriti

  • Create Limit Shopping Cart from Catalog Item

    Hi,
    Can i create limit shopping cart for catalog item (External catalogs)
    Thx,
    jai

    Hello,
    For your specific achievment, you can use the following OCI parameter NEW_ITEM-CUST_FIELD to bring some additional data from external catalog (details which is related to limit) and modify the DOC_CHECK_BADI accordingly(to mix the catalog and limit SC type)
    Velrajan.S

  • One-item PO into many invoices

    Hi,
    a customer would like the functionality of splitting the PO (with one item line) into several invoices.
    Is this at all possible via partial invoicing?
    Sincerely
    Ryan

    Dear,
    You mean to say one PO with Many Invoices,
    if my assumption is right yes you can receive many invoices for 1 item
    Regards
    venu gopal

  • Hi, i have an iphone5 with one icloud ID, and a IPad2 with another Icloud Id, i want to unify both ID, how can I do?

    Hi, i have an iphone5 with one icloud ID, and a IPad2 with another Icloud Id, i want to unify both ID, how can I do?

    Use the same ID on both. Be advised that downloads are forever tied
    to the AppleID used to obtain them, and items from one ID cannot
    be transferred to another ID.
    Use the ID with the most items you want to keep. Anything from the other
    ID will have to be redownloaded with the preferred ID (if purchased, they
    will have to be paid for again).

  • Can i use a 2010 24 led screen with one of the new 2012 macs with thunderbolt technology?

    can i use a 2010 24 led screen with one of the new 2012 macs with thunderbolt technology?

    Yes. Any standalone display which can be connected to a Mini DisplayPort, with or without an adapter, can be plugged into a Thunderbolt port without any additional adapters.
    (65766)

  • Want to copy Delivery address of one line item in shopping cart to all item

    Hi Experts,
                    We are upgrading from SRM 5.0 to SRM 7.0,In SC Creation We want to copy Delivery address of one line item in shopping cart to all line items in Shopping cart by clicking Change All Items button.This is custom button we added this button and we had written code to achieve the functionality but it is not working.This is same like Change All Items button in Account Assigment for copy accont details of one line item to all other line items in SC.
    Web Dynpro Component:/SAPSRM/WDC_UI_DO_SHIPTO
    Web Dynpro View:V_DODC_SHIPTO
    Thanks,
    Aarthi.

    Hi Prasad,
                   Our customer needs that button,they want whenever they are clicking the button delivery address should copy to all line items.
    In my action ONCHANGE_ALL_ITEMS i called this method
    wd_this->mo_dodm_shipto->zchange_all_items( ).
    zchange_all_items( ) is  implemented in class /SAPSRM/CL_CH_WD_DODM_SHIPTO.
    the code i wrote inside zchange_all_items( )
    *Error
      DATA: LX_PDO_ABORT               TYPE REF TO /SAPSRM/CX_PDO_ABORT,  " Class for Fatal error caught by PDO Layer
            LX_PDO_ERROR               TYPE REF TO /SAPSRM/CX_PDO_ERROR.  " Class for PDO General Exception
    Object Instances
      DATA: LO_MSG_CONSUMER            TYPE REF TO /SAPSRM/IF_PDO_MSG_CONSUMER,
            LO_PDO_SHIPTO              TYPE REF TO /SAPSRM/IF_PDO_DO_PARTNER.
    Context-Data
      DATA: lte_cll_shipto              TYPE /sapsrm/if_ch_wd_set_facade=>gt_guid_element,
            loe_cll_shipto              TYPE REF TO /sapsrm/if_ch_wd_set_element.
    Field Symbols
      FIELD-SYMBOLS <lse_cll_shipto>    LIKE LINE OF lte_cll_shipto.
    DATA : lo_pdo_acc TYPE REF TO /sapsrm/if_pdo_do_acct_assgmnt.
      DATA : ls_shipto_cll type /SAPSRM/S_CLL_SHIPTO,
             lt_pdo_partnerdetails      TYPE bbp_pdt_partner,
             ls_pdo_partnerdetails      TYPE bbp_pds_partner,
              LV_GUID          TYPE BBP_GUID,
              lv_item_guid type bbp_guid,
             lv_filled TYPE wdy_boolean.
    *exceptions
      DATA : LX_ABORT                  TYPE REF TO /SAPSRM/CX_PDO_ABORT.
    *Constants
      CONSTANTS : LC_OBJECT_ID         TYPE CRMT_SUBOBJECT_CATEGORY_DB VALUE 'BUS2121001',
                  LC_ADDR_ORIGIN       TYPE /SAPSRM/S_CLL_SHIPTO-ADDR_ORIGIN VALUE 'B'.
      IF LV_FILLED = ABAP_TRUE.
    Downcasting to shipto
        LO_PDO_SHIPTO ?= MO_PDO.
    insert the clipboard into facade and update and submit update
        me->/sapsrm/if_cll_do_mapper~insert_from_clipboard( io_set_facade = mon_cll_set_facade ).
    Add new Accounting entries.
        lte_cll_shipto = mon_cll_set_facade->get_data_elements( ). "get all elements from the context
        LOOP AT  lte_cll_shipto ASSIGNING <lse_cll_shipto>.
          loe_cll_shipto = <lse_cll_shipto>-set_element.
          loe_cll_shipto->get_static_attributes( IMPORTING rv_attributes = ls_shipto_cll ).
    Map ui-structure to pdo-structure
          MOVE-CORRESPONDING ls_shipto_cll TO ls_pdo_partnerdetails.
          IF LS_SHIPTO_CLL-PARTNER_FCT =  mv_part_func.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = ''.
          ELSE.
            LS_PDO_PARTNERDETAILS-PARTNER_FCT = LS_SHIPTO_CLL-PARTNER_FCT.
          ENDIF.
          IF ls_pdo_partnerdetails-del_ind NE 'X'.
            CALL FUNCTION 'GUID_CREATE'
              IMPORTING
                ev_guid_16 = ls_pdo_partnerdetails-p_guid.
           mv_acc_guid_split = ls_pdo_shipto-guid .
            IF mo_scope = 1.
              ls_pdo_partnerdetails-p_guid = mon_cll_set_facade->get_bo_guid( ).
            ELSE.
              ls_pdo_partnerdetails-p_guid = mo_parent_bo_mapper->items_get_lead_selection( ).
            ENDIF.
            APPEND ls_pdo_partnerdetails TO lt_pdo_partnerdetails.
          ENDIF.
          CLEAR : ls_pdo_partnerdetails, ls_shipto_cll.
        ENDLOOP.
    Add New items to PDO
        IF NOT lt_pdo_partnerdetails[] IS INITIAL.
          TRY.
              LO_PDO_SHIPTO->update_item_partners( EXPORTING it_partner = lt_pdo_partnerdetails
                                                               iv_item_guid       = lv_item_guid
                                                   CHANGING co_message_handler = mo_pdo_message_consumer ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Update PDO with the changed data.
          TRY.
              mo_pdo->submit_update( ).
            CATCH /sapsrm/cx_pdo_abort INTO lx_pdo_abort.
              mo_cll_message_handler->set_abort( io_pdo_abort_exception = lx_pdo_abort ).
            CATCH /sapsrm/cx_pdo_error INTO lx_pdo_error.
              mo_cll_message_handler->add_exception( io_pdo_error_exception = lx_pdo_error ).
          ENDTRY.
    Fire refresh of DO Mappers registered for refresh since the item table has acc related data.
          mo_parent_bo_mapper->fire_event_refresh( iv_perform_updates = abap_false ).
        ENDIF.
      ENDIF.
    Thanks,
    Aarthi.

  • Delivery from sales scheduling agreement with one item per schedule line

    Hi all,
    I have a sales scheduling agreement where the same part number has 3 different JIT schedule lines and I need to create a delivery with 3 item lines: every item line of the delivery has to be referred to one schedule line of the scheduling agreement.
    When I create the delivery with transaction VL10E it has only one item line and its quantity is the sum of the 3 schedule lines of the sales scheduling agreement.
    I've tried to change the customizing of the User Role, choosing the Split Schedule Line = 2 ("One item per schedule line") but the delivery is created again with only one item line.
    How can I solve this issue?
    Thanks in advance for reply

    Dear Alex
    The SAP standard behaviour is that all schedule items with delivery date in the past have to be rescheduled anyway to one date and are combined therefore.
    Partially this behaviour can be influenced in VL10* by 2 parameters in
    the user role : Split per sched.line and Rule (delivery qty).
    Please find below informations about these different parameters
    "Split per sched.line propose you 3 Rule for creating one delivery item
    per schedule line. In a delivery list in item view with multiple
    schedule lines, you can decide for the same document item whether you
    want to generate one delivery item per schedule line or whether you want
    to deliver the cumulated quantity of the last schedule lines selected.
    About rule for delivery quantity, the following rules are currently
    implemented:
    1. No cumulation
    The open schedule line quantity to be delivered is the quantity at which
    the list line is delivered.
    2. Sum of all open schedule line quantities to be delivered that fall
    before the chronologically latest date in the to field (following the
    Deliv. creation date field) of the selection criteria.
    3. Sum of all open schedule line quantities to be delivered whose
    delivery creation date falls within the selection time frame (between
    the dates in the Deliv. creation date and to fields, respectively),
    making the calculation of the quantity to be delivered consistent with
    selection criteria. However, calculationof the quantities delivered with
    the order's schedule line quantities is not affected."
    Hope this helps.
    Regards
    Tonia

  • Shopping cart's One step approval workflow activation

    Hi Gurus,
    Please reply me for, how to create a shopping cart with One step approval workflow activation?
    regards,
    George.

    Hi George,
    The creation of the SC stays the same. Only the event linkage and the start conditions determine which workflow will be started.
    Regards,
    Martin

  • Automatic SOS in shopping cart for reservation items

    Dear all,
    I am creating a shopping cart using a catalog item that creates a reservation in the backend (classic). However, when i change sthing, the system reads an info record that exist in the back-end and assigns the vendor as the source of supply for this items.
    Why the system behaves like that?
    BR

    Hi,
    Please check in config setting "Define Backend Objects ".
    Please debug the transfer process.
    http://wiki.sdn.sap.com/wiki/display/SRM/Follow-ondocumentdetermination(PR,PO,RS)
    Thanks,
    Anshu

  • Can i use one pc with one installation of Itunes to use with multiple apple ID's?

    can i use a single pc with one edition of itunes to manage multiple apple id's (without everyone's mail and message popping up on eachothers ipads/iphones etc)?

    You would need the apps installed on both volumes. The versions installed on your 10.4 drive will most likely give you a "You cannot use this version, etc..." error if you try to launch them from a 10.5 volume. Some apps may run but you will end up "confusing" the system as to which instance of the app you want it to use.

  • ITunes Home Sharing with Apple TV2, works with one Win 7 PC but not with the other

    Hopefully someone out there can help with this, I have gone through all of the troubleshooting procedures that Apple provides, and have spoke to thier 'fast track' technical services department and we cannot resolve this. 
    My probelm is that Apple TV does not recognize my Win7 PC that has itunes running in Home Sharing mode.  In order to test my router, network configurationand the Apple TV, I put iTunes on a laptop on my network running Win7 as well, and the Apple TV had no problems sharing with that computer.  I have opened all of the ports in my firewall that Apple recommended, and tried to make it work both with and without my anti-virus software, but still no sharing of iTunes with this computer.  We are working with the latest version of iTunes and Apple TV, both updated today.
    Has anyone run into this problem?
    Thanks
    S McD

    Yep - have had the same problem, especially since IOS5 came about and no solution has worked.  I've fought this one for a while, I come back to it every once in a while when I see something that might be a new tack but no joy.  I've also tried all that stuff, but none of them fix it.
    I can tell you a couple of things I have found out along the way:
    First off, there is some kind of issue with the Apple Mobile Service that causes it to not stay working.  If you stop the service and start it you may be able to make the sharing show up for a bit, but it will eventually disappear.
    Secondly, there may be a network routing factor to this too.  Apple doesn't like to use the same kind of protocols as many sharing schemes do, instead preferring something known as "Bonjour".  Bonjour uses multicast routing, and appears to either be programmed badly or in a non-standard way - or maybe there just is no standard.  In any case what you find is that it just doesn't work, and there is no current fix. 
    Keep trying though, maybe you can figure it out.  If you do, please come back and post what you did, I'd be very interested.  Sorry I couldn't be more helpful, but I can at least tell you that you're not crazy, there are others out there having the same problem with the same bleak outlook.  By the way, mine used to work until iOS5.

  • Does anybody know if a smartphone with windows will sink into my mac with itunes 11? 8

    Can I use a nokia with windows 8 to access itunes11?

    With a Nokia phone, I don't believe you need to have any kind of program like iTunes, you can just access the file system and move music and other media back and forth on the phone. It works differently than the iPhone's sandbox environment. There should be instructions with the Nokia on how to handle their music function on the device.

  • Taking a photo to black and white with one item left as color.

    I am trying to take a picture of my daughter and turn it black and white while leaving the tulips still in color. I cannot figure out how to do this, please help!

    Use the Smart Brush tool, and select the "Reverse Effects...Reverse - Black & White" option, with "Inverse" checked.
    Ken

  • Can i use iCloud with one apple id but app store with another; especially on iOS 6?

    My household has multiple devices.  I own iPhone and iPod, both on iOS 5.1.1, and iCloud (used for apps, iMessage, and backup.)
    I almost never buy music, but I buy some apps.
    My SO has iPhone (also on 5.1.1), and she uses my apple id for purchases (mostly kid apps.) She does not (yet) use iCloud (paranoid about it
    She uses iMessage (with her own apple id.) 
    Anyway, I suppose at some point she would switch to iCloud too.  It is also likely that we would move to iOS 6 once it is released (me first, likely.)
    I know that Apple does not allow transferring app ownership from one account to another, as well as splitting or merging accounts.
    Question: would she be able to use her own ID for iCloud (photo stream, backups) but my ID for app purchases? (I like it, let me control app expenses.)
    If any of you are using IOS 6 preview, can you try this scenario (different IDs for app store, backups, and iMessage.)
    Unsure if iOS 6 feature set is already public - if not, let me know 5.1.1 situation.  Thanks!

    thank you, @randers4!
    (sorry for using twitter notation - hope you would not mind.)
    for other commenters (especially Tawnii) - I view Apple ID (which was before essentially Store ID) as a purse with money.  Money is shared in our family;  I don't like "get your own milk license, and mark your bottles" approach.
    Currently my spouse uses her own ID for iMessage (and she does not use icloud for mail, calendar, reminders, etc - pretty much iMessage and iOS Store are only apps she uses), but we use same set of apps (mostly kid apps) on all of our devices (including iPad, which is used by our little daughter).  It does feel a little weird when purchases on one device appear on another (but this is an option which can be turned off.)  We almost never buy music or books from iTunes store.
    iCloud backup for my devices uses my ID (which is same ID we use for Store.)  My spouse does not use iCloud backup.  I suppose Mountain Lion can give her incentive to use shared Photo stream, and perhaps bookmarks.
    Just so you guys know, we live in a country which did not have App store permitted until recently, so it was not possible for my SO to obtain her own ID for purhasing apps, even if she wanted (my ID is U.S.-based, where I used to live before.)
    I feel that Apple model works fine for individuals but does not work well for family environments - for example, I want to listen to music from both of our computers on our Apple TV, but it is not easy: I can share iTunes collection or iTunes Match music set to Apple TV, but only from one account.
    And I also suppose our two-year old would not be able to use her own account, even though she is iOS user for about a year already (iPads work great for kids, we tried 50+ different apps and have our own set.)
    Again, thank everybody for quick responces, this is my first time using Apple forums and I am very happy

Maybe you are looking for

  • ITunes will not open no matter what solution I use

    When I click on the iTunes shortcut it gives me a message stating: "iTunes has encountered a problem and needs to close, we are sorry for the inconvienience." I called apple a couple times and there was no single solution to my problem yet. PLEASE HE

  • How to find Standard Output forms

    Hi, How to find the standard output forms for the following: 1. Purchase Requesition 2. RFQ 3. Inventory Records 4. Goods Receipt Note I want to access these outputs and add the company logo. Thanks in advance. Regards, Sriram

  • I get an error trying to open an ebook with adobe

    I get an error with the program adobe when trying to open an e book

  • Regarding scrollable Top of Page in ALV's

    hi all,        I am doing one report in ALV's,   in that Columns are more . I am declaring some text above the some columns.  when i am scrolling the columns(horizontally) Header is fixed. I want scrollable (horizontally) top of page. How can i achie

  • Use commitKey to change value in next field

    if (event.commitKey == 3){myTrustedFunction(this);} So I want to run this function on a specific field after tab is used in this field. Instead of this I would like to use var school=doc.getField("SCHOOL NAME");How can I run this function on this spe