Difference between revisions of "Group new"
(One intermediate revision by one other user not shown) | |||
Line 129: | Line 129: | ||
Version 5.6 __NOTOC__ | Version 5.6 __NOTOC__ | ||
+ | [[Category:Group Functions]] | ||
+ | [[Category:Groupmodule]] |
Latest revision as of 09:34, 13 October 2022
Group_new
Create a group object
Syntax
Group_new(name, groupTemplateResourceId, parentResourceId)
Arguments
- name: is a string expression. It is the name of the group, which must follow the standard format of resource name
- groupTemplateResourceId: is a number expression. It is the resource id of the group's resource template
- parentResourceId: is a number expression. It is the resource id of the group's parent
Return value
An array, it is the group object which contains the following information
Index |
Data type |
Value |
GROUP_RESOURCE_ID |
number |
Resource id of the group |
GROUP_NAME |
string |
Name of the group |
GROUP_TEMPLATE_RESOURCE_ID |
number |
Group template's resource id |
GROUP_PARENT_RESOURCE_ID |
number |
Parent's resource id |
GROUP_TIME_REGISTRATION |
bool |
If time registration is allowed on the group |
GROUP_MAN_HOURS |
number |
The budget time for the group |
GROUP_CALCULATED_MAN_HOURS |
bool |
If the budget time is calculated based on time set in Team tab |
GROUP_RULES |
array |
Group rules array |
Example
string name ="group test";
number groupTemplateResourceId = 2066;
number parentResourceId = 37420;
array groupinfo = Group_new(name, groupTemplateResourceId, parentResourceId) ;
print(groupinfo);
//{6,0,group test,2066,37420,True,0,False,Empty,Empty,Empty,Empty,Empty,Empty,Empty,{}}
Availability
Version 5.6