Results 1 to 3 of 3

Thread: How to add Account To Lead Mass Update

  1. #1
    mikestuart is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default How to add Account To Lead Mass Update

    How can I add the Account Field To the Lead Mass Update form?

  2. #2
    kuske's Avatar
    kuske is offline Sugar Community Member
    Join Date
    Oct 2007
    Location
    Germany
    Posts
    2,597

    Default Re: How to add Account To Lead Mass Update

    Hi mike,
    just change in modules/leads/vardefs.php

    PHP Code:
      'account_id' =>
      array (
        
    'name' => 'account_id',
        
    'type' => 'id',
        
    'reportable'=>false,
        
    'vname'=>'LBL_ACCOUNT_ID',
        
    'comment' => 'If converted, Account ID resulting from the conversion'
      
    ), 
    to

    PHP Code:
      'account_id' =>
      array (
        
    'name' => 'account_id',
    //    'type' => 'id',
        
    'type' => 'account_name',
        
    'reportable'=>false,
        
    'vname'=>'LBL_ACCOUNT_ID',
        
    'comment' => 'If converted, Account ID resulting from the conversion'
      
    ), 
    regard
    hk

  3. #3
    mikestuart is offline Member
    Join Date
    Jul 2007
    Posts
    8

    Default Re: How to add Account To Lead Mass Update

    That worked, how would I add campaign to mass update?

    (I tried putting mass_update=true in vardefs.php, but it does not show up.)

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 11
    Last Post: 2011-05-17, 02:14 AM
  2. Replies: 0
    Last Post: 2007-02-05, 09:49 PM
  3. Mass Update won't work!
    By rsantiago in forum Help
    Replies: 6
    Last Post: 2006-08-18, 02:54 AM
  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
  •