I need help creating a process model to evaluate and batch update the status of a large group of users (30,000+ records) based on detailed criteria. The workflow logic is as follows, with any identifying info removed:
If either of the following conditions is true:
Then: No further action is needed for this record — it can be skipped.
If all the following conditions are true:
Then: Update a related field or status to "Unused."
The goal is to create a process model that evaluates these conditions for each record and performs the appropriate updates. Any guidance on how to structure this process model or handle complex filtering conditions efficiently would be greatly appreciated!
Initially, I thought of creating an expression rule that performs the necessary filtering using a query with nested logical expressions. However, given the size of the dataset (30,000+ records), I am concerned this approach may be inefficient. I'm wondering if there is a more effective or scalable way to handle the filtering and integrate it into the process model.
Discussion posts and replies are publicly visible
Do you need to do this frequently, and are there any restrictions in terms of duration and timing?
Not very frequently, maybe once a month or so. And there are no restrictions on duration and timing, it will likely be scheduled to run overnight.