Trigger shopping cart details page (service page) from BSP

Hi all,
I am developing a BSP page which, when user press the 'Add to shopping cart' button, will direct the user to the Shopping Cart details page. I am facing the challenge to direct the user back to the shopping cart details page on ITS from my BSP page. Anyone has any idea how this can be done?
Any help on this is greatly appreciated.
Thanks in advance!
Cheers,
Cyanna
p.s. I have also post this under the SRM forum.

Hi Raja,
My challenge is to get the ITS URL Of the shopping cart details as all shopping cart pages are under one internet service. In addition, in the standard HTML template, there are no parameters in the service page for me to pass the shopping cart details from BSP back to the internet service page. What I am thinking to do is perhaps to utilize OCI....
Thanks for your reply!
Cheers,
Cyanna

Similar Messages

  • Shopping cart Creation Time is different from system time

    Hi ,
    Shopping Cart Creation Time is Different from System time.
    Could you tell me,        to which time it is refering to.
    How to change it.
    Create By is      webseruser
    Where can I find the required settings for the same
    Thanks In advance

    Hello,
    Are you checking this in BBP_PD?
    If you go to SU01 and check parameter "Personal Time Zone" -> "of the user", this time will appear to end user when creating document (document header in web).
                                                                                    If you do not have informed any value, it will be populated the pattern system timezone, defined in SU01 as well.
                                                                                    - I created a RFX in my test system with a user who's timezone (in tx SU01) is set as:
    Sys. Time Zone     CET                                                                 
    of the User        INDIA                                                                               
    - CET time  was 20:01:55                                                              
    - GMT time was 18:01:55                                                              
    - India time was 23:31:55                                                                               
    Looking at this RFX in BBP_PD I see the following:                                     
    Same user (India timezone and CET as "Sys. Time Zone"):                                
    Created_At: 20:01:55                                                                   
    Changed_at: 20:01:55                                                                   
    DETAILS (header):
    Created at: 18:01:55                                                                   
    Changed at: 18:01:55                                                                   
    RFX header (description): 23:31:55                                                     
    So, for end users, you should populate field "of the user" in SU01.
    In BBP_PD header details, you will have the GMT time (which is stored in internal tables).
    In BBP_PD created_at and changed_at you will have the system time zone, as defined in SU01.
    Regards,
    Ricardo

  • Idoc for shopping cart details (SAP SRM)

    Hello Members,
    Is there any SAP Idoc type for sending shopping cart details (SAP SRM) to external system?
    Thanks in advance

    Hi Experts,
    I am also waiting for reply. I need to send shopping cart data from SRM system to PI system.
    Thanks in advance for your help.
    Regards,
    Appanaboina

  • Display the shopping cart details via Monitor shopping cart without the user being mapped in organizational structure

    Dear Experts,
    I have a scenario where the Project/Support team members won't be mapped into the organizational structure. But they must be able to view the shopping cart details. Could you please help me in providing some clue to achieve this.
    As of now, I am getting the below error if the user is trying to view the shopping cart details when the user is not mapped into the organizational struture.
    Thanks in advance for your help.
    Best Regards,
    Bharathi

    Hi Bharathi,
    Make it more simple. Create a separate organizational unit for the Support/Admin team and intergrate the users there.
    It's the common practic.
    Regards
    Konstantin

  • Error in attaching a Service Order from BSP

    I am trying to attach a document to a CRM Service Order from BSP.
    Im using the following FM
    cl_crm_documents=>create_with_file
    When I test the FM from SE37 transaction, I am able to attach a file from a local disk succesfully and the service order is getting updated. But If I call this FM from BSP, trying to do the same operation, document cannot attach to service order and Method returns the following error: “Error loading file <NameFile>” (Class of message CRM_DOCUMENTS and number 100).
    Thanks in advance.

    Hello Shravan,
    Check this weblog:
    /people/raja.thangamani/blog/2007/06/27/bsphow-to-create-attachment-in-business-transactions
    Best regards and good luck,
    Bruno

  • Trigger Navigation an iView/Page from Portal component

    All,
    I am writing AbstractPortalComponent and after performing some logic, I have to forward the control to a iView/Page. Please let me know how I can trigger navigation to a iView/Page from within AbstractPortalComponent.
    Thanks,
    Prasad

    Hi Reddy,
    You can use EPCF Navigation API in response.write.
    response.write("<html>");
    response.write("<script language='javascript'>");
    response.write("EPCM.doNavigate('ROLES://<pcd location of the iview or page>');");
    response.write("</script>");
    response.write("</html>");
    Or you can use request.redirect(url) for this depending on your requirement. For request.redirect check this link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b7/60b54066ea8531e10000000a1550b0/frameset.htm
    Regards,
    Vaishali

  • Detail page from other url

    Hey. I made a detail page. it works fine when you click on
    the detail-urls. but how can I do to let someone get the first
    input of a query if he comes from another URL? I guess there is
    some coding like: IF VISITOR COMES FROM ANOTHER URL GET first
    PARAMETER (in this case projects.php?project=) ... hope someone can
    help me out here or knows some useful links.

    Hey. I made a detail page. it works fine when you click on
    the detail-urls. but how can I do to let someone get the first
    input of a query if he comes from another URL? I guess there is
    some coding like: IF VISITOR COMES FROM ANOTHER URL GET first
    PARAMETER (in this case projects.php?project=) ... hope someone can
    help me out here or knows some useful links.

  • ASP How do you go to a detail page from an insert page?

    Hi
    I'm building a site in asp and I have an insert page that
    once submitted should go to a detail page of the record just
    submitted. There is a unique ID field in the database that is
    generated by the database. I was thinking that the unique ID is the
    key but I'm not sure that I can pickup the id that is generated
    when I insert the record. Any suggestions or pointers greatly
    appreciated.
    Thanks
    flapper

    You can use @@Identity in a SQL statement to grab the
    recordID of the newly
    created record, which you could then attach to a session
    value for passing
    to the next page.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "flapper j" <[email protected]> wrote in
    message
    news:el7ddq$p0g$[email protected]..
    > Hi
    >
    > I'm building a site in asp and I have an insert page
    that once submitted
    > should go to a detail page of the record just submitted.
    There is a
    > unique ID
    > field in the database that is generated by the database.
    I was thinking
    > that
    > the unique ID is the key but I'm not sure that I can
    pickup the id that is
    > generated when I insert the record. Any suggestions or
    pointers greatly
    > appreciated.
    >
    > Thanks
    >
    > flapper
    >

  • How to get the old shopping cart detail if I change the Business partner.

    Hi all ,
    Can any one help me in below describe query?
    Scenario:
    User was getting the error regarding business partner while shopping.
    So I repair the user from BBP_CHECK_USERS.
    Now definitly its business partner has changed.User can also shop.
    But the problem lies is he has lost his all the old shopping cart which was related to old business partner.
    Can any one tell me how to get those detail of the old shopping cart which was related to old business partner?

    Hi
    <b>Which SRM version are you using ?</b>
    <u>Please check out the links/pointers -></u>
    Moving workitems between SRM inboxes
    Re: How to re-instate the deleted Position of the user into Org structure.
    Re: Position Deleted for an User, created a new userid; Confirmation Issues
    Re: Need help to "access" deleted users's inbox & reassign work items
    Re: How to delete a user in the Organizational structure
    Re: Transfer of open POs or SCs?
    <b>Hope this will definitely help.</b>
    Do let me know.
    Regards
    - Atul

  • Not  able to see Shopping Cart Details

    Hi,
    We are in process of prototyping SRM 6.0 for Shopping card - Describe requirement scenario. After creation of SC, the lists of all SCs appears at very first page in portal in a WD Pro table form. Upon clicking any of the shopping cart link nothing is getting displayed. Browser shows busy activity of loading but nothing actually happens
    Is this a portal configuration issue or any context mapping is missing ? please advise
    Thanks a lot.

    Hi Vipin,
    This could be a protocol issue. Are you using http protocol or 'https'. If you are using the 'http' one, please try with using the 'https' protocol. Also it could be a bussiness package issue. Check if you have imported the right bussiness package.
    Thanks & Best Regards
    Raj

  • Close frame attachments in shopping cart details screen

    Hi,
    i'm working in SRM rel 5.0 and i have this requirement.
    In detail screen of shopping cart document i need to see texts screen but not attachments screen.
    I see that this operation is managed by BBP_PDH_TEXT service and there is gs_ui_control_flags structure that have HIDE_ATT_SCREEN field, set to blank.
    I try, in debug, to change this value with 'X' and result is that no attachments screen is showed.
    How can i set this field? Perhaps in attribute of my service using SICF transaction?
    Thank's in advance.
    Best regards
    Maurizio Ortolani

    Hi,
       We had  a similar reqt.However we finally modified the ITS template in service BBP_PDH_TEXT for that.however this will disable the attachement feature for all the documents(SC,Bi etc..) as this is a common template being used across.
    The  commented statements are:
    `BBPGroupBoxBegin(LABEL_ATT_HEADER.label)`
    if ( (GV_MODE == "E") || (GV_MODE == "C") || (GV_INTERNAL_ATTACH_MODE == "X") )`
            <table><tr><td class="instruction" tabindex="0">`#LBL_ATT_INSTRUCTION`</td></tr></table>
            `BBPVSpace()`
            `TABLE(class="format")`
            `TR()`
            `TD(class="label")`<label for="`GS_SCR_TEXT-FILENAME.name`">`#LBL_ATT_DESCRIPTION`</label>
            `TD(class="data", nowrap="X")`<input `if (GV_ATT_EDIT_MODE != "")`disabled readonly `end`type="text" id="`GS_SCR_TEXT-FILENAME.name`" name="`GS_SCR_TEXT-FILENAME.name`" value="`GS_SCR_TEXT-FILENAME.value`" maxlength="64" size="30">
            `TR()``Lines()`
            `if (GV_CONFIG_DEACTIVATE_APPLET != "")`
                `TR()`
                `TD(class="label")` <label for="`GS_SCR_TEXT_FILEPATH.name`">`#LBL_ATT_PATH`</label>
                `TD(class="data", nowrap="X")`<input `if (GV_ATT_EDIT_MODE != "")`disabled readonly `end`type="FILE" id="`GS_SCR_TEXT-FILEPATH.name`" title="`#HELP_ATT_PATHINPUT`" name="`GS_SCR_TEXT-FILEPATH.name`" maxlength="255" size="30">
                `TR()``Lines()`
            `end`
            `if (GS_UI_CONTROL_FLAGS-SHOW_ATT_CATEGORY_SELECTION.value != "")`
                `TR()`
                `TD(class="label")`<label for="`GS_SCR_TEXT-FILENAME.name`">`#LBL_ATT_CATEGORY_SELECTION`</label>
                `TD(class="data", nowrap="X")`
                <input type="hidden" name="`GV_CATEGORY_SELECTED.name`" VALUE=" ">
                `if (GV_DISABLE_CATEGORY_SELECTION == "")`
                    `BBPCheckbox (GV_CATEGORY_SELECTED.name,"","X")`
                `else`
                    `BBPCheckbox (GV_CATEGORY_SELECTED.name,"","")`
                `end`
                `TR()``Lines()`
            `end`
            `endTABLE()`
            `BBPVSpace()`
            `BBPButtonBegin()`
                `if (GV_CONFIG_DEACTIVATE_APPLET != "")`
                    `if (GV_ATT_EDIT_MODE == "")`
                        `BBPButton("TEXT_ATT_ADD", BUTTON_ATT_ADD.label)`
                    `else`
                        `BBPDisabledButton(BUTTON_ATT_ADD.label)`
                    `end`
                `else`
                    `if (GV_ATT_EDIT_MODE == "")`
                    `BBPButton("", BUTTON_ATT_APPLET_ADD.label,"launchAppletCreate()", "")`  
                    `else`
                        `BBPDisabledButton(BUTTON_ATT_APPLET_ADD.label)`
                    `end`
                `end`
            `BBPButtonEnd()`
            `BBPVSpace()`
            `BBPVSpace()`
            `BBPVSpace()`
        `end`
    <table><tr><td class="instruction" tabindex="0">`#MSG_ATT_NO_ATTACHMENTS`</td></tr></table> 
    HTH.
    BR,
    Disha.
    Pls reward points for useful answers.

  • How to copy line item details in Service PO from service contract

    Hi Team,
    i am using service contract with account assignment U and when i am creating a PO with reference of contract then in PO at Item Overview is coming data ok, but at item details in services there is not picking data automatically from contract.
    whats wrong in my scenario.

    Hi,
    Please make sure that you follow the following steps:
    1. Enter the contract and item number in the PO item line
    2. Click on the u201CService Selu201D icon to select the required
    services from the contract
    3. In the Pop-up screen, enter the agreement number in the
    corresponding field.
    4. Now select the required services from the contract and
    use the u201CServicesu201D icon or  the F9 key. Now save the purchase
    order with the adopted lines
    Best Regards,
    Arminda Jack

  • Shopping Cart is not Picking  Pricing from Inforecord.

    Dear All Guru's,
    Kindly help me in this matter , as i m creating a Shopping Cart and I have also created an INFORECORD for the material which m using in this Shopping Cart.Here in INFORECORD i had maintained SCALES  in Pricing PB00 ( Gross Price ) , it is maintained as for Qty 1 the Price will be 500 EUR & for Qty 16 the Price will be 450 EUR.
    As the Shopping Cart is created for Qty 16 , but even then the Price being picked is 500 EUR , But as per Scale Pricing the Price
    picked should be 450 EUR as per Qty 16.
    I m using this Scale Scenario first time in Shopping Cart , pl. guide me that is it really Possible to fetch Scale Pricing from INFORECORD to Shopping cart?
    Also please guude that is there any mistake i had done in maintaining Pricing for Scales in INFORECORD ?
    Thanx in advance.
    Rgds,
    sap11
    Edited by: sap11 on Apr 22, 2010 12:19 PM

    Hello,
    As far as I know, the standard behaviour about which price should be displayed in the SRM shopping cart when you have an assigned info record to the cart is that the price would not be fetched from the backend to the EBP system.                                                                               
    In SRM, the SC shows the product price and not the info record one (as you have assigned the product to the SC).                              
    You can use BBP_DOC_CHANGE_BADI to fill the info record price during the shopping cart creation.
    However, as your shopping cart takes the info record price, perhaps this behaviour has changed in new release.
    Question 6 of FAQ note 550071 refers to this topic.
    Kind regards,
    Ricardo

  • Shopping cart!! Retriving values from Hashtable?

    Hi,
    Could you please help me solve this problem?
    I am adding some values to the Hashtable. For every time I add the server is definitely showing
    me that some thing is added to the Hashtable. But when I try to print the values present in
    Hashtable, I do not see any thing on the browser other than "table headers" ? Can any one help
    me?
    Here are the codes
    ShopBean.java
    import java.util.*;
    import java.lang.*;
    public class ShopBean
         private Hashtable hashtable = new Hashtable();
         public ShopBean()
         public void addToCart(String itemid,String name,float price,int quantity)
              String[] items = {itemid,name,Float.toString(price),Integer.toString(quantity)};
              if(hashtable.containsKey(itemid))
                   String[] tmpItem = (String[])hashtable.get(itemid);     
                   int tmpQuantity = Integer.parseInt(tmpItem[3]);
                   quantity += tmpQuantity;
                   tmpItem[3] = Integer.toString(quantity);
              else
                   hashtable.put(itemid,items);
         public Enumeration getEnumeration()
              return hashtable.elements();
    Tibre.java
    public class Tibre extends HttpServlet
         String user,s1,s2,s3,s4,s5,s6,s7,prev,next,flag;
         int i,count=0,i1,i2,i3,i4,records=0,from,to,no,rem,k,c;
         public void doGet(HttpServletRequest req,HttpServletResponse res)
              doPost(req,res);
         public void doPost(HttpServletRequest req,HttpServletResponse res)
              try
                   ServletOutputStream sos = res.getOutputStream();
                   HttpSession ses = req.getSession(true);
                   user=(String)ses.getValue("user");
                   ShopBean cart = new ShopBean();
                   String id = req.getParameter("id");
                   if(id != null)
                        String name = req.getParameter("name");
                        Float price = new Float(req.getParameter("price"));
                        cart.addToCart(id,name,price.floatValue(),1);
                        System.out.println("cart values in tibre.java"+cart);
                   sos.println("<html>");
                   sos.println("<body bgcolor=lightyellow>");
                   sos.println("<p>Welcome to Online shopping "+user+" , Please see the
    gallery of items.</p>");
                   sos.println("<table border='1' cellspacing='1' width='41%'
    cellpadding='2' id='AutoNumber1'>");
                   sos.println("<tr>");
                        sos.println("<td width='21%'>");
                        sos.println("<img border='0' src='images/11.gif' width='120'
    height='150'>   ");
                        sos.println("</td>");
                        sos.println("<td width='79%'>");
                        sos.println("<img border='0' src='images/22.gif' width='120'
    height='150'></td>");
                   sos.println("</tr>");
                   sos.println("<tr>");
                   sos.println("<form method='post'
    action='http://localhost:8080/servlet/Tibre'>");
                        sos.println("<td width='21%'>$300 <input type=submit value='Add
    to Cart' name=tibre1>");
                        sos.println("</td>");
                        sos.println("<input type='hidden' value='100' name='id'>");
                        sos.println("<input type='hidden' value='Tibre' name='name'>");
                        sos.println("<input type='hidden' value='300.89' name='price'>");
                        res.sendRedirect("http://localhost:8080/servlet/Tibre");
                        sos.println("</form>");
                        sos.println("<form method='post'
    action='http://localhost:8080/servlet/Tibre'>");
                        sos.println("<td width='79%'>$800.99 <input type=submit
    value='Add to Cart' name=tibre2>");
                        sos.println("</td>");
                        sos.println("<input type='hidden' value='200' name='id'>");
                        sos.println("<input type='hidden' value='Compaq' name='name'>");
                        sos.println("<input type='hidden' value='800.99' name='price'>");
                        res.sendRedirect("http://localhost:8080/servlet/Tibre");
                        sos.println("</form>");
                   sos.println("</tr>");
                   sos.println("</table>");
                   sos.println("<a href='http://localhost:8080/servlet/ViewCart'>View
    Cart</a>");
                   sos.println("</body>");
                   sos.println("</html>");
              catch(Exception e)
                   e.printStackTrace();
    ViewCart.java // When I click viewcart I should display the contents from the hashtable
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class ViewCart extends HttpServlet
         public void doGet(HttpServletRequest req,HttpServletResponse res)
              try
                   ServletOutputStream sos = res.getOutputStream();
                   ShopBean cart = new ShopBean();
                   sos.println("<html><head>");
                   sos.println("<title> Shopping Cart Contents</title>");
                   sos.println("</head>");
                   sos.println("<body bgcolor=lightyellow>");
                   sos.println("<table border='1' width='300' cellspacing='0'
    cellpadding='2' align='center'>");
                   sos.println("<caption><b>Shopping cart contents</b></caption>");
    sos.println("<tr><th>description</th><th>Price</th><th>Quantity</th></tr>");
                   Enumeration enum=cart.getEnumeration();
                   String[] tmpItem;
                   while(enum.hasMoreElements())
                        tmpItem=(String[])enum.nextElement();
                        sos.println("<tr>");
                        sos.println("<td>"+tmpItem[1]+"</td>");
                        sos.println("<td align='center'>"+tmpItem[2]+"</td>");
                        sos.println("<td align='center'>"+tmpItem[3]+"</td></tr>");
                   sos.println("</table>");
                   sos.println("</center>");
                   sos.println("<a     href='http://localhost:8080/servlet/Tibre'>Back to
    Catalog</a>");
                   sos.println("</body>");
                   sos.println("</html>");
              catch(Exception e)
                   e.printStackTrace();
    Also please correct me if there are any mistakes in my code.
    Thanks for any help
    Uma

    Few errors,
    1.Your 'addToCart' method in the bean will not work as you are thinking. Try to find out the reason by yourself.
    2.ShopBean cart = new ShopBean(); in your ViewCart servlet gives you a fresh bean with a blank hashtable. Obviously it will not contain any items and hence you are not getting them displayed in the browser. Again you need to find out the error, I can give you a clue, Insert an item in the bean's constructor and test your code.
    3.You need to carry the information between your servlets, session is the best thing to use. So, your bean's scope must be session.
    Try to solve it by yourself, this forum will always be there to guide you.
    Hope this helps.
    Sudha

  • Calling JSP page from BSP

    Dear Guys,
    From  BSP application I want to call a JSP Page. Is itpossible?
    How can we integrate BSP and JSP....?
    Any configuration has to be done.....?
    Regards,
    Shamila

    if you have the url of it you can call from BSP.

Maybe you are looking for

  • New server and/or CA certificate for connection from custom authentication

    We are running Access Manager version 72005Q4 in the Sun ONE Web Server 6.1SP5 B06/23/2005 container with java build 1.5.0_07-b03. I run a custom authentication module which checks sessions against our university single sign on system which is CAS (f

  • How do i run windows 8 on my imac

    how do i run windows 8 on my imac ? I have several engineering programs which have bee written for windows I have heard that boot camp does the job. Does anyone have first hand experience?

  • My camera is not working on Photobooth or any apply that i can use a camera

    How do I fix that?  My Macbook Pro is brand-new. Everything else seems to be fine on it, just Photo Booth or apply with camera - skype, etc. Any suggestions??

  • Recording on CD pla

    I just bought Creative Lab Nano Plus. I should be able to dwonload songs fdrom CD player to the Creative Lab instead of the computer but have not been able to find out how to do it. It doesn't say how in the booklet that came with my Creative Lab and

  • Financial Statement Versions as per Schedule VI

    Can i get Documentation for config of Fin Statement Version for Balance Sheet (Scheduel VI as per Indian Companies Act) & P&L statement & Cash Flow statement. Pls forword the Documentation to krian6789@gmail . com Thanks in advance, Kiran Konujula