Data with "," overflows to the next field when importing data with DTW

Dear all,
When I tried to import data with DTW, for the data that includes ",", the data after "," all jumps into the next field after import.
E.g. Column A(memo): bank, United state
       Column B(project code): blank
       Result in SBO: Memo field : bank
                              Project code: United state
I  have tried 2 ways.
1. Save the file as csv, and adding double quote(") at the beginning and ending of the data. However, it didn't work. It didn't work with single quote as well.
2. Save the file as txt, without amending the data at all.
It worked, however, in SBO, double quote is auto added, it becomes "bank, United state".
Please kindly advise how to handle such case.
Thank you.
Regards,
Julie

Hi,
Check this if it is useful :
Upload of BP Data using DTW
Rgds,
Jitin

Similar Messages

  • Data is overflowing into the next fields

    Hi All.
    I am loading Master data of Customer using 0CUSTOMER_ATTR datasource from R3, the load was failed due to Conversion problem. then I checked the PSA data with R3 extractor (RSA3) data. I noticed that some of Customer Address filed data is overlapped with Telephone number data which is next to address. I checked the address field dataelement in both ERP and BW, it is CHAR 35, The data is in chinese characteristics.
    Not able to conclude as Unicode system problem also, because both ERP and BW 3.5 are Unicode systems.
    Could you please explain the reason and solution for this problem?
    Regards
    Sreekanth S

    Hi Chandra,
    Mapping is correct. 0CUSTOMER infoobject is getting loaded for last one year. In the above specified failed load also, we got 13 records, out of 12 records were updated correctly, only the record with Chinese/Korean Characters has got this problem.
    Regards
    Sreekanth

  • How to exclude the note field when importing vCard into into Address Book?

    I am trying to get my contacts from Lotus Notes (Windows) to my Mac Address Book so I can get them to my iPhone. (I know .. it's a bit klugey, but I had to have an iPhone.) When I export the contacts in vCard 3.0 format, send them to my gmail account, and import them into the Mac Address book, it includes odd info in the note field like "CHARSET: windows-1252". I'd like to exclude notes from all addresses without having to go into each individual one in Address Book and delete the notes field. Any ideas?

    Hi,
    From Your code I saw that you called Macro of fieldcat after Calling the ALV Function Did You Check That One.
    Following links may be useful for you ,
    ALV report: How to merge 2 columns into 1 column?
    Hope this information helps You
    Regards,
    Raghava Channooru

  • Jump to the next field

    Hello everyone.
    First, sorry for my english, it isn't my native language.
    I've been looking for a javascript that did jump to the next field when it introduced the character limit in the previous field, but I have not found.
    I would appreciate any help.

    JavaScript - setFocus Method for tabbing to next form field is pretty old but works well with Acrobat created forms.

  • Data moves to the next field with 'tab' or 'click' on writable pdf.

    Anyone experience data moving to the next field with tab or click on writable pdf?

    Thanks Frank. I might do that.
    But I managed to find a temporary solution..yay!!!! :)
    I added in the clientListener for the inputListOfValues' valueChange event
    <af:clientListener method="launchPopUp" type="valueChange"/>
    and in javascript I call the TAB action of AdfLovInternalEvent
    <af:resource type="javascript">
    function launchPopUp(evt) {
    AdfLovInternalEvent.queue(evt.getSource(),AdfLovInternalEvent.ACTION_TAB,true);
    </af:resource>
    so it's forcing to perform the tab action when there is value change. doesn't matter tab or enter or mouse click on something else.
    it seems to work for now..
    I'll have to test it out a few more times to see if there is anything I missed.

  • I set iCloud up last week and the next day when out in the field I could not get Outlook to open up.  I want to change my settings so I can get mail at home or in the field

    I set iCloud up last week and the next day when out in the field I could not get Outlook to open up.  I want to change my settings so I can get mail at home or in the field, not just when i'm at home.  I have a PC and fios internet with Verizon at home.  I have a Sprint air card in the field or access an available wifi.  I want to change my settings to allow for receiving email in the field.  What's the point of an air card and icloud for backup fi it doesn't work in the field for some odd reason?

    Apple - Support - Mail Setup Assistant

  • How can I change the behavior of the Green Enter button when filling out a field in a form? Current it submits the entire form, I would like it to tab to the next field instead

    When using Firefox for Andriod:
    When filling out a field on a form, they keyboard has a Green Enter button that submits the entire form. However, there are multiple fields on the page, and I would like it to tab to the next field. At the very least not submit the form.
    Also, is there a way to configure the keyboard that shows up for each html5 input type?

    They keyboard that shows up has the large "Green Enter" go button, a backspace and some arrow keys, but no tab button.

  • Global binding text disappears once you move to the next field

    I have created this pdf form using Acrobat 7 Professional. now I have ver.8. I also have Adobe Desinger 8.0. I wanted two field to have the same data, so I used global binding. In the preview mode, it works fine. I have add reader extension rights and security to the document. Now when I open it in Adobe Reader 8 and fill the form, it will let me type in and shows up in both the fields, once I move to the next field, the name in the field disappears from both the fields. Any idea?
    Thanks in advance.

    I'm having the same issue. Fields are named independently (my one and only global field is set on the master page, named "Beryllium"). Other fields function as they should and binding is set to normal.
    When I type into my Beryllium global field, then move into another text field below, the typing I entered into "Beryllium" disappears and does not carry over to subsequent pages.
    Anyone help with this frustrating issue?

  • How to submit a page and set the focus on the next field?

    Hello,
    I have a form with some fields and below this a report with a column link. If I change values in the form fields and I click the on a column link the changes in the fields are lost because the page is not submitted.
    I try this: I set on the fields in HTML Form Element Attributes the following:
    onchange="doSubmit('AENDERUNG_UEBERNEHMEN');"
    And I create a branch to the same page. This works great, I dont lost the changes in the fields and I can use the column links.
    But: If I want to walk through the form with the key "TAB" I have to press the key 2 times to come to the next field.
    How can I submit the page and go to the next field?
    Regars,
    Mark

    Hello Mark,
    how about submitting the page when the column link in the report is clicked. To do this, create a column link with an URL target and specify a target like
    javascript:doSubmit('#ID#_AENDERUNG_UEBERNEHMEN').After that I would create a process, that checks if
    substr(:REQUEST,instr(:REQUEST,'_')+1) (or something like that)
    equals 'AENDERUNG_UEBERNEHMEN'. If so, save the change, set the PK value of your target page to
    substr(:REQUEST,1,instr(:REQUEST,'_'))  (to extract the ID)
    Afterwards, create a branch that jumps to the target page.
    Hope that helps
    Stephan

  • How can i do to make the iPod play the next album when the albums that it's playing finish?

    How can i do to make the ipod play the next album when the album that is playing finish? because when tha album that i'm listening to is over ihave to select another, and i want to listen all the albums continuously
    Thanks

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, then sign back in with the other ID.  When you delete the account it will prompt you about what to do with the iCloud data.  If you need to migrate it and merge it with the data in the new account choose Keep on My iDevice; then choose Merge to upload the data and merge it with the new account.  If your data is already in the other account and you don't need to migrate it to the other account, choose Delete from My iDevice.

  • Hello I shut my iMac down to move it to the next room when I plug it back into the wall, hit the power button nothing happens. I tried holding the power button nothing when't back to the first room plug it in where it was 2 mins ago nothing?

    Hello I shut my iMac down to move it to the next room when I plug it back into the wall, hit the power button nothing happens. I tried holding the power button nothing when't back to the first room plug it in where it was 2 mins ago nothing?

    Do you know which iMac model family you have? There are four families dating back to 1998. Troubleshooting depends on that. This forum covers the first three families made from 1998 to 2005. iMacs newer than that get a separate forum.
    Do you have the system disks that came with the computer? If so, and depending on model, you may be able to start from the CD/DVD and then make the jump to booting normally.
    All computers has a little battery on the logic board that holds date, time, and some important startup parameters when the compuer is taken off wall power for a short time. If your battery was very old and died, then the settings the computer needs to start may have been lost when you unplugged it. For some Mac modles, booting from a CD or DVD gets around this temporarily, but ultimately the battery needs to be replaced. The internal batteries are cheap but can be hard to access on some iMacs like the G4 "desklamp" model

  • How do you move automatically to the next field of a form after scanning a barcode?

    Hi, I have been playing around with a barcode scanner (by the way I dont have a clue) and I've converted a form into a PDF document. I'm trying to move to the next field after the data has been populated in a previous field automatically. I'm not sure if this is done within Adobe Acrobat it self or on the scanner.
    The scanner has several different modes, TERMINATION CHAR - CR, TERMINATION - LF, TERMINATION CR+LF and DISABLED.
    I believe one of them put a ENT after the data from a barcode and one of the others doesnt. Any ideas?

    Are you using a handheld scanner and scanning the barcode on screen and wanting the focus to be in the next field after scanning the barcode?
    Otherwise, I am not sure what you are asking. The scanner itself won't do this for you if you actively filling out a form. The field which receives the scanned data could have an exit event which has a setFocus method taking you to the field it specifies. (haven't tested this in a long time, so my presumption is once the data is received it will exit, but focus could remain. In that case, another event would be needed. However, A manual <TAB> will force an exit of the field, and the setFocus() function will excute taking you to the field specified in the method.

  • I cannot get my text to advance to the next line when hitting enter???

    I cannot get my text to advance to the next line when hitting enter.
    Any suggestions??

    When I open Keyboard Shortcuts, the name field under Set: is highlighted in dark blue.  I cannot type a name in it.  The button NEW SET remains ungray.  When I click on the button no change happens to allow me to create new set.
    I also noticed that I am unable to scroll down in the InDesign document using scroll off mouse.
    So I have to click and drag to get around not using the up/down arrows when moving the illustrations.
    If I have to enter text I will use storybook.
    If I have to delete text I will use the InDesign document.
    Very limited with the functionality - I was better off using Adobe InDesign 2.0!
    Will need more time to investigate why the keyboard and mouse are not being recognized.  At this time I will have to use the work-arounds to meet deadlines and revisit later.

  • I "reply"ed to an e-mail message. The next time when I chose to write a new message and type the first letter of the person I replied to earlier, that name and e-mail address appears as a choice included in a pop up list of my contacts.

    I "reply"ed to an e-mail message. The next time when I chose to write a new message and type the first letter of the person I replied to earlier, that name and e-mail address appears as a choice included in a pop up list of my contacts. The persons name is not in my contacts and I would like to delete it from popping up. Do you know how I can do this?

    The Mail app on the iPad/iPhone/iPod Touch does have an option to clear previous recipients. You can learn to live with it.  But if you want to get rid of it, the only way to remove these cached email addresses from the Mail application is restoring the iPhone/iPod Touch as a new phone/iPod.  If you restore from backup, the cache is also restored.
    This article shows you the screens you will see during the restore:  http://support.apple.com/kb/HT1414

  • How do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    how do i get itunes or any other program for ipod to play one song and then stop instead of contiuing playing. I need it to be in the same playlist and ready to play the next song when I press play?

    Good luck.  I tried to do this to cue sound effects for a theater, and never found anything.  iTunes will definitely *not* do this, nor was I able to find any player that would play one song at a time in a single playlist. 
    In my case, I ended up using AutoHotkey to tie individual tracks to the keys on an external keypad. This was an excellent solution for my problem, but I don't think AHK runs on Macs.
    One workaround is to make a folder, and fill it with *shortcuts* to the songs you want (ie, the actual files).  You can change the names to start with numbers to get them in the right order.  Then if you double-click on one it will play just that song.  You'll still have to double-click on each song.
    Might be a good time to learn AppleScript   It would  also be pretty easy to write a Java app to do this.

Maybe you are looking for

  • Printing to a windows Vista shared printer.

    Hello, I have a shared Canon PIXMA MP160 attached via USB to a windows Vista box. I have tried several ways to print to this printer form my macbook. I have tried the normal 'Windows Printing' with no success. It pops up a box with user name and pass

  • Help with LINK WARNINGS and ROLLOVERS in GoLive CS3

    Hello, After I publish my site, I am unable to get the rollovers to work. Could this because I am getting Link Warning messages on all of the pages? I have been troubleshooting for a few hours and can not seem to find the problem. I could use a fresh

  • Blocking a computer in wireless network

    I have a wireless network in my restaurant so all the guest can surf the net for free. I also have my business desktop computer that uses the same internet access with wire. how can I block the wireless users from this computer, so it's invisible and

  • Multi Fader Help

    Hey there, I am still kind of new to flash and actionscript, but my mission is to create a mixing board of sorts that has different channels. Each channel will have its own sound loop that I can play and stop as well as control the volume with the fa

  • GetURL --javascript stops working under Flash 8

    I have ran into a strange problem that I hope is simple to diagnose. I have done many projects where the Flash object calls a Javascript in the parent web page using a simple getURL method, like this: getURL("javascript:resizeSWF("+40+")"); That has