diff --git a/entity/Attribute_entity/recordcontainers/jdito/onUpdate.js b/entity/Attribute_entity/recordcontainers/jdito/onUpdate.js
index 8d2c892612d6103d2cf92218c85e25e95b353546..b8c76d330533e45b77bbdc80951b0b48cf0b42df 100644
--- a/entity/Attribute_entity/recordcontainers/jdito/onUpdate.js
+++ b/entity/Attribute_entity/recordcontainers/jdito/onUpdate.js
@@ -23,4 +23,4 @@ var values = [
 ];
 
 newWhere("AB_ATTRIBUTE.AB_ATTRIBUTEID", "$field.UID")
-    .updateData(true, columns, null, values, "AB_ATTRIBUTE");
\ No newline at end of file
+    .updateData(true, "AB_ATTRIBUTE", columns, null, values);
\ No newline at end of file
diff --git a/entity/Classification_entity/recordcontainers/jdito/onUpdate.js b/entity/Classification_entity/recordcontainers/jdito/onUpdate.js
index c8bf239281bee7a8f36461ffb7afc60ff2b1754f..a1a2a1cf12b01bfeb8348f41d206089f754cda92 100644
--- a/entity/Classification_entity/recordcontainers/jdito/onUpdate.js
+++ b/entity/Classification_entity/recordcontainers/jdito/onUpdate.js
@@ -13,7 +13,7 @@ if (vars.get("$field.CLASSIFICATIONID"))
     if (vars.get("$field.CLASSIFICATIONSCORE_ID"))
     {
         newWhere("CLASSIFICATION.CLASSIFICATIONID", vars.get("$field.CLASSIFICATIONID"))
-            .updateData(true, ["CLASSIFICATIONSCORE_ID"], null, [vars.get("$field.CLASSIFICATIONSCORE_ID")], "CLASSIFICATION");
+            .updateData(true, "CLASSIFICATION", ["CLASSIFICATIONSCORE_ID"], null, [vars.get("$field.CLASSIFICATIONSCORE_ID")]);
     }
     else
     {