Set Catalog task Assigned To Field in WorkflowIssue For Catalog item, assign a catalog task to the user who created this requested item using advanced script in the catalog task activity.Added the following to the Advanced script, but this value remains empty:task.assigned_to = current.sys_created_by;task.assigned_to = current.variables.sys_created_by;What should I use to set the Assigned To field for the task and requested item of the person who creates the requested item?CauseThis is happening because the sys_created_by is a string field and not a reference field. ResolutionYou can use the opened_by field instead of sys_created_by. As opened_by is a reference field.