Create Shopping Cart from a Sales Order

Hi All,
Does anyone know if it is possible to create a Shopping Cart from demand driven by Sales Orders i.e. how to create a shopping cart from a Sales Order?
Please post any suggestion. I will reward all responses with points.
Thanks,
Ashwani

Hi,
Once the SC goes to Sourcing Cockpit,its status is already "APPROVED" .So you approval of SC is not possible.However you can have the approval process for PO (follow on doc).
See these very useful threads which explain different workarounds for your requirement:
Re: Carry Out Sourcing transaction in SRM
Re: Transfer SC to SRM trigger Workflow
BR,
Disha.
Do reward points for useful answers.

Similar Messages

  • Error When Create Shopping Cart from catalog SRM

    Hi all,
    Currently, I have problem need your help.
    I tried to create an shopping cart from catalog. But I don't know how the G_L_ACCT was lost.
    The information about account like this:
    Now, I want to know where this data is selected. Would you please help me for this issue.
    Extra Information: Acc_cat = 'A'.

    Dear Melynessa: normally you should not get this error message when flagging "Order as Direct Material" in SRM 7.0.
    Please, check in your backend ECC6 if "Value updating" flag has been selected or not for the material type of your SC material ID under the IMG path "Logistic - General --> Material Master --> Basic Settings --> Materual Types --> Define Attributes of Material Types"
    If field  "Value updating" for material type is not flagged then, when creating a PReq or PO in SAP ECC6, you will get always an error message asking you for an account assignment.
    Due to the circumstance above, in SRM, materials ID belonging to non-valuated material types should not be ordered as direct (flag order as direct is available always when you enter a material ID, even when it is non-valuated). If you flag the field "Order as Direct" for a non-valuated material, standard SRM system doesn't issue any error message. So, maybe, there is BAdi in your SRM system checking the "Value updating" for material type and avoiding "Order as Direct Material" flag being selected when it is a non-valuated material
    Hope it helps.
    regards
    Valentí

  • Error while creating a delivery from a sales order

    Hi Folks,
    when i try to create delivery of a sales order, i am getting following error:
    " Item 000030: delivery split due to conflicting header data (FKARV: ZF2C <-> F8) "
    please help me in correcting this error.
    thanks in advance.

    Hi,
    The field FKARV is for Proposed billing type for a delivery-related billing doc.
    Now here in your case billing document if ZF2C and another is F8 so it is splitting, check this
    Kapil

  • In VA01, how to automatically create a PO from a Sales Order

    In VA01, I create a sales order using item.cat. TAS; then, system generates a PR for the sales order.
    Is it possible to make the system create PO instead of PR?
    In item.cat. configuration, I tried to check the check box "Create PO Automatic."; however, the system still geerates a PR for me w/o generating any PO.
    Any idea would be appreciated.

    Hi Vitthavat
    In VOV6 for schedule line category CS  check wheather the following data has been maintained or not
    Order Type: NB
    Item Category: X
    Account assignment cat: 1
    In VOV7 , for item category TAS
    Check the box - Automatic PO generation
    Billing Relevance - F
    In MM02 , in Purchasing tab , check the automatic purchasing tab
    Use  ME59N for  Automatic PO creation
    Regards
    Srinath

  • ENRICH_ITEM_DATA + create Shopping Cart from external Business Server Page

    Dear SRM Gurus,
    I am on SRM 2.0 with EBP 3.5 and Requisite 3.5/88.
    On the Web Interface I get the message (German):
    "Sachkonto 6610005 ist nicht angelegt (Bitte Eingabe prüfen)  (Position 1) "
    which means translated: G/L Account No 6610005 not available - please check your entry (position1).
    I don't even find the Message Class which holds the message - It's not under package BBP_PU. In fact, when logging on in English - still the message is displayed German, while the messages in message class of package BBP_PU are translated.
    In fact, I think, I am almost done - all required fields are accessible in ABAP - I just don't know, when to put what where...
    thanx in advance, matthias
    Message was edited by: Matthias Kasig
    Message was edited by: Matthias Kasig
    Message was edited by: Matthias Kasig

    Hi CChung,
    I've got a pdf "Open Catalog Interface" which also gives an html example - i can email you.
    But let me tell you how I did it.
    1. You define a catalog in SPRO for your BSP. SPRO -- general settings -- Enterprise Buyer -- define catalogs
    there you place a parameter HOOK_URL as return URL. I guess that is what you already did.
    2. Now it's really simple. When you jump to your BSP the HOOK_URL gets also transferred to your BSP. You just have to set up the page attribute 'HOOK_URL' as string auto-value (don't forget to check auto), and then you should be able to deal with its value the way you want.
    In my case I transfer the value to a second result.htm.
    I set up an htmlb:form which includes an invisible input field:
    <htmlb:inputField id       = "I01"
                              value    = "<%= HOOK_URL %>"
                              disabled = "X"
                              visible  = "FALSE"
                              width    = "550" />
    I guess a hidden field will do to.
    In Event Handler OnInputProcessing I refer to this via:
    DATA: data_t TYPE REF TO cl_htmlb_inputfield.
    IF event->id = 'B01' AND event->event_type = 'click'.
      data_t ?= cl_htmlb_manager=>get_data(
                                  request = runtime->server->request
                                  name     = 'inputField'
                                  id       = 'I01'
      IF NOT data_t IS INITIAL.
        hook_url = data_t->value.
      ENDIF.
    and:
    navigation->set_parameter( name = 'HOOK_URL' value = hook_url ).
    or I use it for aborting in JavaScript like this:
          <script language="JavaScript" type="text/javascript">
          <!--
            function abbrechen()
               location.href = "<%= HOOK_URL%>";
           //-->
           </script>
    Hope you get it, regards, Matthias

  • Creation of Shopping cart from CPPR

    Hi,
      While creating shopping cart from Collective processing, we have implemented BBP_DOC_CHECK_BADI for validations. Now, after this BADI, in the standard process the messages are being appended in the /SAPSRM/IF_SOA_MSG_HNDL~GET_ERROR_CODE. The creation is failing in Quality system but it is successful in Development system. Can you please tell me reason for difference in Error Handling process in both the systems.
    The messages are getting cleared in Development system in BBP_PDH_MSG_INTERNAL_SAVE while in Quality system, it is not getting cleared. I found a parameter IV_METHOD in this FM and the sequence of calling this FM with IV_METHOD is differing for both.  Are there any SAP notes?
    In Brief,the error message from the BBP_DOC_CHECK_BADI Implemention are being cleared in Development system and not getting cleared in the Quality system.
    Please provide me some points to resolve this.
    Thanks inadvance,
    Deepthi
    Edited by: Deepthi B on Sep 29, 2010 1:02 PM

    Hi Dennis,
    I really appreciate for quick response. Please input your feedback on the below situation:
    We are currently using the shopping Cart DSO along with PO Account Assignment DSO for reporting (on Multiprovider). Due to heavy load and constant change in user requirements there have been performance issues in the past. Now the end users want separate reports on Shopping Cart and PO Account Assignment. So I came with up the idea of building the Cube on top of Shopping Cart DSO and then built separate Report.
    Present situation of the report:
    Variable Entry:
    Created on Date, Cost Centers, Internal Orders, Purchase Group, SC Created By, Goods Recipient, Requestor, Vendor
    Some of the Characteristics we are using in report:
    Shopping Cart Date, Shopping Cart Number, Purchase Order Number, SC Created By, SC Requestor, Goods Recipient, Purchasing Group, Controlling Area, Cost Center, Chart of Accounts, G/L Accounts, Order, Vendor, PO Line item Number, SC Item Number, SC Status, Shopping Cart Name & many custom fields pulled from the SRM system.
    Please let me know for this scenario the good practice (Reporting on DSO or CUBE)
    Thanks,
    SAPBWI

  • How to attach files while Creating shopping cart using FM- BBP_PD_SC_CREATE

    Hi
    I am trying to create shopping cart from R/3 system using RFC calls to FM's BBP_PD_SC_CREATE, BBP_PD_SC_SAVE & BBP_PD_SC_COMMIT.
    Also I have to attach files as we do in Standard SAP shopping cart creation process..
    But I see a parameter IT_ATTACH to pass the attachments in the FM - BBP_PD_SC_CREATE..Is that the right one to use? If yes, can you suggest the values to be passed in the same if you have done this before..
    Thanks
    Geetha
    Edited by: GEETHA VASUDEVAN on Apr 20, 2009 6:17 PM

    Hi
    I am trying to create shopping cart from R/3 system using RFC calls to FM's BBP_PD_SC_CREATE, BBP_PD_SC_SAVE & BBP_PD_SC_COMMIT.
    Also I have to attach files as we do in Standard SAP shopping cart creation process..
    But I see a parameter IT_ATTACH to pass the attachments in the FM - BBP_PD_SC_CREATE..Is that the right one to use? If yes, can you suggest the values to be passed in the same if you have done this before..
    Thanks
    Geetha
    Edited by: GEETHA VASUDEVAN on Apr 20, 2009 6:17 PM

  • Create Shopping cart - Enter company code error

    Hi All,
    While creating shopping cart from portal, system is throwing error as "Enter Company Code". When checked under basic data tab, there is no values for company code field. How to bring these values into SRM from ECC ?
    Regds,
    CB

    Hi,
    Please find the details...
    i have taken this from System >> Status >> Component Information >>
    SAP_ABA     701     0003     SAPKA70103     Cross-Application Component
    SAP_BASIS     701     0003     SAPKB70103     SAP Basis Component
    PI_BASIS     701     0003     SAPK-70103INPIBASIS     Basis Plug-In
    ST-PI     2008_1_700     0000          -     SAP Solution Tools Plug-In
    SAP_BS_FND     701     0002     SAPK-70102INSAPBSFND     SAP Business Suite Foundation
    SAP_BW     701     0003     SAPKW70103     SAP Business Warehouse
    SAP_AP     700     0015     SAPKNA7015     SAP Application Platform
    SRM_PLUS     700     0002     SAPKIBK202     SRM_PLUS for mySAP SRM
    SRM_SERVER     700     0002     SAPKIBKV02     SRM_SERVER
    SRM_EXPL     700     0002     SAPK-70002INSRMEXPL     SRM Extended Functionality for SRM_PLUS including PPS
    SRM_EXT     700     0002     SAPK-70002INSRMEXT     SRM Extended Functionality for SRM_SERVER including PPS
    Regds,
    CB

  • Creating Query to show items from open sales orders with a/p invoice

    Hi experts,
    I am trying to create a query that will show what items/quantities are still in open sales orders that can now be filled by an incoming shipment of goods, processed through the a/p invoice.
    This needs to be done using subqueries, which I have no experience with.  I am trying to do this using the ORDR and RDR1 tables to show the open items from the sales orders and the OPOR and POR1 tables to show items just received in to inventory.  I would like the query to show exactly the open item's, their quantities, the posting date from the sales order and the customer name that can now be filled from the new shipment through the a/p invoice.
    I appreciate the assistance,
    Hayden (on behalf of Todd)

    Hello,
    try this
    SELECT T0.[DocDate], T1.[ItemCode], T1.[Dscription],( T1.[Quantity] - T1.[DelivrdQty]) As "Open Qty" FROM ORDR T0  INNER JOIN RDR1 T1 ON T0.DocEntry = T1.DocEntry WHERE T0.[DocDueDate]  <= [%0]And ( T1.[Quantity] - T1.[DelivrdQty]) != 0
    Try this query in query manager.
    Thanks
    Manvendra Singh Niranjan
    Edited by: Manvendra Singh Niranjan on Jul 13, 2011 6:27 AM

  • How to create delivery from a sales order?

    Hi friends,
    Can you tell me how to crete a delivery from a sales order?
    First, I would like to know which transaction we use to create and how?
    Appreciate your input.
    Thanks,
    Krishen
    P.S. Points assured for helpful answers and thanks in advance for your time.

    VL01 is the transaction for the creation of Delivery
    VL01   SAPMV50A       Create Delivery
    VL01N  SAPMV50A       Create Outbound Dlv. with Order Ref
    VL01NO SAPMV50A       Create Outbound Dlv. w/o Order Ref.
    Message was edited by: Gopi Narendra

  • Create Shopping cart (or PO) in SRM/EBP from a flat file

    Hi all
           I am looking for a function module or BAPI or any program that i can use to create shopping cart in SRM from a flat file.
    Is there a way to set up a break point in ITS transactions that are used to create shopping carts through portal? Can we debug HTML templates?
    If any one knows how to do any of those please let me know.
    Your help is greatly appreciated.
    Thanks
    Sreenivas

    Hi,
    You would get better response for your question from
    Internet Transaction Server (ITS)
    Regarding your question about break point. yes it can be done.
    Regards
    Raja

  • Including a field from a catalogue in 'create shopping cart' display screen

    Hi all,
       I am new to SRM, and i am faced with the following situation:
    I need to include a field called 'supplier part number'(found in the MDM catalogue screen) in the display for 'Create Shopping Cart'  screen. The field can be viewed in the detailed display for an individual item, once the item's details are fetched from the catalog; But now i need to include this field as an additional field corresponding to all the items listed in the normal display for 'Item overview' instead of selecting an individual item (from the 'item overview') and then checking its  'detailed display' . can you please give me any  leads like - where i could possibly do the changes in the webdynpro component ( in my case it is ' /SAPSRM/WDC_UI_SC_DOTC_BD'; view - 'v_sc_dotc_basic') and any other details that can help me.
    Regards,
    Abhinay.

    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

  • Adding a field from a catalogue in 'create shopping cart' display screen

    Hi all,
    I am new to SRM and i am faced with the following situation:
    I need to add a field called 'supplier part number' to the 'create shopping cart' screen from the MDM catalogue. Once the entries for the field 'supplier part number' are fetched from MDM catalog, they must be displayed corresponding to every line line item displayed under 'item overview'. Currently the entry for 'supplier part number' for a given item is displayed in the 'detailed display' tab observed after clicking on the line item under consideration. But, I need to add this field to the items list under 'item overview' rather than restricting it to detailed display tab alone.
    in my case the webdynpro component associated with adding item details from MDM catalogue is  '/SAPSRM/WDC_UI_SC_DOTC_BD' and the view is  'v_sc_dotc_basic'. I am not able to locate the method/section of code that is responsible for fetching the entries in the field 'supplier part number' from MDM CATALOG to the item overview screen.
    can you please give me any leads like - where i could possibly do the changes in the webdynpro component and any other details that can help me add the  'supplier part number' field to details under items overview tab.
    Regards,
    Abhinay.

    Hello,
    Have you tried to add this field using the Catalog UI configuration tool?
    The URL for the tool should be something like
    http://adress:port/webdynpro/dispatcher/sap.com/tcmdmsrmcat~uisearch/MDM_SRM_UI_App?x

  • Hii  purchase infor record when creating PR from a sales order

    Hii
    I have found an exit USEREXIT_MOVE_FIELD_TO_ME_REQ when creating a sales order i can modify the table EBAN
    there is a special flow where i need to remove clear out the Purchase info record (INFNR) since when creating a sales order the purchase determine his own vendor thus i have an error message which is trggered since the vendor of purchase infor record is different from the sales order vendor.
    can you please advise what is the impact of deleting the INFNR data during the creating of sales order.  Seems to me that the purchase requisition is not created automatically in this case?

    Hi,
    IN ECC 6.0 EHP 4, it gets copied from PR to PO but not in lower versions.
    Hence you can achieve the same using some PO BADI's or through enhancement spots.
    Thanks & Regards,

  • Create draft invoice document from a sales order

    When i create an invoice document from a draft invoice document from a sales order, this invoce is linked to the order sales.
    Sorry for my english, i hope you can understand

    It would be difficult to know what question do you have.  Try to ask question.  Your English is not bad at all.
    Thanks,
    Gordon

Maybe you are looking for