Question

How to bypass read data limit?

I want to read all records and then update them using a sub process, but there is a limit to reading records. how can I read all records and update them?

Like 0

Like

6 comments
Best reply

Hi Valdimir, 

 

Sure, first off all add a new boolean column on you account object, like processed, your main process like this

 

As I remember, there was a limit of 5000 records. If we need to process more, we create a script

Vladimir Sokolov,

You can add a column to track processed records and loop the read collection until there not unprocessed records, using the track column, for example. In this way, you have no limits

Julio.Falcon_Nodos,

Can you give me an example?

Julio.Falcon_Nodos,

As I remember, process cannot loop more than 5000 times either

Vladimir Sokolov,

Can you give me a sample script to update it?

Hi Valdimir, 

 

Sure, first off all add a new boolean column on you account object, like processed, your main process like this

 

Show all comments