Grouping of Shopping Carts using the report  BBP_SC_TRANSFER_GROUPED

Hi Experts,
I am a new SRM consultant and have been asked to investigate an issue regarding grouping of Shopping Carts using the report  BBP_SC_TRANSFER_GROUPED.
The wanted scenario:
For one specific vendor we wish to pool/group request coming from various shopping carts into one PO e.g. once a day. The shopping carts for that vendor can be destinguished by one specific product category.
We are on classic scenario hence the PO will be created in our ECC system.                                                                               
Settings we have done to accomplish what we want:
1. We have set up the transfer for grouping on the specific product category in the sourcing area in the IMG structure
2. We have run the report BBP_SC_TRANSFER_GROUPED (grouping takes place according to the product category)
This approach works, the shopping carts gets grouped into one PO in ECC. however the line items from the Shopping Carts are mixed in the PO eg SC1: Item A, Item B, Item C, Item D SC2: Item 1, Item 2, Item 3, Item 4 PO (Current result) Item A, Item 1, Item B, Item 2, Item C, Item 3, Item D, Item 4.
This seems quite strange, as there are no logic reason for this split. It would be understandable if it was a matter of delivery dates of the goods, but they are not in any order i.e. first coming delivery date first.
Does anyone know how to correct this or can anyone clarify why this sequence mix happens?
For me it seems like a program errror.
Hope you can help me solve this issues
Cheers Christian
Edited by: Christian Gjellerup on Aug 6, 2010 3:34 PM
Edited by: Christian Gjellerup on Aug 6, 2010 3:35 PM

Hi,
In SRM -Product categories = Purchasing group in SAP R/3.
During the transfer of P.R   from R/3 you have enter the Purchasing group in R/3.
In SRM in the PPOMA_BBP in the extended attribute you can enter the exact product categories
or else enter * in the product categoies and the backend logical system
in SPRO --define objects in backend system --- in this enter the purchasing group and category Id
check your default settings in the SRM web browser
Regards
G.Ganesh Kumar

Similar Messages

  • Group several shopping cart in a bid.

    hi,
    I'm trying to group several SC in a bid. I'm using the report
    BBP_SC_TRANSFER_GROUPED but I'd like to choose one
    specific  item of a SC, not all the SC
    Is this posible?
    thanks

    Hi,
    We had similar situation, as you get correct price after bidding, in this case we added the shopping cart approver at bid aproval place through n-Step BADI.
    This is only way it is possible with lot of enhancements and developments. ( Other option is develop a custom workflow after BID with shopping cart details.)
    Hope this resolves your problem.
    Thank you
    Sreedhar Vetcha

  • Need Help Badly on Shopping Cart Using JSP And Java Servlet

    Hi All,
    This is the 1st time i am trying to create a shopping cart using JSP and Servlet.
    I have read through a few acticles but i still do not get the whole idea of how it works.
    Please guide me as i need help very badly.
    Thanks.
    This is one of the jsp page which displays the category of products user would like to buy : Products.jsp
    <html>
    <head>
    <title>Purchase Order</title>
    </head>
    <body topmargin="30">
    <table border="0" width="100%" id="table1" cellpadding="2">
         <tr>
              <td bgcolor="#990000" width="96">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
              Code</font></b></td>
              <td bgcolor="#990000" width="260">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
              Description </font></b></td>
              <td bgcolor="#990000" width="130">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Brand
              </font></b></td>
              <td bgcolor="#990000" width="146">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">UOM
              </font></b></td>
              <td bgcolor="#990000" width="57">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Unit<br>
              Price </font></b></td>
              <td bgcolor="#990000" width="62">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
              Carton<br>
              Price </font></b></td>
              <td bgcolor="#990000" width="36">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">
              Qty</font></b></td>
              <td bgcolor="#990000" width="65">
              <p align="center"><b><font face="Verdana" size="2" color="#FFFFFF">Add<br>
              To Cart</font></b></td>
         </tr>
    <tr>
    <td align="center" width="96" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">123</font>
    </td>
    <td align="center" width="260" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">Tom Yam</font>
    </td>
    <td align="center" width="130" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">Nissin</font>
    </td>
    <td align="center" width="146" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">12 x 10's</font>
    </td>
    <td align="center" width="57" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">$3.85</font>
    </td>
    <td align="center" width="62" bgcolor="#CCCCCC">
    <font face="Verdana, Arial, Helvetica, sans-serif" size="2">$46.2</font>
    </td>
    <td align="center" width="36" bgcolor="#CCCCCC">
    <!--webbot bot="Validation" S-Data-Type="Integer" S-Number-Separators="x" -->
    <p align="center"><input type="Integer" name="Q10005" size="1"></p>
    </td>
    <td align="center" width="65" bgcolor="#CCCCCC">
    <p><input type="checkbox" name="checkbox" value="123"></p>
    </tr>
    <tr>
    </table>
    <table border="0" width="100%" id="table2">
         <tr>
              <td>
              <div align="right">          
                   <input type="hidden" name="hAction" value="AddToCart"/> 
              <input type=submit name="submit" value="Add To Cart"/>                     
    </div>
    </td>
         </tr>
    </table>
    </body>
    </html>
    After user has make his selection by entering the qty and ticking on the check box, he would click the "Add To Cart" button ... and this would call my servlet : AddToAddControlSerlvet.java
    import javax.servlet.http.*;
    import javax.servlet.*;
    import java.io.*;
    import java.util.*;
    import java.util.ArrayList;
    public class AddToCartControlServlet extends HttpServlet
         public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,IOException
              String action = req.getParameter("hAction");
              if (action.equals("AddToCart"))
                   addToCart(req,res);
         public void addToCart(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
              try
                   String url = "";
                   String[] addList = req.getParameterValues("checkbox");
                   HttpSession sess = req.getSession(true);
                   //String sessionID = sess.getId();
                   DBClass dbClass = new DBClass();
                   ArrayList cartList = new ArrayList();
                   for (int i = 0; i < addList.length; i++)
                        String productCode = (String)addList;
                        int qty = Integer.parseInt(req.getParameter("Q"+productCode));
                        Products product = dbClass.getProductDetail(productCode);
                        double totalUnitAmt = qty * product.getUnitPrice();
                        double totalCartonAmt = qty * product.getCartonPrice();
                        Order order = new Order(product.getProductCode(),product.getProductDesc(),product.getBrandName(),product.getUom(),qty,product.getUnitPrice(),product.getCartonPrice(),totalUnitAmt,totalCartonAmt);
                        cartList.add(order);
                   sess.setAttribute("cartList", cartList);
                   url = "/Cart/CartDetails.jsp";
                   ServletContext sc = getServletContext();
                   RequestDispatcher rd = sc.getRequestDispatcher(url);
                   rd.forward(req, res);
              catch (Exception e)
                   System.out.println(e);
    From here, i would get the list of items which user has selected and add to the cartList, then i would direct the user to CartDetails.jsp which displayed the items user has selected.
    From there, user would be able to remove or to continue shopping by selecting other category.
    How i do store all the items user has selected ... everytime he would wan to view his cart ...
    As i would be calling from jsp to servlet .. or jsp to servlet ... and i do not know how i should go about in creating the shopping cart.

    Hi !
    Yon can use a data structure as vector and store the items selected by the user into the vector . Keep the vector in session using session object , so the user can access the entire shopping cart from anywhere in the application .
    Then , you can change the cart accordingly .
    Hope this works.
    Cheers ,
    Pranav

  • Malfunctio​n in generating word report out of an app (using the report generation toolkit)

    I placed in my program some features that generate a word report with some graphics and text using the report generation toolkit. When I'm in the developing system everything works. But the point is that I have to create an exe for a user and in testing this the report is not generated (and no error msg occurs). Does anyone handeled this problem already and could give me some hints? Thx.

    Hi muchalla,
    the report generation toolkit for MS office depends on the version of MS Office (not the OS). You must generate your application for the version of MS Office or use some dynamic technic.
    The different versions of the llbs you need are on the CD in a subfolder called compability.
    Here I have asked if some ideas to do this will work. Until now I haven't got the time to verify it by myself.
    You will find here more information about using the report toolkit with applications.
    Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • How to use the Report Generation Toolkit to get a list of bookmarks in a Word Template

    I am working on a project where I will need to use the Report Generation Toolkit to fill out a fairly long Word Template. The MS Office Report Express VI can only have inputs for a maximum of 17 bookmarks which is not nearly enough for what I am needing to do.
    I'm wondering if there is some way to use the lower level report generation VIs to read the word template and return a list of the bookmark names as a 1d array of string. The dialog box that you use to set up the Express VI has this capability but I'm not finding a way to scan the document programatically.
    I'm sure I can't be the first person to run into this issue and I'm hoping that someone out there has found a good solution.
    Solved!
    Go to Solution.

    Wordsub.llb should be somewhere in your Labview folder on your local drive. The path to it in my install is: C:\Program Files\National Instruments\LabVIEW 8.6\vi.lib\addons\_office\_wordsub.llb
    Also what specific problem are you referring to about 17 bookmarks? Is that the limit on the express style VI for filling them in from LV? If so what you will need to do is to use the lower level function 'Word Insert Field' under Word Advanced VIs. You will need to supply the VI the name of the bookmark and the text you want to insert.

  • Problems creating a web service that uses the report generation toolkit

    Hi,
           Im trying to develop a web service using labview 2013.
    I create a html form that is correctly communicating with my labview method and part of the web service functionality is to create a report from the data obtained in the html form published.
    I realized that using the report generation toolkit inside of the web service method the server cannot generate a report. ( If I run the same Vi before publishing the web service it works on the server but it doesnt work after I deploy it)
    I thought that maybe Im unable to use the report generation toolkit VIs inside of the web service because Im not incluiding the (dynamic VIs labview uses when they run), I tried to add the excel dynamic library to the proyect but with no success.
    I also tried to use VI SERVER to call a VI that generates the report using the report generation toolkit  in the method that runs when the web service is call but  it doesnt work either.
    How can I deploy a web service able to use  the report generation toolkit ?, how can I deploy a web service able to use VI server ?
    Any help is really appreciated.
    Erwin Franz 
    Erlab

    The issue you are running into is actually a limitation intended by Microsoft.  They don't want windows services to be able to call into the ActiveX interface for Microsoft Office for security reasons.  If you are deploying your web service to the NI Application Web Server on Windows you will run into this problem since the web server is a Windows Service.
    While I haven't tested this, you may be able to work around this by packaging your Web service with a LabVIEW EXE rather than deploying to the NI Application Web server. 
    Mark
    LabVIEW R&D

  • How can I select pages to print from a Word document using the report generation 'print report' vi?

    I have researched the knowledge base and found:
    Printing A Range of Pages or Number of Copies of a Report Using the Report Generation Toolkit in LabVIEW.
    This seems to be from a previous version of LV. I am using LV2010. The instructions given do not match up with the current vi. The information did provide a tip and drilling down into  the vi I was able to insert the from/to page numbers at the printout invoke method, however this prevents the print function from working in that it can no longer find the default printer.
    The error message is:
    Error 1015 occurred at NI_ReportGenerationToolkit.lvlib:Word_Print.vi -> NI_Word.lvclassrint Report.vi ->
    error 1015 is: Printer is not responding. Check printer configuration.
    Any ideas how I can make the modification to print, for example, pages 24 through 29 out of a 32 page word document?
    Thanks,
    Chris

    Hello, take a look at this article. Unfortunately the Generate Report Get Data to Modify.vi was remove since RGT 1.1.3 release. That being said, we can try to find a workaround. See "Configuring a Printer Through the Windows Dialog in LabVIEW", open the GetPrinterSettings.vi, at the PrinterSettings property node you can select the from/to page. I hope this helps.
    Alejandro | Academic Program Engineer | National Instruments

  • Why can't I print to a Zebra 2746e using the report tool kit?

    I have read on here how peoople have printed barcodes from LV by sending commands directly to a zebra printer. I am using LV8.2.1 on a windows xp computer. I am sending EPL2 messages to the printer using the report tool kit, but all I get is a couple of line feeds. If I send the commands from a command prompt by coping a test file to the printer port it prints fine. Any thoughts. I have attached my program.
    Attachments:
    zebra tester.vi ‏22 KB

    I tried your code against my printer and it works as advertised. Can you print to other printers with it?
    By the way, when assembling a string you should use the Format Into String function instead of a string concatenator with a bunch of inputs. It takes up less room and is easier to interpret when troubleshooting.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How do I create a new shopping cart in the SRM system (not portal)

    Hi,
    I'm working on a test landscape with Purchase request WF. I want to create a new shopping cart from the SAP system, not from the portal, and this purchase request should go to a manager approval.
    I've been told that I need a SRM system.
    Could you please tell me what the transaction for creating new shopping cart is? Could you also explain me what to do with this transaction or point to a doc I can learn from?
    Thanks

    it is called planned driven procurement scenario in SRM
    ECC box
    1. create a Purchase request
    2. Approve the Purchase request
    3. now check EPRTRANS table . you might have Purchase request number ( if you have already set up done in ECC system for Plan driven procurement)
    4. Run BBP_EXTREQ_TRANSFER job
    SRM Box..
    5. Now you can see your shopping cart for this purchase request (External requirement) in the sourcing cockpit.
    Muthu

  • How can I use the report CRMC_ORGMAN_SWITCH_TO_ENH_MODEL

    Dear all,
    I want to change the CRM organization from stardard version to enhanced version.Acoording to the help document, we must using the report CRMC_ORGMAN_SWITCH_TO_ENH_MODEL.But neither this transaction code nor this program in CRM system.Do you have any suggestion, Thank you very much.
    The help document is "http://help.sap.com/saphelp_crm60/helpdata/en/32/4473211b7778428efebc865e351cb4/content.htm"

    Hi
    Please check if you do have the authorization for transaction
    CRMC_SWITCH_ORGMODEL.
    Transaction CRMC_SWITCH_ORGMODEL switches the organizational
    structure being used in CRM to a new model. This process is irreversible
    and therefore an accidental execution of the transaction should be
    avoided. This may be the reason why you can not execute the report.
    For further details review note 0635401 and the check if following notes
    are valid for you.
    650001,635339,635182
    Hope it can help you.
    Best Regards,
    ZhaoJie

  • SAP Query (SQ01) who and when to use the report

    HI Experts!!!
    Is there somewhere recorded information:  who and when to use the report from SAP Query (SQ01)?
    Thanks

    Hi
    This topic doesn´t belong to the Service Marketplace Area.
    regards Martin

  • How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

    How to know what reports are running by looking at SSReproting Services to see what reports are running and also any clue of which application is using the reporting services?

    To see what reports are running, take a look at the execution log views that are available in the database.  Which views that are available are dependent on your version of SSRS.
    http://technet.microsoft.com/en-us/library/ms159110.aspx
    To see which application is using SSRS is a little more difficult.  You can turn HTTP logging on, which will give you an idea of where connections are coming from, so you can see IP addresses.  You can also look at the execution log view to see
    user accounts.  So, depending on your environment and use of service accounts, this could be easy, or difficult.
    http://technet.microsoft.com/en-us/library/bb630443.aspx
    If all else fails you can look for clues in the SSRS logs.  Good luck...

  • I am unable to see Shopping cart  in the Purchaser's Worklist

    Hi All,
    i am unable to see Shopping cart in the Purchaser's Worklist after Approval, the status shows "In Purchaser's Worklist".
    can any one tell me what will be the problem
    Reg.
    Ravi

    Hi
    I think, the user is having authorization role problem or Do this
    <u>Also check, in the Extended search option, include the options, Bought on behalf of as checked ('X')  and Include Completed Shopping carts as 'X' with Time Frame - (LAst Year) and Status = ALL</u>
    <b>Refer to Transaction BBP_MON_SC (Monitor Shopping cart ) to check it whether it's pending in with whom and at what status.</b>
    <i>Also, alternatively, you can refer to BBP_PD transaction, Specify the Shopping cart number there in the Object_ID field and you will get the details.</i>
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • I download a rental movie and don't want to finish the downloading  but I Use the report a problem link in your account history...but i didn't get any answer from Apple

    I download a rental movie and don't want to finish the downloading  but I Use the report a problem link in your account history...but i didn't get any answer from Apple

    The posted did what this said:
    How to report an issue with Your iTunes Store purchase
    The link includes the statement:
    "The iTunes Store's Customer Support team will contact you as soon as possible, typically within 24 hours."
    Applelover1 wrote:
    Usually Apple won't respond, instead they will just fix the problem you have suggested if it is a problem that persists in other user's computers. What problem did you report? Did you ask for them to respond?

  • Debug shopping cart from the webfront end

    Hello,
    Could you send the steps how to debug shopping cart
    from the web front end.
    if you send any document related to debug. it could be very help full and appreciated your help.
    Thanks in advance,
    prasad.s

    hi Siva,
      Follow the foll steps :
    1-->Transaction SICF.
    Select service.
    Change service settings and insert parameter ~GENERATEDYNDPRO=1.
    2-->Find program to debug. E.g. SE93. Enter bbpsc01 and Display and get Program field (SAPLBBP_SC_UI_ITS)
    Execute SE38 and enter program name.
    3-->Turn HTTP Debugging ON. Utilities-Settings-Debugging. Click Actv and username.
    4-->Add HTTP Breakpoint. Display source code and select Utilities-breakpoints-set.
    5-->On “External Debugging” select ‘HTTP Breakpoint’.
    Remember to remove breakpoints, deactivate debugging and remove parameter GENERATEDYNPRO.
    Can run program RSBREAKPOINTS to find which programs you have breakpoints set in.
       Hope this helps....
    regards,
    Disha.
    pls reward points if answers are helpful.

Maybe you are looking for

  • Creating new tags slow in Mac OS Yosemite

    Hi I have been finding creating new tags in Mac OS X Yosemite to be really slow. Whilst it was slow in Mavericks, it really is taking a lot of time now. Using previously created tags is not a problem. Has anybody else found this, and a solution for i

  • Lost all photos after iphoto latest iphoto update

    I have just lost all my photos in iphoto after latest update. Anyone knows whats going on? Over 3,000 photos for last 15 years and I am devastated not forgetting I relly on apple as I own most of their products. I see a trend in apple updates, deleti

  • Video plays but no audio. Help!

    I have a 2011 MacBook Air with the proper configurations and Mountain Lion. I am trying to take an online course. The video plays but no audio.  I have tried all the suggested fixes, but nothing works.  Everything else works on my computer with no pr

  • How to Interleave photos from different folders to Create a Slideshow.

    I have LR 1.4.1 and am trying to create a slide show from photos collected in folders marked by the day they were taken. In addition there is a folder loaded with jpeg Title Pages intended to be inserted to mark the beginning of a new day in the slid

  • Find my iPhone not working for family sharing devices

    Set up family sharing correctly in Settings, but only see my iPad and my iPhone in Find my Iphone. Family members devices are not viewable in Find my iphone, even though they are set up in Settings