diff --git a/entity/SearchSync_entity/entityfields/syncentrygroup/children/addsyncentry/onActionProcess.js b/entity/SearchSync_entity/entityfields/syncentrygroup/children/addsyncentry/onActionProcess.js
index ec26f78f70297d7437dc4a2dc015b917715b4b4c..793d49e1be1b8e6702891f04d6d7ecb16cab0142 100644
--- a/entity/SearchSync_entity/entityfields/syncentrygroup/children/addsyncentry/onActionProcess.js
+++ b/entity/SearchSync_entity/entityfields/syncentrygroup/children/addsyncentry/onActionProcess.js
@@ -59,9 +59,10 @@ asysUsersData.forEach(function ([groupId, name, id, propvalClob])
     var syncsize = sqlSyncSizeString.cell();
 
     if(syncsize > maxSyncsize)
-    {                 
-        db.updateData("ASYS_USERS", ["PROPVAL_CLOB"], null, 
-            ["Search greater %0, sync. not possible"], newWhere("ASYS_USERS.ID", syncId).toString(), SqlUtils.getBinariesAlias());
+    {
+        newWhere("ASYS_USERS.ID", syncId, undefined, undefined, SqlUtils.getBinariesAlias()).updateFields({
+            "PROPVAL_CLOB": "Search greater %0, sync. not possible"
+        }, "ASYS_USERS");
     }
 });