@SanderAdam We currently indeed do not support starting a Process flow on switching records. We did consider this recently, but have not yet prioritized and planned implementation due to some dependencies and other considerations that we need to tackle. Your vote and use case on this Idea would help:
We did do something else: the ‘Refresh table’ process action can be used as Start action in Universal since version 2026.1.10. Note that it only works for 2 types of refreshes:
- Manually pressing the Refresh button by the user
- Auto-refresh
Auto-refresh in combination with creative use of the Change detection logic might get you where you want to go. If the Auto-refresh triggers the Process flow, you should store the PK of the record on which the Process flow is being executed. Then in the Change detection logic you should check if the col_id of the selected record matches the one that was previously stored. If it matches, suppress the Auto-refresh. If it doesn’t match, perform the Auto-refresh and subsequent Process flow.
Note: if multiple users could be working with the same records, you might want to make it more robust by including the newly introduced session variable tsf_client_instance_id: