Flow executed in name of a system has a problem with access to user recordsIssue Subflow has been executed in the name of "System",but then it returns me unexpected problem.Every query made sys_user table returns 0 records.If exactly the same sublfow is executed in the name of user (process initiator), the query looks fine and returns values.CauseThe flow is getting executed in one domain, but the user who is executing it is part of another domain. As the user is neither part of an execution domain nor a lower domain, hence the users list is not accessible when the flow is getting executed from the system user.ResolutionAs a work around instead of using GlideRecordUtil() please use the following script which will help you query the users without domain restrictions. var gr = new GlideRecord('sys_user'); gr.addQuert('user_name',''); gr.queryNoDomain(); gr.next();