I did not know you changed the layout of the Opportunity subpanel.
Yes, I could duplicate the issue. This is apparently a bug.
I turned on debugging and found it was causing a MySQL error, which led to the warning messages.
PHP Code:
06/29/06 10:28:04,641 [368] INFO SugarCRM - Query: SELECT contacts.id ref_id , jt0.assigned_user_id opportunity_role_fields_owner, 'Opportunities' opportunity_role_fields_mod, opportunities_contacts.opportunity_id opportunity_id, opportunities_contacts.id opportunity_role_id, opportunities_contacts.contact_role opportunity_role , jt1.name account_name, jtl1.account_id account_id FROM contacts LEFT JOIN accounts_contacts jtl1 ON contacts.id=jtl1.contact_id AND jtl1.deleted=0
LEFT JOIN accounts jt1 ON jt1.id=jtl1.account_id AND jt1.deleted=0
AND jt1.deleted=0 INNER JOIN opportunities_contacts ON (contacts.id=opportunities_contacts.contact_id AND opportunities_contacts.opportunity_id='85bc01c7-83cc-ae05-74b4-44a3260e4f7e') where ( opportunities_contacts.deleted=0 AND contacts.deleted=0) AND contacts.deleted=0
06/29/06 10:28:04,641 [368] INFO SugarCRM - Query Execution Time:0.000318
06/29/06 10:28:04,642 [368] ERROR SugarCRM - MySQL error 1109: Unknown table 'jt0' in field list
It seems the query gets wrong where the join table prefix has "jt0" instead of "jt1".
Bookmarks