Results 1 to 4 of 4

Thread: Notes in list view - missing contact first name

  1. #1
    markp is offline Sugar Community Member
    Join Date
    Dec 2007
    Posts
    11

    Default Notes in list view - missing contact first name

    We are working on upgrading our Sugar installation from 4.5.1 to 5. In version 5, in the History subpanel, the Contact column now only shows a last name for Notes. Archived emails continue to show first and last name, but Notes only show a last name. This is strange to me, since version 4.5.1 showed first and last name for Notes.

    This is true for our test installation, as well as the online SugarCRM demo. Does everyone else see this in their version 5 install as well?

    Apologies if this has already been covered or entered as a bug, but I couldn't find it when searching.

  2. #2
    kbrill's Avatar
    kbrill is offline SugarCRM PS Engineer
    Join Date
    Jul 2004
    Location
    St Louis, MO
    Posts
    3,183

    Default Re: Notes in list view - missing contact first name

    It is a bug (#23411 to be exact) and the fix seems to be to edit the modules/Notes/Vardefs.php file and change

    PHP Code:
     'contact_name'=>
         array(
            
    'name'=>'contact_name',
            
    'rname'=>'last_name',
            
    'id_name'=>'contact_id',
            
    'vname'=>'LBL_CONTACT_NAME',
            
    'type'=>'relate',
            
    'link'=>'contact',
            
    'join_name'=>'contacts',
            
    'isnull'=>'true',
            
    'module'=>'Contacts',
            
    'source'=>'non-db',
            ), 
    to this

    PHP Code:
     'contact_name'=>
         array(
            
    'name'=>'contact_name',
            
    'rname'=>'last_name',
            
    'id_name'=>'contact_id',
            
    'vname'=>'LBL_CONTACT_NAME',
            
    'type'=>'relate',
            
    'link'=>'contact',
            
    'join_name'=>'contacts',
            
    'isnull'=>'true',
            
    'module'=>'Contacts',
            
    'source'=>'non-db',
            
    'db_concat_fields' => array(
                
    => 'first_name',
                
    => 'last_name'
                
    ),        
            ), 
    Kenneth Brill - Help Forum Moderator

    I do not respond to 'Private Messages'. Please email me directly instead

    When asking for help, PLEASE give us your Server Information and Version Numbers as asked for on the 'Post New Message' screen as well as any JavaScript errors shown at the bottom of the browser window.
    Help us Help You

  3. #3
    kbrill's Avatar
    kbrill is offline SugarCRM PS Engineer
    Join Date
    Jul 2004
    Location
    St Louis, MO
    Posts
    3,183

    Default Re: Notes in list view - missing contact first name

    Just a note, after you make those changes you need to run a quick repair to make them live.
    Kenneth Brill - Help Forum Moderator

    I do not respond to 'Private Messages'. Please email me directly instead

    When asking for help, PLEASE give us your Server Information and Version Numbers as asked for on the 'Post New Message' screen as well as any JavaScript errors shown at the bottom of the browser window.
    Help us Help You

  4. #4
    markp is offline Sugar Community Member
    Join Date
    Dec 2007
    Posts
    11

    Default Re: Notes in list view - missing contact first name

    Thanks very much for your help, and for providing a fix. Works great.
    Last edited by markp; 2008-07-07 at 10:42 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 4
    Last Post: 2009-10-28, 10:21 AM
  2. Replies: 14
    Last Post: 2007-05-29, 11:09 PM
  3. Replies: 2
    Last Post: 2007-05-04, 04:08 AM
  4. Contact List View - Email Address
    By clyons in forum Help
    Replies: 4
    Last Post: 2005-03-11, 03:19 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
  •