How to restrict syncing of task in OPEN task_status
I tried to change the initial and related query not to sync the OPEN task_status type task.
I put the where conditions in sync like
Task.task_id Not equals to OPEN . Once I update the task_status to Open and put any owner its getting synced to mobile. I don't want this data to sync
Page 1 / 1
Dear @TatRajatM ,
For this requirement there is app param that you can use to define additional constraints for the syncing task to the mobile. You don't need to change the sync rule for this.
The application parameter name is “ADDITIONAL_JOB_LIST_CONSTRAINTS”.
You must need to define your constraints in SQLLite standard format and will be treated as an "AND" constraint to any of the other constraints being used.
In your example as you want to restrict only OPEN task_status task for all users. Then you need to define the param value as following → task <> 'OPEN'