Longtext update on BusiPartner via LSWM

Hi,
we are using in LSMW CRMXIF_PARTNER_SAVE for updating long texts on business partner (bp).
it works, but alreadyexistent_ long texts on bp will be overwritten by LSMW
(so we lost them!).
Have anybody a hint how to avoid this?
We need an update(=append) without loosing existent data.
It seems to be a bug in LSMW CRMXIF_PARTNER_SAVE?
thanks,
Alex

Dear Alexander,
There is no bug here. LSMW is actually a recording tool. So which ever fields you have selected will get recorded. I guess you have run the same in background and found all existing data getting overwritten too.
Now the best way to solve this problem is to get the help of the ABAP person.
In LSMW there is a place where we can write an ABAP code.
There we should request the ABAP person to write a code for the field Long Text that if Value="Null" then to get the value from the tab delimited file else if value is not null then it will jump to the next recording element.
Please try this out. It works.
Regards,
Anirban

Similar Messages

  • Update key mapping via web service

    Hi ,
    I have a question about edit key mapping. The problem is that we create vendors in MDM and syndicate them to different ERP systems. To decide which system a new vendor/changes must be send to, I need the Edit Key Mapping, but the users do not want to enter this information manually and I do not see how I can create key mapping automatically.
    We are working on a new solution where vendors are entered in sharepoint and updated in MDM via web services. I would like to know if one of you know if key mapping can be maintained via a web service.
    Kind regards
    Jonna

    Hello,
    You may use the document,
    [MDM PI via Web Service Key Mapping|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/e0812356-e62f-2c10-76aa-9a02d038ba81]
    Hope this helps your scenario
    Regards,
    Abhishek

  • HT4623 I tried updating to iOS6 via itunes bc my storage space was pass limit and now my phone is telling me it's in recovery mode and I need to restore it. I didn't back it up. How do I take it out of recovery mode and keep the information on my phone?

    I tried updating to iOS6 via itunes bc my storage space was pass limit and now my phone is telling me it's in recovery mode and I need to restore it. I didn't back it up. How do I take it out of recovery mode and keep the information on my phone?

    You cannot.  If it is in recovery mode, the data is already gone.
    Did you fail to make sure everything was on your computer before updating?

  • RE: DataField, update underlying data via TOOL,Express

    John,
    does it work if you mix the "CopyfromClipboard" method with the "PlaceValueinDisplayedField" ?
    If this is not the correct solution to you problem, could you please specify "where" it does not work ?
    Thanks a lot indeed.
    Best regards
    /Stefano
    Stefano POGLIANI Forté Software Consultant
    E-Mail : [email protected] Tel : +33.0)450201025
    Fax : +33.(0)450200257 Mobile : +33.(6)08431221
    Visit the Forté Web Site : http://www.forte.com/
    Ducunt fata volentem, nolentem trahunt....
    -----Original Message-----
    From: John Hodgson [SMTP:[email protected]]
    Sent: Wednesday, July 02, 1997 8:39 PM
    To: [email protected]
    Subject: DataField, update underlying data via TOOL, Express
    In TOOL code we PasteText() into a DataField, but the underlying data
    object does not get updated until the user interacts with the GUI.
    That causes problems if we need to use the underlying data object's
    value immediately after the paste. How can we:
    force an update of the underlying data object and
    ensure that the update goes through before our method call returns,
    i.e., ensure that if the update is via Forte events, those events
    are handled before returning.
    The context is a calendar lookup button that pastes into an adjoining
    DataField.
    John Hodgson |Descartes Systems Group Inc.|[email protected]
    Systems Engineer|120 Randall Drive |http://www.descartes.com
    |Waterloo, Ontario |Tel.: 519-746-8110 x250
    |CANADA N2V 1C6 |Fax: 519-747-0082

    Well, I think I have answered my own question, but I will leave it here in case anyone else has the same problem. 
    So, as far as I have been able to track down, it all went wrong when I was running through the connection wizard. 
    Under the section titled "Creating the Data Source" is describes how to find your database file and create the appropriate connection string. However, on my version of VS Express 2010 . It offered me a prompts , saying something like, "would you like to
    move this database file into the application directory and change the connection string" this sounded very sensible to me, so I said yes.
    All proceeded accordingly. And the database file now appeared in the solution explorer. 
    The app config file said that the connection string was 
    Data Source=|DataDirectory|\Database1.sdf"
    I presumed this would be interpreted correctly by the rest of the app, as it was generated by VS.
    But it didn't, what I cannot understand is how no error was generated. And data seemed to pull
    into the bound controls. 
    But I have been testing it for a while now. and it seems that if I manually override the config file with the actual directory where the file exists , then there is not a problem. Data is retained in the file 
    This is more of a VB.net question, but I couldn't find it in the drop down. I will try and move it there now
    Thanks guys for your patience. 
    p.s. RSingh , the code I posted above did come from the SaveItem_Click event
    handler

  • HT201210 i cant update my iphone via itune. ERROR message 1015. have updated everything, still didn't work out

    i cant update my iphone via itune. ERROR message 1015. have updated and done all the trouble shooting, still didn't work out. I tried, reinstalling everything, nothing happens, this is suck! can't use my iphone!

    http://support.apple.com/kb/TS3694#error1

  • I have updated iOS7 today via iTunes as I was not able to update it directly in the iPhone. After the update I restored the back up and now the iPhone is not getting started. Please advice?

    I have updated iOS7 today via iTunes as I was not able to update it directly in the iPhone. After the update I restored the back up and now the iPhone is not getting started. Please advice?

    That error message suggest you have a permissions issue. Make sure you have full read/write privileges for the Drive/ Folder location that you are copying the files to. 

  • Updating a table via a gui program

    i am trying to update a record via the UPDATE function. My program has a show all button that brings in all the records. When i make a change in the record and click Update. I get the error: Syntax error in string in query expression ''00000' the zeroes represent an updated zipcode. Here is my source code for the update function:
    if(e.getActionCommand().equals("Update"))
    String url = "jdbc:odbc:coffee";
    String driver= "sun.jdbc.odbc.JdbcOdbcDriver";
    Connection con= null;
    Statement stmt =null;
    //PreparedStatement stmt = null;
    ResultSet my_result= null;
    /* String query = "Update CoffeeSuppliers set " +
    "Name='" + comp_Name.getText() +
    "', Address='" + comp_Addr.getText() +
    "', City ='" + comp_City.getText() +
    "', State='" + comp_State.getText() +
    "', ZipCode='" comp_zipcode.getText()
    "' WHERE ID=" + comp_ID.getText();
    String query= "Update CoffeeSuppliers set " +
    "ID='" + comp_ID.getText() +
    "', Name='" + comp_Name.getText() +
    "', Address='" + comp_Addr.getText() +
    "', City='" + comp_City.getText() +
    "', State='" + comp_State.getText() +
    "', ZipCode='" + comp_zipcode.getText();
    try
    Class.forName(driver);
    catch(java.lang.ClassNotFoundException exception)
    System.err.print("ClassNotFoundException: ");
    System.err.println(exception.getMessage());
    try
    con = DriverManager.getConnection(url,"app","app");
    stmt = con.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
    my_result= stmt.executeQuery(query);
    stmt.executeUpdate(query);
    while(my_result.next())
    System.out.println("am i in the while loop");
    my_result.updateString(1,comp_ID.getText());
    my_result.updateString(2,comp_Name.getText());
    my_result.updateString(3,comp_Addr.getText());
    my_result.updateString(4,comp_City.getText());
    my_result.updateString(5,comp_State.getText());
    my_result.updateString(6,comp_zipcode.getText());
    my_result.updateRow();
    stmt.close();
    con.close();
    catch(SQLException sqlex)
    System.err.println("ERROR: " + sqlex.getMessage());
    } //end of the if statement
    Any feedback will be great.
    thanks

    String query= "Update CoffeeSuppliers set " +
    "ID='" + comp_ID.getText() +
    "', Name='" + comp_Name.getText() +
    "', Address='" + comp_Addr.getText() +
    "', City='" + comp_City.getText() +
    "', State='" + comp_State.getText() +
    "', ZipCode='" + comp_zipcode.getText() + "'";I think that it is as simple as the fact that you diddn't close the zipcode string literal being passed to the SQL interpreter. Add the closing ' to the query
    Hope this helps,
    Bamkin

  • HT1600 update Apple TV via settings general update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    update Apple TV via settings>general>update software advise Apple support.  But Airplay won't display the Apple Tv because it needs an updated compatible software. Catch 22. How does one resolve this contradiction please? Paul

    only the following macs support airplay mirror
    http://support.apple.com/kb/ht5404

  • Update is taken via creative cloud

    Hello,
    There was a pending update that I had not done. When I took the update it installed the creative cloud, then I was asked to login and then I was able to take the update for that software.
    I have not signed in for any creative cloud membership. Then why are the updates been taken via creative cloud.
    I am confused. Will all the update be taken via creative cloud. What abou the update manager, will it no longer exists.
    Kindly suggest.
    Thanks.

    HI Swajeet,
    if you have a Perpetual License for the Software then Creative Cloud Desktop App will only install lthe Perpetual Software Updates not the cloud ones. All the future upates will get installed using Creative Cloud Desktop Apps.
    Regards,
    Abhijit

  • Attempting to update iphone software via pc.  itunes engaged.  back up does not appear to have occurred.  device now locked requesting restore action.  anyway to save photos in this status?  or restore after ?

    attempting to update iphone software via pc. itunes engaged. back up does not appear to have occurred.  device now locked. requesting restore action.  anyway to save photos in this status? or restore after?

    it was just the biggest mistake of today, not my life :P
    restoration steps i took were:
    1. connect the dead phone to another pc with itunes turned on
    2. follow the notifications on that itunes
    3. restore the phone
    4. disconnect the phone after the restoration without clicking any buttons of that itunes
    5. connect the phone to my own pc
    6. my own pc can recognize the phone and itunes will try to restore the backup of my phone
    7. restore from the backup on my pc
    8. sync everything (tick all the apps in itunes manually since there is no such button to select all) and reorganize all the apps
    9. after ca. 25 min, the phone is back to the previous sw version

  • Updating the model via AJAX

    Victor,
    I find Tor's and Greg M's bpcatalog documents describing AJAX and JSF useful. However they do not address 'updates'.
    Updating the model via an AJAX request that is handled by the JSF framework as suggested by bccatalog examples is a challenge.
    I am not sure if it is best to use the "Update Model" phase of the life cycle or just cheat and put he update code in the tags render response phase. Also, it appears that the "update model Phase" may not be included in the lifecycle as the ajax request is not really a JSF "postback".
    Does anyone know what tradeoff result in doing an update in the Render Response Phase?
    Cheers,
    Godfrey

    I've tried updating the model using AJAX and a RenderPhaseListener, but never succeeded. I have a simple CRUD form with two selectOneMenu components, some text boxes, and a submit button. When a selection is made in the first select list, an AJAX call is made that populates the second select list. Once that happens, the second select list contains a different list of <f:selectItems> in the DOM than it does in the underlying component model. If the array of SelectItems that are used to populate the second select list is in a managed bean, when the form is submitted, the second select list fails validation (Validation Failed: Not a Valid Value) because the selected item exists in the DOM, but not in the SelectItem array in the managed bean. To work around this, I placed the SelectItem array in the session, instead of in the managed bean. When the AJAX call is made, the backend Java code updates the SelectItem array in the session. This prevents the model and the DOM from getting out of synch. I hate putting anything in the session, because sessions tend to die, but this is the best workaround I could come up with. I'm open for any better solutions. Oh, by the way, if I use AJAX enabled select lists on a JSF page in a JSF 1.0 web app, the Invoke Application phase is mysteriously skipped when the form is submitted, which prevents the form contents from being saved. If I use JSF 1.1_01, the form saves like a charm. You gotta love being on the bleeding edge.

  • I cannot update my iPhone via my primary iMac,yet i can on another iMac anyone have a solution?

    I cannot update my iPhone via my primary iMac,yet i can on another iMac anyone have a solution?
    THANKS IN ADVANCE
    ed

    When I try to open iPhoto it says: "In order to open iPhoto, you need to update to the latest version.  Please run Software Update to install it now."
    I have run the Software update and it is current. 

  • TS1702 How do I update my apps via App Store on iTunes 11? I can't see the "update" button. Thank you.

    How do I update my apps via App Store on iTunes 11? I can't see the "update" button. Thank you.

    You can download updates to your computer's iTunes via the Check For Updates button at the bottom of the Apps section of your iTunes library. When they've been downloaded, and if you haven't already done so, connect the iPad to your computer and select it on the left-hand side of iTunes (if you don't have the left-hand sidebar showing then you can enable it via option-command-S on a Mac, control-S on a PC), and on the Apps tab on the right-hand side clicking the Sync button at the bottom of it should install the relevant updates.

  • I have just updated my iphone via iTunes on my iMac. The phone took so long to restart that iTunes no longer recognises it. How can i reinstate it?

    I have just updated my iPhone4 via iTunes, but the phone took so long to restart the program no longer recognises it. How can I reinstate the iphone with iTunes?

    Hello Di57
    If you are having issues with your iPhone not showing up in iTunes, then check out the article below to resolve the issue. Also check your iPhone to see if a prompt is asking to trust your computer.
    iOS: Device not recognized in iTunes for Mac OS X
    http://support.apple.com/kb/ts1591
    Regards,
    -Norm G.

  • [Mac] Caution on Updating Epson drivers via Software Update- 3800

    I ran the Apple supplied updater for Epson drivers, and my 3800 dialog slipped backwards; this on my G5 desktop. The cure was easy enough: ran the Uninstaller that exists in the Beta 3800 driver, and reinstalled.
    One of the more disturbing "features" is that the Summary will tell you you're printing in either 360 x360 'DPI', or 720 x 720 'DPI', even when you're printing at high levels, say 1440 or 2800 DPI.
    Even if it's trying to tell you it's receiving data at 360 PPI, it's usually not the case. Kinda makes me feel uncomfortable using this "update".

    You should be able to get any updates from Apple via the Support/Downloads on the main Apple.com page. Any peripheral drivers that Apple has not updated would need to be downloaded from the manufacturer's web site.

Maybe you are looking for

  • Open Sales order data

    Hi,    Can any one please help on identifying the table used for retrieving Open sales order data for a particular period, My requirement is to take the Volume of open sales order for Data migration volume assessment   Please help on this Thanks Raje

  • Put a dummy column in a view

    Hi, How to add a dummy column like 'Status' and all its value as "Closed" in a view. This column is not related to any table.

  • Mulit-colored artifacts using Spot Healing Brush-CS3.

    This is the first time using this tool. Not sure what's causing this (see attached screengrab of tiff image captured at 200% view). These colored artifacts happen only after using the Spot Healing Brush tool in CS3 AFTER I save, close and reopen the

  • Map module not finding photos from track log

    I have created GPX files on my phone, loaded them into the map module and selected the corresponding photos. When I select "Auto-tag selected photos" from the pop-up menu where I loaded the track I get an error saying "No Matching Photos" I have chec

  • Acrobat Reader 8.1.2 document icons are missing.

    Hello, In our company, we have deployed Adobe Acrobat Reader 8.1.2 through GPO. We used the Adobe Customization Wizard to generate a MST file (Updates disabled). At first, all seemed to work perfect. A moment later we noticed that the icons of the PD