"Updated by" shows unexpected usernames on "Welcome" page of Workflow EditorIssue <!-- div.margin { padding: 10px 40px 40px 30px; } table.tocTable { border: 1px solid; border-color: #e0e0e0; background-color: #fff; } .title { color: #d1232b; font-weight: normal; font-size: 28px; } h1 { color: #d1232b; font-weight: normal; font-size: 21px; margin-bottom: 5px; border-bottom-width: 2px; border-bottom-style: solid; border-bottom-color: #cccccc; } h2 { color: #646464; font-weight: bold; font-size: 18px; } h3 { color: #000000; font-weight: bold; font-size: 16px; } h4 { color: #666666; font-weight: bold; font-size: 15px; } h5 { color: #000000; font-weight: bold; font-size: 13px; } h6 { color: #000000; font-weight: bold; font-size:14px; } ul, ol { margin-left: 0; list-style-position: outside; } --> Overview "Updated by" shows unexpected usernames on "Welcome" page of Workflow Editor Explanation 1. The list view you see on the workflow editor shows the "Workflow Version" table (wf_workflow_version).2. Hence, the "Updated by" on the list denotes the user who updated workflow version only, not the one who published / checked out / changed the workflow activities. 3. The first time the workflow is run, the validators are triggered and when the workflow version passes the validators, the record is updated (thus the updated_by value is updated) by the user who kicks off the workflow. This updated_by value does not change to the next user who triggers the workflow by ordering that item 4. This is how it works: - Admin checks out the current published version of the workflow. - This creates a new record in the wf_workflow_version table as a new version. - Admin makes changes on the workflow and publishes it. - Any other user (non-admin) uses the current version e.g. by requesting an item. - This will update the wf_workflow_version.sys_updated_by field with that non-admin user. - If another non-admin user uses the workflow by creating a request, his/her name will not overwrite the previous user. Additional Information It is not possible to exactly tell which user has published the workflow version or when was the version published as the wf_workflow_version table is not audited.