Results 1 to 2 of 2

Thread: Is it possible to remove a field from Mass Update?

  1. #1
    dgewirtz is offline Sugar Community Member
    Join Date
    Oct 2007
    Posts
    20

    Default Is it possible to remove a field from Mass Update?

    I want to remove the Type field from the Mass Update section of the Accounts tab, but I can't seem to find a way to turn a pre-defined field off.

    Thanks in advance for the help,
    David

  2. #2
    Superman's Avatar
    Superman is offline Sugar Community Member
    Join Date
    Oct 2005
    Location
    Kazakhstan
    Posts
    852

    Default Re: Is it possible to remove a field from Mass Update?

    open /modules/Accounts/vardefs.php, find line:
    PHP Code:
    ...
    'account_type' => 
      array (
        
    'name' => 'account_type',
        
    'vname' => 'LBL_TYPE',
        
    'type' => 'enum',
        
    'options' => 'account_type_dom',
        
    'len'=>25,
        
    'comment' => 'The account is of this type',
      ),  
    ... 
    and change it to:
    PHP Code:
    ...
    'account_type' => 
      array (
        
    'name' => 'account_type',
        
    'vname' => 'LBL_TYPE',
        
    'type' => 'enum',
        
    'options' => 'account_type_dom',
        
    'len'=>25,
        
    'comment' => 'The account is of this type',
        
    'massupdate' => false
      
    ),  
    ... 
    Farkhad Rakhimzhanov
    E-mail: farkhad@gmail.com
    Skype: rakikama

    SuperTimesheet and Invoicing — timesheet tool with invoicing for SugarCRM.
    Book time against Cases, Project Tasks and Projects.
    Create invoice regarding booked time, print it in PDF or HTML,
    customize template as you like.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How can I remove Type from MASS UPDATE?
    By rafael.menezes in forum Help
    Replies: 7
    Last Post: 2008-09-03, 03:49 PM
  2. Replies: 0
    Last Post: 2007-06-16, 02:20 PM
  3. Add Custom Field to Mass Update
    By sullivanjc in forum Developer Help
    Replies: 10
    Last Post: 2006-07-31, 06:17 PM
  4. Remove field from mass update
    By markybob in forum Help
    Replies: 5
    Last Post: 2006-05-07, 04:36 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
  •