Welcome to Good Training Sign in | Become a member - FREE!
 

how do i change opp account manaer

Last post 06-06-2008, 3:46 AM by Mike Spragg. 3 replies.
Sort Posts:
  •  06-05-2008, 9:45 PM 1254

    how do i change opp account manaer

    i have noticed that there is a differnet account manager for an opportunity, and a different for the account

    how can i make them the same,

  •  06-06-2008, 3:18 AM 1256 in reply to 1254

    Re: how do i change opp account manaer

    This is normal behaviour - as it's unreasonable to expect a 1:1 relationship between the account, their contacts and all the opps. To make them the same you just change them - there is nothing automatic to do this.
  •  06-06-2008, 3:28 AM 1257 in reply to 1254

    Re: how do i change opp account manaer

    Hi,

    When you insert an Opportinity it should default to the account account manager unless changed. However, if you want to update all records to match then you can run the following SQL update:

     

    Update OPPORTUNITY
    Set Opportunity.accountmanagerid = Account.accountmanagerid
    FROM ACCOUNT LEFT JOIN OPPORTUNITY ON ACCOUNT.ACCOUNTID = OPPORTUNITY.ACCOUNTID
    Where Opportunity.accountmanagerid <> Account.accountmanagerid

    Backup the database first!

    Regards, Adam Travers

  •  06-06-2008, 3:46 AM 1259 in reply to 1257

    Re: how do i change opp account manaer

    Hi Adam, beware the FROM clause (provider not supported) if this customer has remote db's. Smile
View as RSS news feed in XML