DTW BP Bill to Address importing Problem

Hi All,
I am using SAP Business One 2005B  and during import of Business Partner through DTW I am not able to import bill address .
Can anyone let me know from where i can put the ship adress in csv file format.

Please expand on what you mean by I am not able to import bill address
Let me know what are the steps you are following and how your Address template is filled
Suda

Similar Messages

  • How to set default bill to/ship to flag for addresses imported via DTW?

    Hi experts,
    I'm currently preparing the initial import of Business Partner Master Data but I'm struggeling a bit with the logic behind the dtw templates.
    From my perspective the best way should be to import first the Business Partners general information and then import all addresses with the seperate address template. But how is it possible to define the default bill to and ship to addresses in this template!?
    As alternative way I thought about importing the default ship to and bill to addresses with the general master data and import all additional addresses with the address template. But the geneal BP template seems lacking some fields like street no for example!? What means these addresses will miss this information.
    What is your recommened way in this case?
    Thanks in advance for any hints!

    Hi,
    Check SAP notes:
    1300954 - How to Update BP Addresses correctly via DTW.
    979116 - How to import BP addresses and set the default
    Thanks & Regards,
    Nagarajan

  • DTW Legacy Import problem

    One of our clients wants the previous two years of invoices and POs imported. DTW does not like to import closed documents.
    We tried importing them as open documents and then closing them . This did not work out so well, as not all documents loaded correctly. Problems with returns and credit memos.
    Has anybody else had to import legacy data like this? 
    Anybody have any ideas on how to import all the closed documents?

    Bob,
    There is no guess work for the user, you will have appropriate formatted searhes to search the invoices.
    I am just suggessting whats best for you and the Client.
    If you still are inclined to import everything in to the SAP table.  Then you need to bring stock in and so all the transactions.
    If you find any better way then please post it here
    Suda

  • Importing address book problem

    Hi, hope someone can help.
    I'm trying to import an address book from a Virgin pay as you go SIM into a Blackberry Pearl 8110.  I can see the address book when I view the 'SIM address book' option and can dial out from here and the view is very basic not the normal BB address book view.  But I can't SMS from this SIM address book. 
    I've used the wizard to try and import the contacts into the BB address book but it just imports the contact names but not the numbers.  If I try and select oneof these names nothing happens, its like the address book has frozen.  I also cannot open the menu option when in address book either unless I delete all the individual names that have been imported, then I can select the menu option. 
    I've also tried adding a contact from scratch on the BB but as soon as I save the data (just name and number) it again goes into freeze and I cant open that contact even though I have just entered it.
    If someone sends me an SMS I can reply to it directly from the SMS, but cant create a new SMS taking a contact number from the address book.  It just wont open the contact list. 
    I've just unlatched the BB so I can use it as a phone using Virgin PAYG credit I have.
    Can anyone help with this contact address book problem?
    Cheers J    

    Jason70 wrote:
    Hi, hope someone can help.
    Greetings, and welcome to the BlackBerry.com Support Forums.
    Jason70 wrote:
    I've just unlatched the BB so I can use it as a phone using Virgin PAYG credit I have.
    What does that mean?
    It is always helpful to receive help, to include your exact BlackBerry device model # and carrier name, so that when you have a question, that information won't need to be asked up front. Also, stating your device Operating System version is normally another common question, found on your BlackBerry at Options > About, third line down, looks like "v4.x.x.xxx"
    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

  • Pay Vendor bill-to address not default bill-to address prints default addr

    Customer has vendors with multiple bill-to addresses. They can create an AP invoice and select an address other than the default which works fine. When they go to pay the vendor, the check does not print the bill-to address on the AP invoice. It prints the BP default bill-to address. If you open checks for payment it brings in the default address and not the address you put on the AP invoice. Is there any way to change this? Why would we use multiple bill-to addresses if we can only pay the default?

    I must have mistated the problem. The pld is printing exactly what is on the Checks for Payment window. The problem is when you create an Outgoing Payment - either manually or through the Payment Wizard, the mailing address on the AP invoice changes to the default mailing address in BP Master Data no matter what is on the AP invoice. You have to manually change the address back to the billing address on the AP invoice if it is not the default. Is there a setting I am missing, Is this a bug or is this by design. If by design it does not make sense to have multiple bill-to addresses in one vendor.

  • Creating BusinessPartner with both mail to and bill to address

    Hi,
    I am having problem creating a business partner with both mail to and bill to address. I want to create two instances (lines) in BPAddresses; one with mial to address and another with bioll to address. But I still get the error code -5002 with the message "Address is empty [OCRD: CardCode} line:1"
    Below is my code in C#:
    SAPbobsCOM.BusinessPartners bp = (SAPbobsCOM.BusinessPartners) conn.InternalConnection.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oBusinessPartners);
                   bp.CardName = "Test Tester";
                   bp.CardType = SAPbobsCOM.BoCardTypes.cCustomer;
                   bp.CardCode = "TEST29";
                   bp.Address = "1305 Blue Raven Blvd";
                   bp.City = "Citrus Height";
                   bp.Country = "US";
                   bp.BillToState = "CA";
                   bp.ContactPerson = "Peter Snicker";
                   bp.Currency = "USD";
                   bp.ZipCode ="94521";
                   string errMsg;
                   int errCode;
                   int returnval = bp.Add();               
                   if(0 != returnval){
                        conn.InternalConnection.GetLastError(out errCode, out errMsg);
                        Console.WriteLine(errMsg);
                        return;
                   string cardCode;
                   conn.InternalConnection.GetNewObjectCode(out cardCode);
                   //Console.WriteLine("Added BP successfully",cardCode);
                   bp.GetByKey(cardCode);
                   bp.Addresses.Add();
                   bp.Addresses.SetCurrentLine(1);
                   bp.Addresses.AddressType = SAPbobsCOM.BoAddressType.bo_ShipTo;
                   returnval = bp.Update();
                   if(0 != returnval){
                        conn.InternalConnection.GetLastError(out errCode, out errMsg);
                        Console.WriteLine(errMsg);
                        return;
    I would appreciate if anyone can help me with this problem.
    Thank you in advance,
    Sunny

    Hi Sunny,
    The reason for your error is that you're trying to add a blank ship to address.
    bp.Addresses.AddressType = SAPbobsCOM.BoAddressType.bo_ShipTo;
    returnval = bp.Update();
    you are just specifying a type and then trying to update. If you want to add another line, you have to set some properties, like:
    bp.Addresses.AddressType = SAPbobsCOM.BoAddressType.bo_ShipTo;
    bp.Addresses.AddressName = "My Address";
    etc...
    etc...
    returnval = bp.Update();
    Hope it helps,
    Adele

  • Error: Ship to/Bill To Address is Invalid. Please review the Address Setup

    After Upgrading to 12.1.3, Orders are failing during Import/Scheduling with "Error: Ship to/Bill To Address is Invalid. Please review the Address Setup" whenever Tax Engine is called. And this is happening for only specific addresses (that are vaild). I will appreciate any experience/suggestion on this regard.
    Thanks,
    Dipanjan

    ---  Here's a skeleton structure of the PLSQL that you should use----
    l_location_rec          APPS.HZ_LOCATION_V2PUB.LOCATION_REC_TYPE;
    -----Use this to find a good address from existing TCA in Oracle, by passing only the zip code:
    SELECT hgi.identifier_value,hg.geography_element4_id
                       ,hg.geography_element1 country
                       ,hg.geography_element2 state
                       ,hg.geography_element3 county
                       ,hg.geography_element4 city
                       ,hg.geography_element5 postal_code
                 FROM apps.hz_geographies hg,apps.hz_geography_identifiers hgi
                WHERE hgi.geography_id  = hg.geography_element4_id
                  AND hg.geography_name = :pp_zip_code
                  AND hg.geography_type = 'POSTAL_CODE'
                  AND primary_flag='Y';
    -----The Update the Location
                 l_location_rec.CITY  := rec_get_geo_elements.city;
                 l_location_rec.COUNTY := rec_get_geo_elements.county;
                 l_location_rec.STATE := rec_get_geo_elements.state;
                   hz_location_v2pub.update_location (p_init_msg_list           => FND_API.G_TRUE,
                                           p_location_rec            => l_location_rec,
                                           p_object_version_number   => l_object_version_number,
                                           x_return_status           => l_return_status,
                                           x_msg_count               => l_msg_count,
                                           x_msg_data                => l_msg_data);

  • Bill to Address same as Ship to

    I'm new to JavaScripting and I'm trying to create a PDF form that has a check box that when checked will auto fill information.  Specifically, when the user fills out the bill to address they can click the check box "same as billing" and it will populate the ship to address.  Any advice would be greatly appreciated.   
    My data fields are as follows:
    BTName
    Billaddress1
    Billaddress2
    BillCity
    BillState
    BillZIP
    SAMEAS (this is the check box)
    STName
    ShipAddress1
    ShipAddress2
    ShipCity
    ShipState
    ShipZIP
    My JavaScript that I added to the check box is as follows:
    // check the state of the button
    if(this.getField('SAMEAS').value == '1') {
    // checked
    // copy requestor information
    // get each requestor field object's value and set the sponsor field's value
    this.getField('BTName').value = this.getField('STName').value;
    this.getField('BillAddress1').value = this.getField('ShipAddress1').value;
    this.getField('BillAddress2').value = this.getField('ShipAddress2').value;
    this.getField('BillCity').value = this.getField('ShipCity').value;
    this.getField('BillState').value = this.getField('ShipState').value;
    this.getField('BillZIP').value = this.getField('ShipZip').value;

    Sorry for not mentioning the problem...I was actually not getting anything to happen.  I do have the trigger to be mouse up, and run JavaScript.  Now with the updated script when I check the box it clears all the bill to address info and nothing appears in the shipping fields?  Thanks so much for the quick response.  
    I just updated the script to the following:
    // check the state of the button
    if(event.target.value !== 'OFF') {
    // checked
    // copy requestor information
    // get each requestor field object's value and set the sponsor field's value
    this.getField('BTName').value = this.getField('STName').valueAsString;
    this.getField('BillAddress1').value = this.getField('ShipAddress1').valueAsString;
    this.getField('BillAddress2').value = this.getField('ShipAddress2').valueAsString;
    this.getField('BillCity').value = this.getField('ShipCity').valueAsString;
    this.getField('BillState').value = this.getField('ShipState').valueAsString;
    this.getField('BillZIP').value = this.getField('ShipZip').valueAsString;

  • I want to suspend my verizon service. However, this service is not available at this time.... Could you help me to address this problem? How can I suspend the service?

    I wanted to suspend my verizon service, but I couldn't. The web shows "the service is not available at this time. Try it later..." How can I address this problem??

    Greyson_Roberts wrote:
    Hey ChristinaB_VZW, I sent you a follow request I'm still the same person on the same account this is just my username for the forums on my line. I'm also GreyR16 but registered under my moms line by accident. The problem went away but now it says we have pending orders so the plan can't be changed. What does that mean? Is that maybe where we dropped moms insurance for the next billing a cycle and added data for my dad halfway through the month?
    You have to wait until the billing cycle ends before making any more changes to the account. The dropped insurance is definitely an example of a "pending order". Depending on how the data plan was changed on your dad's line, it might also be a pending order.

  • LR3.2 import problem on computer with Windows OS

    LR3.2 import problem on Windows OS
    This is a continuation of a question that I posed on August 22, 2010 in the discussion string "Cannot import CR2".  I have not been able to resolve the issue of importing an image into an existing folder location.  I had not been able to work on this issue for a number of weeks due to other circumstances, until today.   Note that the following people had attempted to provide answers and suggestions already:  ssprengel, JayS In CT.
    I use a laptop with a Windows operating system and a Macintosh desktop with Snow Leopard.  I run Lightroom on both of them.  The Windows laptop has Windows Vista Home service pack 2, version 6.0 [6002].  Around August 12th I upgraded from Lightroom 2 [481478], to Lightroom 3 on the laptop.  I left the LR2 on the laptop as well as LR3.  On September 12th I upgraded the laptop to LR3.2.  No other changes have been to the laptop or its software applications that I know of.
    My current attempts at resolving the issue reveal that when I created a new catalog "Test Catalog" in LR3 and saved that catalog to my desktop new folder labeled "Test Catalog" that I can import an image into LR3.2 to a new folder on the laptop's desktop.  I then deleted the images via LR3.2 Folders Remove function and tried to import the images into an existing folder as presented in the LR3.2 Import dialog, but get the error message "The following files were not imported because they could not be read.".   When I import images into a new folder placed on the desktop, I can use all functions in LR3 e.g. Develop module.  I cannot import images into existing folders on the laptop's hard drive - I have tried importing into the entire existing folders in the following hierarchy:  c:\users\Michael\My Documents\My Pictures\2010  but always get the same error message.
    LR3.2 does correctly backups upon exiting each time I quit the program, so I know that there isn't any issue of writing to that backup folder which is contained in an upper folder that contains the lightroom catalogs.  I have even created a new Word file, saved it into the folder with Lightroom catalogs, opened it up, modified it, saved it, and saw that it works OK, so that tells me there is no problem with a Read-Only folder attribute.
    I cannot recall if upon the upgrade from LR2.6 to LR3 that I chose to upgrade the catalog to LR3 version.  Would that matter, if yes, what do I verify, how do I manual upgrade the catalog.
    History of actions between August 10th that I have taken follows between the [[[[ and ]]]]:  
    [[[[Preference settings for Default Catalog are set to start with a specific catalog that I call "Lightroom master catalog", it is not set to the "Load most recent catalog". 
    All of the following were using my laptop:  Previously I had no problem with LR2 for any functions.  I just purchased an Epson 7000 media storage device, and in early August and practiced importing images into LR2, and those images were pulled in OK. Next, I upgraded to LR3.  I discovered that the Epson's images had been placed into a wrong folder when I opened LR3.  I used the remapping function in LR3 to move the images into the correct folder.  Next, I used a SanDisk card reader to import images into LR3 into an existing folder of images, but the following error message appeared "the following files were not imported because they could not be read" (Import Results said  'some import operations were not performed').  I tried importing a single image, and multiple images, but had the same error.  I tried switching the card reader to each of 4 different USB port on the laptop, with the same error occurring on each USB port used.
    In order to try to isolate the problem.  I took the SanDisk card reader with the memory card and successfully imported the images into LR3 on my Macintosh desktop computer; so to me the problem is not the card reader or the memory card.  I also used the SanDisk recovery disk while using my laptop to look at the files on the memory card and I could see all the images correctly while in the recovery program, but I have not copied the images to the laptop's hard disk, and have not tried an import into the laptop's LR3.  I did not import images directly from my camera to the laptop LR3 since I did not think it would help with the troubleshooting. 
    I then ran the Repair from the Adobe LR3 CD upgrade disk, on my laptop.  Then I tried doing the import using the SanDisk reader and memory card, but the same problem occurred and same error message, that the files could not be imported (I was trying to import into a folder of existing images).  I then used the Laptop's Control Panel function to remove LR3 application.  Then I did a fresh upgrade of LR3 on my laptop, but the same error message and I am unable to do any import of the memory card from the card reader.  I then tried to do an image import from the Epson 7000 into the laptop, and the same error message and I am unable to do any import into a folder with existing images.   I then tried doing an image import into LR2 on the laptop, and got the same problem to occur when trying to import into an existing folder of images.  I have a couple of  Canon EOS SLR digital cameras, and the issue occurs for any of the file types of the cameras.
    Went into LR3 Preferences, General Tab, I now checked the previously unchecked box for Import Options - "Show import dialog when a memory card is detected".
    Connected the Canon XTi directly with a cable to the laptop computer.  Note that Canon's information said that Picture Transfer Protocol is automatically used when the XTi is directly connected to a computer, so I did not need to change anything in the camera's menu for communications choices (there is no communication menu in fact).  I selected one image and copied it to the laptop desktop.  Tried to import it into LR3 into a folder of existing images but got the error message "Could not copy a file to the requested location."  While in LR3, I changed the location of where the file would be copied into - any of my existing folders of images; tried 5 different folders, but kept getting the same error message.
    With the card reader connected via USB port on the laptop, I copied one image file to the desktop, and then tried importing into LR3 into a folder of existing images.  Got the error message "Could not copy a file to the requested location."]]]]

    I am not clear if by 'import' you are trying to copy or move the files from a location to another or if you are adding the files to a catalog.  My comments may not, therefore, be too helpful.
    Firstly, with both LR2 and LR3 installed you will have both catalogs present, but if you try to open the LR2 catalog with LR3 you will be prompted to update the catalog.  You will thus know which catalog you are working on. 
    Secondly, if you are reading direct from the camera, you should connect using the 'PC connection' mode.
    Thirdly, there is an issue with reading .CR2 files directly from the early Canon DSLRs (in Europe named 300D, 350D, 400D).  While they are visible with the Canon software, they can not be seen with Windows explorer nor can they be accessed with Lightroom. 
    I suggest that you take the CF card out of the camera and copy the files using Windows Explorer in to the destination folder.  You are then sure that the files are on the PC.
    If you have the right Codec installed, you can view them with Windows photo gallery; if you don't, you can use one of the Canon software packages to view the files.  You are then sure that the files are not corrupted.
    Then import the files to your LR catalog using the normal import routine selecting 'add without moving'.  I have tried this routine  successfully using my 350D using both LR1.x and LR3.x.  If that doesn't work - I'm lost.
    Frank

  • Since upgrading to Windows 8.1, iTunes no longer recognizes my iPhone or iPad.  I tried to reinstall iTunes.  That did not address my problem.  Any suggetions on what I should do?

    Since upgrading to Windows 8.1, iTunes no longer recognizes my iPhone or iPad.  I tried to reinstall iTunes.  That did not address my problem.  Any suggetions on what I should do?

    Hey Bob0725!
    Here is an article that will help you troubleshoot this issue:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • On windows 8 and itunes I have importing problems the DVD is only reading the music cd from 1.5x to 4.0x for 95% of the time, it does hit speeds of 30x for the other 5% of the time. Is it a driver issue with the DVD or is it  a windows 8 issue?

    on windows 8 and itunes I have importing problems the DVD is only reading the music cd from 1.5x to 4.0x for 95% of the time, it does hit speeds of 30x for the other 5% of the time. Is it a driver issue with the DVD or is it  a windows 8 issue?

    No. You have no alternative but to plug it into a computer running iTunes and restore it.

  • Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive but many are not showing up in Aperture.

    Aperture Video Import Problem - from Lumix GH4: Imported clips have their dates changed to the import date.  The files show up on the hard drive with import date not created date, but many of these same files are not showing up in Aperture. Sometimes the clips actually show up with the current import but take on the video information from a previously imported file.

    It was suggested I move this question to IPhoto or IMovie which I did. 
    Well moving to a different discussion group did not provide an answer to this question either. But what I finally did was import one batch of photos and videos into IPhoto for a given day at a time. Working with these I could change the date and times in order to get them in the original sequench taken. Then I would create an album with that batch. These would all be on the same day (IMove was closed for this phase). Then I would open IMovie, generate the thumbnails for that album, and select the album I had created. This was necessary because the importing process in IPhoto was using incorrect dates for my video so it was a real struggle finding them in IMove until I developed this approach.
    I believe that this whole process was so screwy because I was importing from an external hard drive not a camera. I had these photos on a PC and did not have the original cameras to use to import directly which I am fairly sure would have made this easier!

  • Final Cut Pro/GY-HD111E import problems?

    Final Cut Pro/GY-HD111E import problems?
    With a brand new Mac Pro and very latest Final Cut Studio complete with updates I'm having a little problem trying to import footage directly from a JVC GY-HD111E (yes I'm in PAL land, UK) via FireWire into FCP.
    Footage is 720p/25p and timeline is set up in FCP that way.
    I'm doing a 'capture now'. The first clip I'm trying to import is about 45 minutes long with no cuts/breaks whatsoever.
    What happens is after about 60 seconds or so, it FCP automatically breaks the clip for no reason and starts a new one, trouble is, when it does this I lose about 4 seconds of footage at that point.
    It continues to break clips randomly, sometimes after 40 seconds or so, sometimes after 95 seconds, but usually between 30 seconds and 2 minutes and each time it starts a new clip I lose between 1 and 6 seconds.
    As I say, there are zero breaks or cuts in this clip, I have a 45 minute clip that was shot in one take, not even a pause anywhere.
    Is this a JVC issue or a Final Cut issue?
    It's a pain as it simply means I can't import my 9 hours of footage hence I can't get on with this project.
    Any ideas why this phenomenon is happening?
    Thanks guys.

    I mean I get the same errors.
    Let me explain again.
    There are NO start/stop/pauses in this clip.
    I'm trying to import just ONE clip with no breaks, again, there are NO start/stop/pause, it is one continuous clip of 15 minutes duration.
    The JVC creates some sort of errors at the Firewire output stage, it drops frames or other errors, FCP gets confused and creates a new clip, even though it is the same clip, but due to the GoP structure, it looses a few seconds too hence I can't import the footage as I keep loosing bits here and there mid clip. It is randam, every 30 to 100 seconds or so it will do this.

  • Ship to and bill to address

    Hi experts
    I am newly installed sap bone 2005B version.I using OEC computers.I creadted one customer with ship to and bill to address. but in that address is not come in print lay out.
    I selected database and given Bill to address in respective area.
    what is the reason?
    pls tell me
    regards

    Hi
    1. yes
    2. system PLD also
    3. yes i changed my PLD but it will not come
    Now i understood the correct one, the customer bill to address not come in the invoice logistics part.
    I create the customer this also not come in the Logistics bill to address part as well as ship to address.
    what should i do?
    regards

Maybe you are looking for