UPDATE:
Trying populate the Raise User attribute using this calculation:
import System
static def GetAttributeValue(Activity):
CurrentUser = Activity.CreationUser.Title
if Activity._CaseForRequestor != null and Activity._CaseForRequestor == true:
CurrentUser = Activity.GetCurrentUserName()
return Activity.GetObjectByAttribute("Activity.RaiseUser", "Title", CurrentUser)
But I get this error:
Inner Exception: - Module with Id Activity not found.
Any help?