projectPM
Description
Returns the user key of the project manager (project lead) of the selected project, if exists.
Parameters
Return Type
String
The returned string represents the user key of the project lead.
Example
//Project key of the current project is PRJ
//User name of the project manager is JohnSmith
string PM;
PM = projectPM(project);
print("The project manager of " + project + " project is " + PM);
Result: The project manager of PRJ project is JohnSmith.