Difference between revisions of "User addUserHourlyCost"
Line 1: | Line 1: | ||
[[Category:User_Functions]] | [[Category:User_Functions]] | ||
− | | + | {{HelpFiles}} |
====User_addUserHourlyCost==== | ====User_addUserHourlyCost==== |
Revision as of 07:55, 14 December 2011
User_addUserHourlyCost
Add new user's hourly cost
Syntax
User_addUserHourlyCost (number userResourceId, array userHourlyCost)
Arguments
- userResourceId: is a number expression. It is the user's resource id
- userHourlyCost : is an array in which:
Index |
Data type |
Value |
USER_HOURLY_COST_START_DATE |
array |
User's hourly cost start date object array (with time zone is user's time zone) |
USER_HOURLY_COST_END_DATE |
array |
User's hourly cost end date object array (with time zone is user's time zone) |
USER_HOURLY_COST_VALUE |
number |
User's hourly cost value Return value emty Example number userResourceId = 34780089; array userHourlyCosts = {{2009,7,27,0,0,0,0,31,40} , {2009,8,27,0,0,0,0,35,40},2.3}; User_addUserHourlyCost(userResourceId,userHourlyCosts); print(User_getUserHourlyCosts(userResourceId)); Availability Version 5.7
|