How to Update Existing BP Addresses?

Hi all,
I have a BP with billto(0) & shipto(1) address in SAP .
    Default Billto Address : with Address name 'David Dashu'
    Default Shipto Address : with Address name 'Abc EFG'
                Shipto Address : with Address name 'Abc'
                Shipto Address : with Address name 'David Dashu'
Now i want to update this BP with new billto & shipto address.
    Default Billto Address : with Address name 'David Dashu'
    Default Shipto Address : with Address name 'David Dashu'
                Shipto Address : with Address name 'Abc'
                Shipto Address : with Address name 'efgh'
when i update BP then it shows a error 'This entry already exist'
this error for SAP does not support dupbicate address name
but how to chk dublicate addressname
plz help me how to update address in BP ?
thanks in advance
surajit

Hi Surojit......
Please be sure that you are not giving the same Address Code to the same BP Under the same Shitp To Address code or Bill To address Code....
If you put same for another address also it will give already exsist error.....
Regards,
Rahul

Similar Messages

  • Trying to rent movie from Apple TV. Message states a valid address is necessary to purchase. We have purchased about 15 show in the last month along. Any suggestion on how to update valid email address

    trying to rent movie from Apple TV. Message states a valid address is necessary to purchase. We have purchased about 15 show in the last month along. Any suggestion on how to update valid email address.

    I got the same error and can't get it to work.  My email and home address have not changed in the 3 years I've been using this device, my credit card info is up to date and my most recent rental was 2 days ago yet I get the error message on both the Apple TV and in iTunes.  I don't understand what the issue is, nothing is invalid.

  • "They" changed the Podcast URL address. How 2 update the old address?

    New podcasts weren't downloading.
    I thought it was for all my subscriptions, but it turned out to be just the one. (Or two).
    It took a little while to notice, but it turned out the the podcast providers, a radio station had changed the URL address for the podcast. (Just one word changed).
    *I could not figure out how to update the old podcast subsrciption to the new address.*
    *is it possible?*
    Meanwhile; I subscribed again, which created a new entry under the same name as the old subscription but with the new address, and the podcast downloads for that subscription are running again.

    bypass

  • How to update existing table using Data Load from spreadsheet option?

    Hi there,
    I need to update an existing table, but in Data Load application when you select csv file to upload it inserts all data by replacing existing one. How can i change this?
    Let me know,
    Thank you.
    A.B.A.

    And how do you expect your database server to access a local file in your machine ?
    Is the file accessible from outside your machine say inside a webserver folder so that some DB process can poll on the file ?
    Or, is your DB server in the same machine where you have the text file ?
    You will have to figure out the file acess part before automating user interaction or even auto-refreshing.

  • How to Update existing XML File Using Java Swing

    Hi,
    I am reading XML file and getting keywords into JList. When i add some keywords into JList through textfield and remove keywords JList, then after click on save button it should update xml file. How can i do it ?
    Please provide me some code tips for updating xml file
    This is the code that i am using for reading XML File:
    import javax.swing.*;
    import java.awt.event.*;
    import org.w3c.dom.Document;
    import org.w3c.dom.Element;
    import org.w3c.dom.NodeList;
    import org.xml.sax.SAXException;
    import java.io.IOException;
    import java.util.*;
    import java.text.Collator;
    import java.util.regex.*;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.ParserConfigurationException;
    import com.cloudgarden.layout.AnchorConstraint;
    import com.cloudgarden.layout.AnchorLayout;
    public class getKeywords extends JFrame implements ActionListener
    static JPanel p;
    static JLabel lbl;
    static JButton btnSave,btnAdd,btnRemove;
    static String path;
    static Vector v;
    static JList lstCur;
    static JTextField txtKey;
    Document dom;
    static image imgval;
    NodeList nodelstImage;
    static AnchorLayout anchorLay;
    private DefaultListModel lstCurModel;
    public getKeywords()
         super("Current Keywords");
        v=new Vector();
        p=new JPanel();
        txtKey=new JTextField(10);
        btnAdd=new JButton("Add");
        btnRemove=new JButton("Remove");
        btnSave=new JButton("Save");
        lbl=new JLabel("Current Keywords");
        lstCurModel=new DefaultListModel();
            lstCur=new JList();
            JScrollPane scr=new JScrollPane(lstCur);
        runExample();
         lstCur.setModel(lstCurModel);
         p.add(lbl);
         p.add(scr);
         p.add(txtKey);
         p.add(btnAdd);
         p.add(btnRemove);
         p.add(btnSave);
         add(p);
         btnAdd.addActionListener(this);
         btnRemove.addActionListener(this);
         btnSave.addActionListener(this);
         setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    public static void main(String arg[])
         getKeywords g=new getKeywords();
         g.resize(250,400);
         g.setVisible(true);     
    public void actionPerformed(ActionEvent ae)
         if(ae.getSource()==btnAdd)
              lstCurModel.addElement(txtKey.getText());
         if(ae.getSource()==btnRemove)
              lstCurModel.remove(lstCur.getSelectedIndex());
         if(ae.getSource()==btnSave)
              //Code to Write
         public void runExample()
              //Parse the XML file and get the DOM object
              ParseXMLFile();
              //Get the Detail of the Image Document
              parseImageDocument();
              //Get the Detail of the LML Document
              //parseLMLDocument();
              //System.out.println(lmlval.Title);
         public void ParseXMLFile()
              //Get the Factory
              DocumentBuilderFactory builderFac = DocumentBuilderFactory.newInstance();
              try
                   //Using factory get an instance of the Document Builder
                   DocumentBuilder builder = builderFac.newDocumentBuilder();
                   //parse using builder to get DOM representation of the XML file
                   dom = builder.parse("LML.xml");
              catch(ParserConfigurationException pce)
                   pce.printStackTrace();
              catch(SAXException sax)
                   sax.printStackTrace();
              catch(IOException ioex)
                   ioex.printStackTrace();
         public void parseImageDocument()
              //Get the root element
              Element docImgEle = dom.getDocumentElement();
              //Get a nodelist for <Image> Element
              nodelstImage =  docImgEle.getElementsByTagName("Image");
              if(nodelstImage != null && nodelstImage.getLength() > 0)
                   for(int i = 0; i < nodelstImage.getLength(); i++)
                        //Get the LML elements
                        Element el = (Element)nodelstImage.item(i);
                        //Get the LML object
                        getImage myImgval = new getImage();
                        imgval = myImgval.getimage(el);
                        v.addElement(new String(imgval.Thumb));
                        String[] x = Pattern.compile(",").split(imgval.Keys);
                        for (int s=0; s<x.length; s++)
                        lstCurModel.addElement(x[s].trim());
                        //System.out.println(x[s].trim());
    }     Thanks
    Nitin

    You should update your DOM document to represent the changes that you want made.
    Then, using the Transformation API you simply transform your document onto a stream representing your file. Something like this:
    Transformer transformer = TransformerFactory.newInstance().newTransformer();
    transformer.setOutputProperty(OutputKeys.INDENT, "yes");
    // TODO - set indentation amount!
    Source source = new DOMSource(dom);
    Result result = new StreamResult(file);
    transformer.transform(source, result);Hope this helps.

  • How to update existing data of specific UDF at UDT?

    Hi Experts,
    I have a UDT with one of the UDF, status. I would like to update the udf, status of the document after i converted it to other documents. So tat I can filter out the selection at the query data. How can i do tat?
    Thanks and appreciate it.
    Regards,
    George
    Edited by: George Shii on Jun 29, 2009 10:57 AM

    Thanks Yatsea.
    Can I have some sample code for updating child table? I try but seems like something is missing in between.
    Problem solved. Thanks everone, appreciate it.
    'Get GeneralService - Main UDO - Retrieve the relevant service
    oGeneralService = oCmpSrv.GetGeneralService("G_OBCA")
    'GetByKey
    oGeneralParams = oGeneralService.GetDataInterface(SAPbobsCOM.GeneralServiceDataInterfaces.gsGeneralDataParams)
    'Child Order Key
    oEditTextcolumn = oGrid.Columns.Item(12)
    oGeneralParams.SetProperty("DocEntry", oEditTextcolumn.GetText(Count2))
    'Create data for new row in main UDO
    oGeneralData = oGeneralService.GetByParams(oGeneralParams)
    'Get GeneralService - Child UDO
    oChildren = oGeneralData.Child("G_BCA1")
    'Child Line Number
    oChild = oChildren.Item(oGrid.DataTable.GetValue(13, Count2) - 1)
    oChild.SetProperty("U_iStatus", "C")
    oGeneralService.Update(oGeneralData)
    Edited by: George Shii on Jun 30, 2009 5:43 AM
    Edited by: George Shii on Jun 30, 2009 6:18 AM

  • How to update existing excel cell by dropdown value in ole programm

    hi guys,
    i am updating excel sheet using ole program, i stuck in point where i want to fill an excel cell by selecting dropdown value from list,
    how it  can be achieve.

    I don't think it is possible to refer to cell in excel using jdbc, since jdbc is intended to communicate with mostly database in generic way. So you have to use queryStrings to update or retive cell info.
    The only way to access them by cell name is possibly by using some third party tools.

  • Update mass email address

    Hello,
    How to update mass email address in customer master?
    I have tried thru MASS and LSMW but its not possible.
    The table for teh same is SZA1_D0100 and  the field is SMTP_ADDR. Actually its a structure.
    Regards,
    SS

    Hello,
    Thanks a lot for your reply.
    Actually it was contact number changes.
    Manually i can do it through VAP2, but there is a mass change so was just trying thru mass upload tools.
    There isnt email ID field while creating LSMW either for XD02 or VAP2.....it seems i have to update manually.
    Regards,
    ss

  • How to update record xml data?

    Hi,
    How can update existing record using an existing xml packet?
    Thanks.

    Hi,
    The above Exception seems to be because of mapping error.
    Check your mapping for all the mandatory 1-1 mapping, also the 1-unbounded parent node mapping.
    Once when you import the XSD and activate your External Definition if it does without any error then there is no problem with your External Definition.
    If this error occurs only when you test your mapping then this is mapping error and not because of XSD.
    Please check the parent node mapping like 1-unbounded.
    Reward Points if useful
    Regards
    Ashmi.

  • How to reactive my iphone 5 s iCloud account however it sign up in un exist email address

    how to reactive my iphone 5 s iCloud account however it sign up in un exist email address whish i cant log on to reset the password.
    i update my iphone after that i fase that iusse so is there any one can help me with that

    You will need to visit appleid.apple.com to manage your Apple ID. From there, you can log in with your existing credentials and then change your registered email addresses.
    This is also where you can update your physical address, phone number, security questions, etc.
    Hope this helps!

  • Using RFBIDE00   -  How to update street 4 of Address on customer master

    Hi ,
    I am creating customer master records (sold-to Bill-to , ship-to & Payer) based on data from a flat file using direct input program RFBIDE00. I have to update the street address 2, 3 and 4 of Address. I am not able to figure out how to populate this data using RFBIDE00 program. What I read so far makes me believe that it can not be done using direct input program as this is part of central address management which is in str_suppl? fields of ARDC table. Is that right ? If yes , What BAPI/FM I can use to update the street address. Your expert help &  guidance is appreciated. Please advise. Thanks. Raghu.

    Hi Raghu,
    I don't know, if you still have this problem, but if you still have this problem...you can do one more thing apart from central address management update suggested by SAP. You can copy standard program into Z program and modify the sub routine for 111 screen:
    FORM D0111_FUELLEN.
    In the above subroutine, check any one of street 2, 3 or 4 customer address fields are not initial and if so, then add this code after appending 111 screen to FT internal table which already exists...this code will expand more fields option in screen 111.
      IF NOT BIADDR2-STR_SUPPL3 IS INITIAL.
        CLEAR FT.
        FT-FNAM = 'BDC_OKCODE'.
        FT-FVAL = '=$2OC'.
        APPEND FT.
      ENDIF.
    After this code,  in the existing subroutine,
    PERFORM D0111_FUELLEN_ZAV USING 'KNA1'.
    or new sub routine you need to include code for adding extra fields to the FT internal table as
      IF NOT BIADDR2-STR_SUPPL3 IS INITIAL.
        CLEAR FT.
        FT-PROGRAM  = 'SAPMF02D'.
        FT-DYNPRO   = '0111'.
        FT-DYNBEGIN = 'X'.
        APPEND FT.
        CLEAR FT.
        FT-FNAM = 'BDC_OKCODE'.
        FT-FVAL = '/00'.
        APPEND FT.
        PERFORM D0111_FUELLEN_ZAV USING 'KNA1'.
        FT-FNAM = 'ADDR1_DATA-STR_SUPPL3'.
        FT-FVAL = BIADDR2-STR_SUPPL3.
        APPEND FT.
      ENDIF.
    This code will work fine as long as you make changes correctly as mentioned. If you don't understand above code or if you need more information contact me at [email protected].believe me this code worked fine for me
    Hope this will help you.
    Good luck!
    Regards,
    Vivek

  • Updated my AppleID account info.  Under password security shows an email address to be used to receive email with new password settings.  I need to update that email address, how do I do that?  Thanks!

    Updated my AppleID account info.  Under password security shows an email address to be used to receive email with new password settings.  I need to update that email address, how do I do that?  Thanks!

    Thanks for the help Niel.  I couldn't change the rescue email address (an address that no longer exists and is therefore useless) until I could correctly answer the security questions.  After numerous guesses, finally got them right.  Was then presented with the option to change the rescue email address. Guess the only other option was to have Apple Support make the change or reset my account info.  Have made note of the correct answers so this won't happen again.   Thanks for the fast response!!

  • How to update an existing item in a sharepoint list using the WSS adapter for Biztalk

    Is there a way that a record in SP list be updated using WSS adapter in biztalk ?
    BizTalk 2013 and SP 2013 ..
    Regards
    Ritu Raj
    When you see answers and helpful posts,
    please click Vote As Helpful, Propose As Answer, and/or Mark As Answer

    A ListItem has its own unique row id so in all likelihood, an insert with the same data will result in a new list entry. The Lists Web Service however, has an UpdateListItem method which will take an update request. [refer
    http://msdn.microsoft.com/en-us/library/office/websvclists.lists.updatelistitems(v=office.15).aspx ]
    There is another note in the conference (marked answered) to your List Item Update problem. Probably worth a try too. [refer
    http://social.msdn.microsoft.com/Forums/en-US/bee8f6c6-3259-4764-bafa-6689f5fd6ec9/how-to-update-an-existing-item-in-a-sharepoint-list-using-the-wss-adapter-for-biztalk?forum=biztalkgeneral ]
    Regards.

  • How to use "Notes" on my iPad with my existing iCloud address?

    How to use "Notes" on my iPad with my existing iCloud address? It asks me to create a new one...

    Did I overlook some critical info here? I'm having the same problem described by Henry5, but I'm signed in to iCloud with my AppleID which is not the same as my Mobile Me/iCloud email. I keep being asked to create an account (which it won't allow me to do since the account already exists) but no where do I see an option to use the existing account. I also tried logging out with my AppleID account, and using the iCloud email, but that doesn't work.
    I just want to sync my notes and mail... this is really irritating!

  • How to add new row and update existing rows at a time form the upload file

    hi
    How to add new row and update existing rows at a time form the upload file
    example:ztable(existing table)
    bcent                      smh            nsmh         valid date
    0001112465      7.4                       26.06.2007
    0001112466      7.5                       26.06.2007
    000111801                      7.6                       26.06.2007
    1982                      7.8                       26.06.2007
    Flat file structure
    bcent                       nsmh         valid date
    0001112465     7.8     26.06.2007  ( update into above table in nsmh)
    0001112466     7.9     26.06.2007  ( update into above table in nsmh) 
    000111801                     7.6      26.06.2007 ( update into above table in nsmh
    1985                      11              26.06.2007   new row it should insert in table
    thanks,
    Sivagopal R

    Hi,
    First upload the file into an internal table. If you are using a file that is on application server. Use open dataset and close dataset.
    Then :
    Loop at it.
    *insert or modify as per your requirement.
    Endloop.
    Regards,
    Srilatha.

Maybe you are looking for

  • IPhone 3G does not work with car integration after 2.2 update

    I just upgraded my iPhone 3G with the new 2.2 software update and now it doesn't work with my car integration. Very frustrating... I have a 2009 Honda Civic that has a USB interface. Before the update I was able to charge and play music through the U

  • Data not matching in RSA3 and PSA.

    Hi, I have loaded data into BW from a Generic datasource and the values in R/3 and BW are not matching. Upon analysis, I found that the values for a characteristic are not matching even in RSA3 and PSA. All the values for other characteristics match

  • Best Location for Wireless Router in 2 Story House

    Hello. There was a similar post to this before, but it didn't quite address my concern. I live in a two story house. The router is currently placed in one half of the first floor. I am connected to with my dekstop wirelessly via an extended-range usb

  • JDev 3.2 Deployment wizard failed to show public static methods in step #3.

    JDeveloper 3.2 and 3.1 Deployment Wizard ( step #3) does not show any public static methods being deployed as Java stored procedures. The "settings" button is disabled. Is this a demo version of the tool ?

  • How do you clear a used TX?

    I bought a used TX and I am having trouble clear all of the previos owners data off.  Does anyone no how reset the TX? Post relates to: Palm TX