- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Email to a Friend
- Printer Friendly Page
- Report Inappropriate Content
Hi All,
I am not sure if this has been mentioned yet.
Currently your outstanding tasks will show anything that you have the ability to change, this means that there is WAY too many items in the list then is relevant.
My solution would be to allow a script to run (on item creation although doesn’t really matter) that would take the information from a user pick list field (let’s call it Assigned to) and add that person to the additional owners of the item.
Then in the security settings do not give your users access to see items owned by others and hence leaving you with an outstanding items list that is relevant to you not your entire team.
I understand that I could just add them into the additional owners manually however this is extremely frustrating as there is nothing to prompt you to do so and is often forgotten, if it is a field then I can make it required.
Please!!! ![]()
James
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
New Properties
- item.master.owner
- User (the owner of the item)
- Now Modifiable (previous versions it was just readable)
- item.master.additionalOwners
- an array of Users
- readable and modifiable as a normal array
- item.master.groupAdditionalOwners
- an array of Groups
- readable and modifiable as a normal array
N.B. item.master, and item.master.owner already existed, but don’t appear to be documented.
New functions
- Security.loadGroup(String)
- Loads a group by its name
Examples
Make current user an additional owner
var currentUser =Security.loadUser(userID);
item.master.additionalOwners.push(currentUser);
Make QA group an additional Owner
var qa group = Security.loadGroup('QA’);
item.master.groupAdditionalOwners.push(qa);
Make ‘bob’ owner:
item.master.owner=Security.loadUser(‘bob’);
- Mark as Read
- Mark as New
- Bookmark
- Highlight
- Email to a Friend
- Report Inappropriate Content
i am just following up on these examples,
i have been able to get the first one to work (userID), havent tried the second, however it the third one that bothers me.
it is my understanding that i need to get the user as an "object"
what i really need is to use a pick list and add additional owners based on that picklist selection, i dont really see the point if i cant do that.
Thanks
James

New Properties
N.B. item.master, and item.master.owner already existed, but don’t appear to be documented.
New functions
Examples
Make current user an additional owner
var currentUser =Security.loadUser(userID);
item.master.additionalOwners.push(currentUser);
Make QA group an additional Owner
var qa group = Security.loadGroup('QA’);
item.master.groupAdditionalOwners.push(qa);
Make ‘bob’ owner:
item.master.owner=Security.loadUser(‘bob’);