'Opened_by' is coming blank for sc_task recordsDescriptionThe sc_task field value 'opened_by" is empty for the service catalog applicationCauseThis is expected behavior from the system.If the wf activity previous to the "Create Catalog task" is run by the System, the "Opened by" would be populated as empty on the sc_task recordSince system user is background user and there is no valid user profile, so the value is not populated.If the activity is something approved by any user, then that user will be responsible for opening the catalog task, so that user id will be generated. Same applies to the flow designer as well if the Run as is set to "System User"ResolutionYou can overwrite the field via a workflow script :eg workflow script can havetask.opened_by = current.request_item.request.requested_for;or if you want to get it from variablestask.opened_by = current.variables.variable_name;You can also create an after insert OR an after update business rule in the task or catalog task