Hi @swapnilbhiungade7
I don't see any form input to change this value, so I'm not sure this one can be changed. You can try to edit it directly into the XML to increase it.
If you need to force this value for every new writer activity each user creates in every workflow, you can extend the xtk:workflow schema, then change the default value of the @maxErrorCount attribute of the writer activity :
<srcSchema entitySchema="xtk:srcSchema" extendedSchema="xtk:workflow" name="workflow" namespace="cus" xtkschema="xtk:srcSchema">
<element name="workflow">
<element name="activities">
<element name="writer">
<attribute default="200" name="maxErrorCount"/>
</element>
</element>
</element>
</srcSchema>
(you'll have to disconnect and reconnect the console to refresh the schema in the cache, and this change will be applied for any operator in the instance)
Again, I'm not sure that value is taken into account, so you have to test.
Cedric