Shopping Cart .. need help..URGENT!!

can somebody help me regarding abt my shopping cart.. i have successfully add the item to the cart.. but the problem is, whenever i add the same item in the cart, the quantity does not increased by one.. instead it duplicate itself in the cart... ?!?!?!?
below are the codes...
cart.java
package OnlineShopBeans;
import java.util.*;
public class cart {
private int noItems = 0;
private Vector prodNames = new Vector(4);
private Vector prodPrices = new Vector(4);
private Vector prodSize = new Vector(4);
private Vector prodColour = new Vector(4);
private Vector prodOther = new Vector(4);
private Vector prodQty1 = new Vector(4);
/* Create a new cart */
public cart() {};
/* Add a shopper item */
public void addItem(String strName, String dPrice, String dSize,String dColour,String dOther, String dQty) {
noItems++;
prodNames.add(strName.trim());
prodPrices.add(dPrice);
prodSize.add(dSize);
prodColour.add(dColour);
prodOther.add(dOther);
prodQty1.add(dQty);
/* Remove a shopper item */
public void removeItem(int itemIndex) {
if (itemIndex >= 0) {
noItems--;
prodNames.remove(itemIndex);
prodPrices.remove(itemIndex);
prodQty1.remove(itemIndex);
prodSize.remove(itemIndex);
prodColour.remove(itemIndex);
prodOther.remove(itemIndex);
/* Update the quantities */
public void updateQtys(String[] qtys) {
for (int i=0; i < qtys.length; i++) {
prodQty1.setElementAt(qtys, i);
/* Clear all items */
public void clearItems() {
noItems = 0;
prodNames.clear();
prodPrices.clear();
prodQty1.clear();
prodSize.clear();
prodColour.clear();
prodOther.clear();
/* Get all items' ProdName */
public String[] getProdNames() {
String[] allProdNames = new String[noItems];
for (int i = 0; i < noItems; i++) {
allProdNames[i] = (String)prodNames.elementAt(i);
return allProdNames;
public double[] getProdPrices(){
double[] allProdPrices = new double[noItems];
for (int i = 0; i < noItems; i++) {
allProdPrices[i] = Double.parseDouble((String)prodPrices.elementAt(i));
return allProdPrices;
public String[] getProdSize() {
String[] allProdSize = new String[noItems];
for (int i = 0; i < noItems; i++) {
allProdSize[i] = (String)prodSize.elementAt(i);
return allProdSize;
public String[] getProdColour() {
String[] allProdColour = new String[noItems];
for (int i = 0; i < noItems; i++) {
allProdColour[i] = (String)prodColour.elementAt(i);
return allProdColour;
public int[] getProdQty1() {
int[] allProdQty1 = new int[noItems];
for (int i = 0; i < noItems; i++) {
allProdQty1[i] = Integer.parseInt((String)prodQty1.elementAt(i));
return allProdQty1;
public String[] getProdOther() {
String[] allProdOther = new String[noItems];
for (int i = 0; i < noItems; i++) {
allProdOther[i] = (String)prodOther.elementAt(i);
return allProdOther;
this is some of the code.jsp
<% if (actionType.equals("add")) {
String prodName = request.getParameter("name");
String prodSize = request.getParameter("s");
String prodColour = request.getParameter("co");
String prodPrice = request.getParameter("price");
String prodQ = request.getParameter("qty");
String prodOther = request.getParameter("ot");
int found=0;
for (int j=0; j < prodLength.length; j++) {
if (prodName.equals(prodLength[j])) {
found = 1;
//what should i type here???? }
if (found == 0) {
cart.addItem(prodName, prodPrice, prodSize, prodColour,prodOther, prodQ);

hi.. JSP is a new thingy for me.. i appreciate if u can help me in solving these 2 problems.. thanks..
i have write a new code and now i can update the quantity when the user click "add to cart" on the same item.. but i need ur help.. i have 2 problems..
(1):
if i had a textbox for the buyerto enter how many qty they want to purchase for that item, then update the qty respectively to how many the buyer want.
e.g. first enter 5 qty... display 5 in the cart. then enter 2 qty.. display 7 in the cart..
how will the code be?? should it be in the java beans??? or the cart.jsp??
(2):
i cannot remove the item in the cart.. try to remove one item at a time.. but the system does not remove the item.. can u also help me in this..
below are the new code..
---JAvaBeans---
public class ShoppingCart {
       //private int noItems = 0;
     Vector products = new Vector();
          public void addProduct(Product i){
               boolean productFound = false;
               Enumeration productEnum= getProducts();
               while(productEnum.hasMoreElements()){
                         Product product = (Product)productEnum.nextElement();
                         if(product.getId().equals(i.id)){
                              productFound = true;
                              //product.quantity += 1;
                              product.quantity += product.quantity;
                              break;
               if(!productFound){
                    products.addElement(i);
          public void deleteProduct(String id){
           Enumeration productEnum = getProducts();
               while(productEnum.hasMoreElements()){
                         Product product = (Product)productEnum.nextElement();
                         if(product.getId().equals(id)){                                             
                              products.removeElement(product);
                              break;                         
          public void emptyCart(){
               products = new Vector();
          public int getNoProducts(){
               return products.size();     
          public Enumeration getProducts(){
               return products.elements();
          public double getTotal(){
               Enumeration productEnum = getProducts();
               double total=0;
                    while(productEnum.hasMoreElements()){
                         Product product = (Product)productEnum.nextElement();
                         total = total + product.getTotal();
                    return total;
JSP Page-
<%@page import="java.util.*"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="theme/Master.css" rel="stylesheet" type="text/css">
<TITLE>viewsc1.jsp</TITLE>
</HEAD>
<BODY>
<jsp:useBean id="sCart" class="product.ShoppingCart" scope="session"/>
<%@page import="product.Product"%>
     <table width="80%" border="0" align="center">
       <tr>
         <td align="center"><img src="image/title.jpg" width="450" height="80"></td>
       </tr>
       <tr>
         <td align="center" height="90">�</td>
       </tr>
       <tr>
         <td align="center" height="210">
             <table width="98%" border="1" height="142">
               <tr>
                 <td height="129">
                   <table border="0" width="100%">
                     <tr>
                       <td colspan="8" bgcolor="#CCCC99" align="center" height="22">
                         <img src="image/vsc.jpg" width="300" height="50">
                       </td>
                     </tr>
                     <tr>
                       <td height="15" colspan="8"></td>
                     </tr>
<%
String name= request.getParameter("name");
if(name!= null){
     if(name.equals("delete")){
          String id = request.getParameter("Id");
          out.println(id);
          sCart.deleteProduct(id);
if(sCart.getNoProducts()!=0){%>
        <tr>
          <td height="15" align="center" width="20%"><B>Item ID</B></td>         
          <td height="15" align="center" width="20%"><B>Item Name</B></td> 
          <td height="15" align="center" width="11%"><b>Size</b></td>
          <td height="15" align="center" width="9%"><B>Colour</b></td>                               
          <td height="15" align="center" width="13%"><b>Price</b></td>     
          <td height="15" align="center" width="10%"><b>Qty</b></td>
          <td height="15" align="center" width="12%"></td>
          <td height="15" align="center" width="12%"><b>Total:</b></td>
        </tr>
<%     
          Enumeration products =sCart.getProducts();
          while(products.hasMoreElements()){
               Product product = (Product)products.nextElement();
          %>
          <tr>        
          <td height="15" align="center" width="20%"><B><%=product.getId() %></B></td> 
          <td height="15" align="center" width="11%"><b><%=product.getName() %></b></td>         
          <td height="15" align="center" width="9%"><B><%=product.getSize() %></b></td>
          <td height="15" align="center" width="9%"><B><%=product.getColour() %></b></td>                                                          
          <td height="15" align="center" width="13%"><b><%=product.getPrice() %></b></td>          
          <td height="15" align="center" width="9%"><B><%=product.getQuantity() %></b></td>     
          <td height="15" align="center" width="9%"><B><%=product.getOther() %></b></td>
          <td height="15" align="center" width="10%"><b><%=product.getTotal() %></b></td>
           <td align='center'><a href="viewsc1.jsp?name=delete&Id=<%=product.getId() %>">Remove</a></td>
        </tr>
<%          } %>
<tr>
<td height="50" valign="bottom" colspan="8" height="15" align="right" width="12%"><b>Total:</b><%=sCart.getTotal() %></td>
</tr>
<%
}else{
     out.println("Your Shopping cart is Empty<BR>");
%>
<tr>
                  <td colspan="8" height="15" align="center">
                    <a href=chooseCategory.jsp><IMG border="0" src="image/BtnContinueshop.gif" width="153" height="27"></a>
                    <a href=EmptyCart.jsp><IMG border="0" src="image/BtnEmptyBsk.gif" width="75" height="27"> </a>
                    <a href=checkout.jsp><IMG border="0" src="image/BtnCheckOut.gif" width="156" height="27"></a>
                </td>
                </tr>
              </table>
</BODY>
</HTML>

Similar Messages

  • Username and password- Need help urgently!

    Hi
    1) First of all, i have received an email stating that my account under Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    is being banned as there is multiple obsence post. I need to clarify that i have never used my account to post in BBM forum before. Even if i did, is when i need help urgently for my BBM application. Currently i am holding 4 bbms now. Have never came across this issue. Pls check and advise
    2) I urgently need to setup my email accounts. But this time round, when i logged in, they required for my email id and password. And yes my email id is Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use. all the while for the past 4 years. I am unable to log in. I tried all kinds of password but unable to log into my mobile settings
    Verfiy Blackberry ID
    This application requires u to verify ur blackberry id to continue.
    blackberry ID username:
    Removed personal information to comply withCommunity GuidelinesandTerms and Conditions of Use.
    password:
    I went to the forget password option, unfortunately as i have never retrieved my password before, i am unable to remember the security question as i did not use it for the past 4 years.
    Pls advise.
    Urgent and thanks

    Hi,
    I have been trying this technique for the past 4 days. It doesnt work no matter how i change the password at the link that u gave me. Even though it's being reset accordingly, i am still unable to log in the password at my mobile. i am 100% sure that i have entered the correct password at my mobile. ( verify blackberry id) . I want to setup new email accounts under "setup" . Upon me clicking " email accounts", it prompt for the one key password. I have never faced this issue before. I am very very sure that my password is correct. Pls advise as i need to add email accounts. Other programs are working fine without any password required being prompt. ie. blackberry world
    This is very very urgent to be resolved. Pls help.

  • Need help urgently with OS X and Windows 7

    I need help urgently.
    I installed Windows 7 on my macbook pro with OS X Lion. After installing Windows7, I accidently converted the basic volumes to dynamic volumes and now i can't even boot to OS X.
    Please help me how to recover my OS X Lion. If I have to delete Windows and bootcamp partitions, it is OK.
    I just want to get back my OS X bootable.
    Thanks

    thihaoo wrote:
    Sorry
    I can't even see the OS X partition when I hold down the "Option" key.
    I could see OS X and Windows partitions if I hold down Option key before changing the partitions to Dynamic partitions from Basic in Windows 7.
    Now can't see OS X partiton and only see Winodws partition but when I tried to boot onto Windows7 , I got BSOD and macbook pro restart.
    Please help
    The usual reason for the OSX partition to be invisible under these circumstances is that it has been trashed by Windows.
    Do you have a backup?

  • 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

  • Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx

    Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx Plz guys anyone can help plzz....I've lost all contact and I dont even have any secondary back up also...!!!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • Need help urgent,my iphone is stuck at connect to itunes screen.when i restore with itunes it shows error -1. please help me

    need help urgent, my iphone is stuck at connect to itunes screen, when i restore it using itunes, it shows error -1...may someone help me plz....

    See:
    iOS: Unable to Update or Restore
    http://support.apple.com/kb/ht1808

  • BB Curve 8900 need help urgently!!!!!

    hey my blackberry 8900 rebooted but now it says "Reload Software:552" and no matter what buttons I press it just won't work, please tel me what to do I really need help urgently!!
    Solved!
    Go to Solution.

    Before you do anything else:  Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Please let us know if that reboots the device properly or not.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I tried to buy the  WhatsApp app. The card has been charged. but the app wasnt downloaded.i need help Urgently.

    I tried to buy the  WhatsApp app. The card has been charged. but the app wasnt downloaded.i need help Urgently.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    To see which iOS version is installed, tap Settings > General > About

  • Sound trouble need help urgent please

    Could somebody tell me how i can fix my problem.
    problem: when my curve 8520 is in silence profile en i start typing in a phnoe number i hear nothing,
    but when my phone is in normal profile i hear i beep with every number of the phone number i enter.
    so i want to know how i can stop my bb from making this noise

    My friend it is a fillable form, can i email you the pdf that iam trying to fill out? then would you be able to tell me how to do it please mate?
    I have attached the form, i need to fill in those boxes so that everything is accuratly height + spacing is correct, and to do it fast, thats all im after.
    Date: Sun, 27 Jun 2010 18:31:58 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need Help Urgent Please
    If is a fillable form, just tab to the next field. What we do not understand from you is IF it is a fillable form or not. If it is not, then the 3 options I gave can be used. Placing text is always a problem. You might find it useful to turn on the grid to help in placing your typewriter fields. However, if it is fillable you do not have to create any fields to type in, you just leave the tool as the hand tool and select the predefined fields with the cursor or the tab key and type accordingly. If the field is a checkbox, then you just use the space key to activate it.
    So, are we talking about a fillable form or something that has the appearance of a form, but not fields to fill in. This is what Bernd has been try to find out and you keep suggesting it is fillable as we read what you have said.
    >

  • Query on SRM Shopping Cart ,plz help its very very urgent

    Hi Friends,
    I have a query on workflow.
    Users creates PO through SRM shopping cart and immedeately they receive a mail in there mail box.Below is the process flow of sending the mail to the user inbox from srm shopping cart.
    SRM Shopping Cart>Business Object>Workflow-->Mail
    Here my problem is.
    The bususinees object generally holds the data for cart number and cart description, but when i am checking the workflow it does not contain any cart number or cart description,so that the mail that is going to user inbox also does not contain any cart number and cart description value.
    Recenly our client upgrade from 4.6c to Ecc 6.0 and this problem is happening after the upgradation.
    Please suggest if anyone face this kind of problem or anyone having any idea on this.
    Pls give me some suggestion.
    Thanks a lot
    Mrutyun^

    Hi,
    Your condition is puzzling... the workflow in SRM for SC is triggered after the SC is saved.
    The PO is a follow-on document after the SC is approved. As such it has no relationship to the backend upgrade since the workflow engine is in the SRM server. Your worflow is triggered from the SC or PO?
    Regards.

  • Changing line item delivery address in shopping cart need to reflect same in all line items

    Hi All,
    Need help on below,
    I have a requirement that when we change the shopping cart line item delivery address same needs to reflect all line items.
    Suppose a shopping cart having 3 line items 1, 2 and 3. if i change the delivery address of line item 1, the same needs to reflect the line item 2 and 3 as well.
    In my case  if we change the 1's delivery address, after processing its genrating the IDOC on line item wise not in the header wise. And same having the different delivery address.
    Thanks in advance.
    regards:
    Ramesh

    Hello Ramesh,
    we can do this changes in BBP_DOC_CHANGE_BADI . Create a Implementation for the above BADI and Inside that Implementation BADI method just call the function module BBP_PD_SC_GETDETAIL for SC item details by passing the Header GUID.
    Once you get the Partner table(E_PARTNER) details.. Keeping a loop on SC item(E_ITEM) and change address number(ADDR_NO) in Partner table when Partner function eq X( X is an partner function values which you define in SPRO.).
    pseudo logic:
      CALL FUNCTION 'BBP_PD_SC_GETDETAIL'
        EXPORTING
          i_guid    = l_guid
        TABLES
          e_item    = lt_item
          e_partner = lt_partner.
    * Check for all the line items if vendor is assigned
      LOOP AT lt_item INTO lwa_item.
        READ TABLE lt_partner INTO lwa_partner
                          WITH KEY partner_fct = '00000019'
                                   del_ind     = space
                                   p_guid      = lwa_item-guid.
        IF sy-subrc eq 0 .
       * modification of address number logic here in partner table
        ENDIF.
      ENDLOOP.
    All the best.
    Regards,
    Sankarbabu

  • Seeking advice on shopping cart [was: HELP!!!!!!!!!!!!!!]

    i need help trying to get a Shopping Cart onto my webstie. i have 13 days before my deadline.
    [Subject line edited by moderator to indicate what the thread is about.]

    @ tytrackstar15
    You can create a Business Catalyst site from within Dreamweaver.
    Adobe Business Catalyst comes with eCommerce capabilities built right into the platform. So it'll save you the hassle of custom coding or tedious configuration.
    You might want to have a look at these articles:
    http://helpx.adobe.com/business-catalyst/partner/adding-shopping-cart.html
    http://www.bcgurus.com/tutorial/how-to-setup-the-business-catalyst-shopping-cart-checkout

  • Shopping Cart - Please help!

    I need help setting up a shopping cart! I currently maintain/make updates to a company's website. The owner now wants to implement a shopping card feature for members to purchase a few items. I'm not sure where to begin. I could really use some detailed help. Thank you in advance!!

    Have a look here http://cssmenumaker.com/blog/top-dreamweaver-shopping-cart-extensions
    I use e-Cart from Webassist

  • Please help me to run this CMP BEAN, I need help urgently, I am running out of time :(

    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    [Attachment iplanet_app.jar, see below]
    [Attachment iplanet_src.jar, see below]

    One reason that I sometimes get 'NoSuchMethodError' is when I make a change to a
    java class that is imported into another java class. When I go to run the
    importing class, it will throw a 'NoSuchMethodError' on any methods that I've
    changed in the imported class. The solution is to recompile the importing class
    with the changed classes in the classpath.
    shravan wrote:
    Hi,
    I am facing this problem, Please help me, I am attaching the source files
    also along with the mail. This is a small CMP EJB application, I am using
    IAS SP2 on NT server with Oracle 8. I highly appreciate if someone can send
    me the working copy of the same. I need these urgent. I am porting all my
    beans from bea weblogic to Iplanet. Please help me dudes.
    Err.........
    [06/Sep/2001 13:41:29:7] error: EBFP-marshal_internal: internal exception
    caught
    in kcp skeleton, exception = java.lang.NoSuchMethodError
    [06/Sep/2001 13:41:29:7] error: Exception Stack Trace:
    java.lang.NoSuchMethodError
    at
    com.se.sales.customer.ejb_kcp_skel_CompanyHome.create__com_se_sales_c
    ustomer_Company__java_lang_Integer__indir_wstr__215617959(ejb_kcp_skel_Compa
    nyHo
    me.java:205)
    at com.kivasoft.ebfp.FPRequest.invokenative(Native Method)
    at com.kivasoft.ebfp.FPRequest.invoke(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:297)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Caught an exception.
    java.rmi.RemoteException: SystemException: exid=UNKNOWN
    at com.kivasoft.eb.EBExceptionUtility.idToSystem(Unknown Source)
    at com.kivasoft.ebfp.FPUtility.replyToException(Unknown Source)
    at
    com.se.sales.customer.ejb_kcp_stub_CompanyHome.create(ejb_kcp_stub_Co
    mpanyHome.java:324)
    at
    com.se.sales.customer.ejb_stub_CompanyHome.create(ejb_stub_CompanyHom
    e.java:89)
    at
    com.se.sales.customer.CompanyServlet.doGet(CompanyServlet.java:35)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    com.netscape.server.servlet.servletrunner.ServletInfo.service(Unknown
    Source)
    at
    com.netscape.server.servlet.servletrunner.ServletRunner.execute(Unkno
    wn Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.applogic.AppLogic.execute(Unknown Source)
    at com.kivasoft.thread.ThreadBasic.run(Native Method)
    at java.lang.Thread.run(Thread.java:479)
    Thanks in advance
    Shravan
    Name: iplanet_app.jar
    iplanet_app.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode
    Name: iplanet_src.jar
    iplanet_src.jar Type: Java Archive (application/java-archive)
    Encoding: x-uuencode

  • I1112 status of Shopping cart- Need to create a follow on document

    Hello Experts,
    I have one issue in which enduser had created a shopping cart and header status is approved but no follow on document is generated. at line item level the status is Error in Process.
    When i ran the report BBP_ALERT_SB_NOTTRANSFERED. then my Shopping cart status changed from I1111(item in transfer)  to I1112"error in transmission'..
    In Applicaiton monitor : the message is Not transferred to backend and Shopping cart 3100001911: Follow-on document(s)  not transferred. we are using Extended Classic Scenario and i dont know why we are getting this issue, we are getting this same issue only for 2 Shopping carts.
    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.
    smriti

    Hi,
    If it is only the problem with only few carts, Check if any Short dumps are occuring in SRM as Well as in R/3.
    We faced a simialr situation and observed that it was resulting in a short dump due to bad coding in one BADI.
    regards,
    MRao

  • My iphone4 cannot open on screen it show usb and itunes logo...needed help urgently thanks

    suddenly my phone cannot open on the screen it just show usb and itunes logo only... needed help and solutions urgently thanks a lot

    Error 1603
    Follow the steps listed below for Error 1604. Also, discard the .ipsw file, open iTunes and attempt to download the update again. See the steps under Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.If you do not want to remove the IPSW in the original user, try restoring in a new administrator user. If the issue remains, Eliminate third-party security software conflicts.
    Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.
    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue:
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode,put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
    If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.

Maybe you are looking for

  • Unable to update iPhoto software

    Hi all Every time I open iPhoto, it tells me there is a software update, however, when I click to downoad it, it doesn't appear in the software updates pane. I went to the Downloads section and downloaded the update manually. When I attempt to open i

  • ACS 5.3 to ISE 1.2 Migration

    Hi Experts, Good Day! I really need help I already did some troubleshooting but the issue I'm encountering still exists. I am trying to migrate my ACS 5.3 to ISE 1.2 using the migration tool. I;m able to extract the data from ACS however, when I trie

  • Mac mini audio input

    It says that the mac mini has "optical digital audio input/audio line in" (http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?nnmm=br owse&mco=9BF2D40D&node=home/desktop/mac_mini), but i've tried two microphones now and neither

  • System Preference Problems

    Every time I try to open the Desktop and Screen Saver page in System Preferences, the window freezes then quits. The other preferences work fine. Has anyone else had a problem similar to this and if so, how did you fix it? I have yet to find any info

  • Why is the iPod touch4th  small

    IPod touch 4th is small