More actions
No edit summary |
Cg huyphong (talk | contribs) No edit summary |
||
Line 10: | Line 10: | ||
=== Arguments === | === Arguments === | ||
UserResourceID: is an array which contain user resource id. | UserResourceID: is an integer array which contain user resource id. | ||
<br> | <br> | ||
timeStart: is an date time array | timeStart: is an date time array. | ||
<br> | <br> | ||
ResourceID: is a number. It is the resource id of resource which we want to assign to. | ResourceID: is a number. It is the resource id of resource which we want to assign to. It should be the resource id of CATI questionnaire, Project,Group. | ||
<br> | <br> | ||
Line 27: | Line 27: | ||
EmployeeAssignment_addToResource(UserResourceID, timeStart, ResourceID);<br> | EmployeeAssignment_addToResource(UserResourceID, timeStart, ResourceID);<br> | ||
===Availability=== | |||
Version 5.8.1 | |||
__NOTOC__ | __NOTOC__ | ||
[[Category:User_Functions]] | [[Category:User_Functions]] |
Revision as of 09:19, 21 December 2011
EmployeeAssignment_addToResource
Assign the start date and time of users to a specific resource. This start date and time is the date and time that users begin work with that resource.
Syntax
EmployeeAssignment_addToResource(UserResourceID, timeStart, ResourceID);
Arguments
UserResourceID: is an integer array which contain user resource id.
timeStart: is an date time array.
ResourceID: is a number. It is the resource id of resource which we want to assign to. It should be the resource id of CATI questionnaire, Project,Group.
Return type
Empty.
Examples
array UserResourceID={ 37267087, 37267186, 37268086}; // 03 users
array timeStart={2011,10,10,6,37,50,975,40,40};
number ResourceID=37246024;
EmployeeAssignment_addToResource(UserResourceID, timeStart, ResourceID);
Availability
Version 5.8.1