Relating Events to Tasks/Meetings ?

Hello, What I would like to be able to do is relate an event to either a task or a meeting in the Accounts/contacts History.
to expand: When I create a TASK, there is a Related TO: drop down with a list in it of Accounts/Contacts/Tasks/Opportunity? etc etc.
Can I place Events on that list with the sub box (the one that searches contacts or accounts) then searching Events instead?

Is this a major change? If not, could anyone talk me through it please?

I’ve had a quick search around and cannot see a similar request.
Mike

Version 7.11.6, Sugar Version 6.5.25 (Build 344)

In your include/language/en_us.lang.php file search for “parent_type_display”. Copy this whole Definition to custom file at
custom/include/language/en_us.lang.php and add the Events module to the list.

The end lines might look like



$app_list_strings['parent_type_display'] => array(
        'Accounts' => 'Account',
        'Contacts' => 'Contact',
        'Tasks' => 'Task',
        'Opportunities' => 'Opportunity',

        'Bugs' => 'Bug',
        'Cases' => 'Case',
        'Leads' => 'Lead',

        'Project' => 'Project',
        'ProjectTask' => 'Project Task',
        'FP_events' => 'Events',
        'Prospects' => 'Target',

    );

1 Like

Awesome thank you , That appears to have worked perfectly. :slight_smile:
Mike