Cannot get the workflow to trigger as expectedIssue <!-- 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; } --> Cannot get the "Tuition Reimbursement(scoped)" workflow to trigger as expected CauseThe conditions defined on the workflow might not be met because of a Dictionary Override in placeResolutionThe workflow "Tuition Reimbursement(scoped)" has a condition: hr_service=<sys_id of the HR service>^state=10^EQThe state value '10' is "Ready' which is set by a UI action "Ready for Work" on the hr case table.In the OOTB the "sn_hr_core_case_total_rewards" record is created in the "Draft" state which is the default value set on the 'State" dictionary entry of the Task table.https://<instancename>.service-now.com/nav_to.do?uri=sys_dictionary.do?sys_id=159020730f032100871de388b1050e2bBut if there is a dictionary override set for the Default value and when a record is created on the "sn_hr_core_case_total_rewards" table, it sets the State value to 18 which is "Work In Progress".The UI action "Ready for Work" is only available when the state on the "sn_hr_core_case_total_rewards" record is "Draft" (1).When the UI action is performed, the state value is set to "10" (Ready) and then the workflow is triggered.Also, there is a Business rule OOTB which sets the "Assigned To" value if it is empty before the workflow triggers.Business rule: Auto Assignhttps://<instancename>.service-now.com/nav_to.do?uri=sys_script.do?sys_id=4c564cd79f221200d9011977677fcf4aIn order to make things work as expected(OOTB):Either update the workflow condition to use state=18 instead of state=10. Navigate to the workflow in the editorCheckoutOpen the conditions and update the state to '18'. ORRemove the dictionary override set on the State dictionary which sets the state to '18'. Navigate to the Dictionary Override record on the state dictionary entry.Uncheck the 'Override default value' checkbox and remove the value from the 'Default Value' field.Click Update.