Yes you need a teams module to limit access to records but Teams alone will not prevent one user from seeing the others in the assigned to field etc.
Then remove the assigned_user field from all editviews and create a before_save logic hook on all modules that contain this:
PHP Code:
global $current_user;
$bean->assigned_user_id = $current_user->id;
If you are new to logic hooks there is a tool in my signature that can help you create it.
Then users will never see the of users in the EditView's and all records will be assigned to the person that creates them.
M
Bookmarks