Page 1 of 2 12 LastLast
Results 1 to 10 of 12

Thread: Duplicate Issue not response from Support

  1. #1
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Angry Duplicate Issue not response from Support

    I've am running the latest Pro Version and have contacted support but they don't call they don't e-mail. I'm pretty frustrated with the whole situation. They said to arrange for a call I did and they never called! They asked for the diagnostic and I sent it to them nothing! Three weeks now!!!

    So I'm hoping to get some answers here. I imported about 3000 records and when users try to add a account or contact it searches for duplicates as it should but it lists all accounts/contacts. It doesn't even list name that start with the same letter just a big huge list.

    If the user clicks save instead of cancel it saves a blank record. To work around this they have to edit the blank record. Is this a bug, does it have something to do with imported records?

    I ended up just shutting the duplicate function off.

    I pay for support and get nothing

  2. #2
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Default Re: Duplicate Issue not response from Support

    I guess no one knows.

  3. #3
    sugarcane is offline Sugar Community Member
    Join Date
    Apr 2005
    Location
    Chicago, IL
    Posts
    1,207

    Default Re: Duplicate Issue not response from Support

    What version of Sugar are you using?
    Intelestream has a great deal of experience hosting and customizing the SugarCRM application. Our company is made up by former employees of SugarCRM, and together we have over 50 years of experience working with the application. To learn more about us, please visit our website at www.intelestream.net or contact us directly at 800-391-4055 or by email at info@intelestream.net

  4. #4
    loriarce is offline Sugar Team Member
    Join Date
    Jun 2006
    Posts
    58

    Default Re: Duplicate Issue not response from Support

    I will have a support engineer reach out to you today.

    Lori

  5. #5
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Default Re: Duplicate Issue not response from Support

    I am using 5.20e.

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

    Default Re: Duplicate Issue not response from Support

    If you set logging level to debug (admin - system settings) you will get a detailed logfile in sugarcrm.log
    You can deleted this file at any time.
    If enter a new account and say save you should find a line in the logfile which looks like:

    Query:select id, name, website, billing_address_city from accounts where deleted!=1 and name like 'newaccountname%'

    How does this line look in your system?

    Perhaps like this:
    Query:select id, name, website, billing_address_city from accounts where deleted!=1 and name like '%'
    This would happen if you replaced the original name file by an own name field.

    If not, send the logfile to the support or anyone else who knows sugar...
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  7. #7
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Default Re: Duplicate Issue not response from Support

    Thank you Harald. Nothing has been modified on my end except I turned it off in the form so users can add accounts and contacts without the long list.

    I did send that log to sugar support. This was three weeks ago now and I still have not received a resolution or someone just saying we don't know. I sent screen shot every detail I could.

  8. #8
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Default Re: Duplicate Issue not response from Support

    Here is from the sugarcrm log:

    INSERT into accounts_contacts (contact_id,account_id,deleted,date_modified,id) VALUES ('60b9fd47-c0e0-594c-f031-4a0248e16c3b','56266786-259b-ee52-1782-49f7da602b79','0','2009-05-07 02:34:48','63553a7f-a5ab-57f2-7f27-4a02481e2f15')
    05/06/09 19:35:45 [3100][94c74000-0995-3c50-46b9-49de42e48a47][FATAL] Slow Query (time:20.248636007309
    SELECT count(*) c FROM contacts LEFT JOIN accounts_contacts jtl0 ON contacts.id=jtl0.contact_id AND jtl0.deleted=0
    LEFT JOIN accounts accounts ON accounts.id=jtl0.account_id AND accounts.deleted=0
    AND accounts.deleted=0 LEFT JOIN teams jt1 ON
    jt1.id= contacts.team_id AND jt1.deleted=0
    AND jt1.deleted=0 LEFT JOIN users jt2 ON
    jt2.id= contacts.assigned_user_id AND jt2.deleted=0
    AND jt2.deleted=0, users_last_import where ( contacts.id IN (
    SELECT users_last_import.bean_id
    FROM users_last_import
    WHERE users_last_import.assigned_user_id = '94c74000-0995-3c50-46b9-49de42e48a47'
    AND users_last_import.bean_type = 'Contact'
    AND users_last_import.deleted = 0 )) AND contacts.deleted=0 AND users_last_import.assigned_user_id = '94c74000-0995-3c50-46b9-49de42e48a47'
    AND users_last_import.bean_type = 'Contact'
    AND users_last_import.bean_id = contacts.id
    AND users_last_import.deleted = 0
    AND contacts.deleted = 0

    Not sure if that is what you are talking about. Here is from the accountformbase:
    $baseQuery = 'select id, name, website, billing_address_city from accounts where deleted!=1 and ';
    if(!empty($_POST[$prefix.'name'])){
    $query = $baseQuery ." name like '".$_POST[$prefix.'name']."'%'";
    }
    I put the ' in front of the % to shut it off so it would not find duplicates. I've tried to set it to both 0 and 1 and it does the same thing.
    Last edited by p1xie; 2009-06-14 at 01:37 AM.

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

    Default Re: Duplicate Issue not response from Support

    ok the accountformbase is ok.

    And how does the sql statement look in th logfile?

    Would be helpful to see your /custom/modules/Accounts/metadata/editviewdefs.php
    Harald Kuske
    Pre-Sales Engineer Central Europe

    SUGARCRM Deutschland GmbH
    Erika-Mann-Str. 53, 80636 Munich, Germany
    Email: hkuske@sugarcrm.com
    Home: http://www.sugarcrm.com


  10. #10
    p1xie's Avatar
    p1xie is offline Member
    Join Date
    Sep 2008
    Posts
    12

    Default Re: Duplicate Issue not response from Support

    I pasted the closet thing from the sugar log. It is set for errors should I set it to something else to capture the issue?

    Here is the the editviewdefs.php:

    $viewdefs['Accounts']['EditView'] = array(
    'templateMeta' => array(
    'form' => array('buttons'=>array('SAVE', 'CANCEL')),
    'maxColumns' => '2',
    'widths' => array(
    array('label' => '10', 'field' => '30'),
    array('label' => '10', 'field' => '30'),
    ),
    'includes'=> array(
    array('file'=>'modules/Accounts/Account.js'),
    ),
    ),

    'panels' => array(
    'lbl_account_information'=>array(
    array(
    array(
    'name'=>'name',
    'label'=>'LBL_NAME',
    'displayParams'=>array('required'=>true)
    ),
    array(
    'name'=>'phone_office',
    'label'=>'LBL_PHONE_OFFICE'
    )

    ),
    array(
    array(
    'name'=>'website',
    'type'=>'link',
    'label'=>'LBL_WEBSITE'
    ),
    array(
    'name'=>'phone_fax',
    'label'=>'LBL_PHONE_FAX'
    )
    ),
    array(
    array(
    'name'=>'ticker_symbol',
    'label'=>'LBL_TICKER_SYMBOL'
    ),
    array(
    'name'=>'phone_alternate',
    'label'=>'LBL_OTHER_PHONE'
    )
    ),
    array(
    array('name'=>'parent_name','label' => 'LBL_MEMBER_OF'),
    array('name'=>'employees','label' => 'LBL_EMPLOYEES' )
    ),
    array(
    array('name'=>'ownership','label' => 'LBL_OWNERSHIP'),
    array('name'=>'rating','label' => 'LBL_RATING' )
    ),
    array(
    array('name'=>'industry','label' => 'LBL_INDUSTRY'),
    array('name'=>'sic_code','label' => 'LBL_SIC_CODE' )
    ),
    array(
    array('name'=>'account_type'),
    array('name'=>'annual_revenue','label' => 'LBL_ANNUAL_REVENUE' )
    ),

    array(array('name'=>'team_name', 'label'=>'LBL_LIST_TEAM','displayParams'=>array('d isplay'=>true)), ''),

    array(
    array('name'=>'assigned_user_name','label' =>'LBL_ASSIGNED_TO')
    )
    ),
    'lbl_address_information'=>array(
    array (
    array (
    'name' => 'billing_address_street',
    'hideLabel'=> true,
    'type' => 'address',
    'displayParams'=>array('key'=>'billing', 'rows'=>2, 'cols'=>30, 'maxlength'=>150),
    ),
    array (
    'name' => 'shipping_address_street',
    'hideLabel' => true,
    'type' => 'address',
    'displayParams'=>array('key'=>'shipping', 'copy'=>'billing', 'rows'=>2, 'cols'=>30, 'maxlength'=>150),
    ),
    ),
    ),

    'lbl_email_addresses'=>array(
    array('email1')
    ),

    'lbl_description_information' =>array(
    array(array('name'=>'description', 'displayParams'=>array('cols'=>80, 'rows'=>6),'label' => 'LBL_DESCRIPTION')),
    ),

    )
    );
    ?>

    Thank you so much for responding. I have been cleaning data for so long because users put so many duplicates and I really don't want to keep the function off for long. We go live from Sage CRM (YUK) to Sugar tomorrow. The CEO won't wait any longer for this issue to be resolved.

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Duplicate Email issue again
    By kimakima in forum Help
    Replies: 0
    Last Post: 2009-01-15, 03:18 AM
  2. Duplicate email issue
    By Purplemouse in forum General Discussion
    Replies: 11
    Last Post: 2007-08-24, 08:56 PM
  3. Replies: 5
    Last Post: 2006-08-04, 05:34 PM
  4. Sugar v3.5.1 Support Team Response
    By isnceo in forum General Discussion
    Replies: 1
    Last Post: 2005-09-29, 06:51 PM

Tags for this Thread

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
  •