Results 1 to 2 of 2

Thread: Update (mass) Account Addresses to Contacts

  1. #1
    bilguun.m is offline Junior Member
    Join Date
    Mar 2007
    Posts
    3

    Default Update (mass) Account Addresses to Contacts

    I am about to start on a mailing campaign and just discovered some problems with my database. Many of my contacts are missing the address information of the Accounts they are under. I know that SugarCRM has the "copy" button to copy individual Account address details to Contacts. But is there a way of doing this for a large number of records in Sugar? Or do I need to run an SQL query to import Addresses from Accounts to relevant Contacts?

  2. #2
    vasi2me is offline Senior Member
    Join Date
    Jun 2008
    Location
    India
    Posts
    25

    Default Re: Update (mass) Account Addresses to Contacts

    Hi bilguun,

    You can try this,

    Code:
    update contacts c, accounts a, accounts_contacts ac
    set c.primary_address_city = a.billing_address_city
    where a.id = ac.account_id and ac.contact_id = c.id and (c.primary_address_city = '' OR c.primary_address_city is null)
    
    update contacts c, accounts a, accounts_contacts ac
    set c.primary_address_state = a.billing_address_state
    where a.id = ac.account_id and ac.contact_id = c.id and (c.primary_address_state = '' OR c.primary_address_state is null)
    
    update contacts c, accounts a, accounts_contacts ac
    set c.primary_address_country = a.billing_address_country
    where a.id = ac.account_id and ac.contact_id = c.id and (c.primary_address_country = '' OR c.primary_address_country is null)
    
    update contacts c, accounts a, accounts_contacts ac
    set c.primary_address_postalcode = a.billing_address_postalcode
    where a.id = ac.account_id and ac.contact_id = c.id and (c.primary_address_postalcode = '' OR c.primary_address_postalcode is null)
    I know tis is a dirty way of doing things but should server the purpose.

    Please use it at your own risk.

    Thanks
    Vasi.
    Thanks,
    Vasiuddin.
    Aspire Systems

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 2
    Last Post: 2010-12-10, 05:32 AM
  2. Replies: 0
    Last Post: 2007-09-20, 12:17 PM
  3. Contacts - hiding Mass Update
    By rogersugarsugar in forum Help
    Replies: 8
    Last Post: 2007-09-14, 10:51 PM
  4. Replies: 0
    Last Post: 2006-07-25, 11:45 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •