Flows Marked as 'Completed (Error Caught)' Due to Missing Table Lookup RecordsIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } After uninstalling the Vulnerability Management application (or other applications that define custom tables), related server decommission flows may encounter errors if those table lookup records no longer exist. When this happens, flows may crash and be marked as "Completed (Error Caught)", without executing any configured error handler steps. Steps to Reproduce 1. Open the affected flow in Flow Designer. 2. Insert a “Throw an error” action into the second step of the flow. 3. Trigger the flow using a test record (e.g., an RITM). 4. Observe that the flow ends in an error state, but the error handler steps do not run. Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } All CauseA residual order 0 "try" component in the flow structure prevents proper execution of error handling logic. This is often left behind when certain components are auto-removed or changed during app uninstalls or flow edits.Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } Follow these steps to reset the error handling configuration and restore proper flow behavior: 1. Update the component with order 0 to a Top-Level Try configuration. 2. Close and reopen the flow to reload the updated logic. 3. Delete the items within the error handler section. 4. Turn off error handling in the flow. 5. Save the flow. 6. Confirm that the problematic order 0 component has been removed. 7. Re-enable error handling. 8. Re-add the necessary error handler actions. 9. Save the flow again. 📝 These steps were provided by the development team based on a known behavior related to flow structure caching.