Project getProjectByResourceId
More actions
Project_getProjectByResourceId
Get a project by its resource id. If no project is found with that id, empty will be returned.
Syntax
Project_getProjectByResourceId(projectResourceId)
Arguments
- projectResourceId: is a number expression. It is the project's resource id
Return value
An array, it is the project object which contains the following items
| Index | Data type | Value | 
| OBJECT_TYPE | number | Object type (Default value: 4) | 
| PROJECT_RESOURCE_ID | number | Resource id (Default value: 0) | 
| PROJECT_NAME | string | Project name | 
| PROJECT_TEMPLATE_RESOURCE_ID | number | Project template's resource id | 
| PROJECT_TIME_REGISTRATION | bool | If time registration is allowed (Default value: True) | 
| PROJECT_COMPLETED | bool | Complete a project (Default value: False) | 
| PROJECT_PARENT_RESOURCE_ID | number | Project's path | 
| PROJECT_CODE | string | Project code | 
| PROJECT_PROPOSE_CODE | number | Propose Code [Read Only] | 
| PROJECT_CLIENT_REF_NO | string | Client ref no (Default value: Empty) | 
| PROJECT_TIME_BUDGET | number | Time Budget | 
| PROJECT_CALCULATED_MAN_HOURS | bool | Calculated Man-Hours (Default value: False) | 
| PROJECT_PLANNED_START_DATE | array (date time) | Planned Start Date (Default value: MinDate) | 
| PROJECT_ACTUAL_START_DATE | array (date time) | Actual Start Date (Default value: MinDate) | 
| PROJECT_PLANNED_END_DATE | array (date time) | Planned End Date (Default value: MaxDate) | 
| PROJECT_ACTUAL_END_DATE | array (date time) | Actual End Date (Default value: MaxDate) | 
Example
array project = Project_getProjectByResourceId(17157302);
print(project);
//{4,17157302,8358pri - Omnibus - 10 spm.,15548976,True,True,2397849,8358pri,0,,0,False,{1,1,1,7,0,0,0,1,65},{2008,9,3,21,43,17,0,36,65},{9999,12,31,23,59,59,999,52,65},{2008,9,3,21,43,17,0,36,65}}
Availability
Version 5.6
