[SalesForce] How to give right to a user to add opportunity team member

I need to give right to an user to "Add" Opportunity Team member on a opportunity but the uses doesn't come higher in the role hierarchy than the owner.

Is there any workaround through which user can see "Add" button on opportunity Team member without having higher role than opportunity Owner?

Thanks in advance

Best Answer

Opportunity Team Members cannot be created unless you are the owner of the Opportunity or are above the role hierarchy.

However, there are two ways you can achieve this:

1) Create a Visual force page and then have the logic to add/delete Team Members

2) Create a custom object and write a trigger on the custom object to add team members. Since triggers run on system context, it will create the team member.

Hope it helped.