This was bug 42808 (SugarCRM Bug Tracker | Open Source Business & Social CRM - SugarCRM) and was apparently addressed in Sugar release 6.2.2. If you upgrade to that release, you should be all set although I can't confirm absolutely since I have not upgraded past 6.1.0.
If you don't upgrade, the issue is that the Notes quick create does not include an Assigned To field, which means a user is not assigned, which means nobody can see the note if you have profiles set up so that users can only view those items that they own.
To get around this, I created a folder for \custom\modules\Notes\metadata\ and copied the file \modules\Notes\metadata\quickcreatedefs.php into it. Then I added [array ('assigned_user_name',),] to the "panels" array portion of the new file as shown below:
PHP Code:
.
.
'panels' =>
array (
'default' =>
array (
array (
'contact_name',
'parent_name',
),
//Added this to address bug 42808
array (
'assigned_user_name',
),
//End of bug 42808 code
array (
),
array (
array (
'name' => 'name',
'label' => 'LBL_SUBJECT',
'displayParams' =>
array (
'size' => 100,
'required' => true,
),
),
),
.
.
That way the assigned user name would be included in the quick create of a Note. This was quite a while ago so I don't remember if there was anything else but I believe that was what ended up addressing the problem.
Good luck.
marc
Bookmarks