diff --git a/entity/ClassificationScore_entity/recordcontainers/db/onDBDelete.js b/entity/ClassificationScore_entity/recordcontainers/db/onDBDelete.js
index 27385ec36d1401a26d148026283388fccd75b755..f45ecc8306bdd9f82d4249c83fa66b0f8543ac71 100644
--- a/entity/ClassificationScore_entity/recordcontainers/db/onDBDelete.js
+++ b/entity/ClassificationScore_entity/recordcontainers/db/onDBDelete.js
@@ -21,7 +21,7 @@ try
         var table = ["CLASSIFICATIONGRADING"];
         var multiplicand = maxScore/gradingTable[0][1];
         var update = newWhere("CLASSIFICATIONGRADING.CLASSIFICATIONGRADINGID", gradingTable[0][0])
-                                .updateData(true, table, column, null, column, db.getCurrentAlias()), [maxScore]);
+                                .updateData(true, table, column, null, column, db.getCurrentAlias(), [maxScore]);
 
         for (let i = 1; i < gradingTable.length; i++) 
         {
diff --git a/entity/ClassificationType_entity/ClassificationType_entity.aod b/entity/ClassificationType_entity/ClassificationType_entity.aod
index d86c079f7b68f2f527fb56ee8044e50dab3afbbf..faf8305ab8185d249fd38216f9954fd7d857dcb9 100644
--- a/entity/ClassificationType_entity/ClassificationType_entity.aod
+++ b/entity/ClassificationType_entity/ClassificationType_entity.aod
@@ -39,6 +39,7 @@
     </entityField>
     <entityConsumer>
       <name>ClassificationScores</name>
+      <refreshParent v="true" />
       <dependency>
         <name>dependency</name>
         <entityName>ClassificationScore_entity</entityName>
diff --git a/entity/ClassificationType_entity/entityfields/infofield/valueProcess.js b/entity/ClassificationType_entity/entityfields/infofield/valueProcess.js
index 07815a1f88e787ef8647c0580f565279772f5efc..1aec260db1641b4b7b282eacb60d756408b1f086 100644
--- a/entity/ClassificationType_entity/entityfields/infofield/valueProcess.js
+++ b/entity/ClassificationType_entity/entityfields/infofield/valueProcess.js
@@ -1,3 +1,4 @@
+import("system.neon");
 import("system.translate");
 import("Entity_lib");
 import("system.result");
@@ -16,7 +17,7 @@ var maxScore = 0;
 var i;
 var randomScoreId;
 
-result.string(translate.text("Keep in Mind that changes to the Value with the greatest score directly affect the Classification Gradings of the Classification!"))
+var res = ClassificationUtils.getTranslatedInfo();
 if(rows.length > 0)
 {
     for (i = 0; i < rows.length; i++) 
@@ -54,7 +55,7 @@ if(rows.length > 0)
                 for (i = 0; i < gradingTable.length; i++) 
                 {
                     oldToNewValueString += gradingTable[i][2] + ": " + gradingTable[i][1] + "->" + parseInt(gradingTable[i][1] * multiplicand) + "\n\
-            ";
+    ";
                 }
             }
             else 
@@ -67,9 +68,9 @@ if(rows.length > 0)
             ";
                 }
             }
-            var resString = translate.text("This is how the Classification Gradings of the Classification will get affected by these changes:") + "\n\
+            res = translate.text("This is how the Classification Gradings of the Classification will get affected by these changes:") + "\n\
     "+ oldToNewValueString;
-            result.string(resString);
         }
     }
-}
\ No newline at end of file
+}
+result.string(res);
\ No newline at end of file
diff --git a/process/Classification_lib/process.js b/process/Classification_lib/process.js
index 66105c8ae16f6dc2da3b58b7c774215cb64bc5c6..756e30fa5384e32bccb6c7e32ebe001c6987c9eb 100644
--- a/process/Classification_lib/process.js
+++ b/process/Classification_lib/process.js
@@ -440,6 +440,18 @@ ClassificationUtils.decode = function (pEncodedString)
     return res
 };
 
+/**
+ * gets the translated Info text for the ClassificationtypePreview
+ *  
+ * @return {String}                     <p/> the translated InfoText
+ * @static 
+ */
+ClassificationUtils.getTranslatedInfo = function ()
+{
+return translate.text("Keep in Mind that changes to the Value with the greatest score directly affect the Classification Gradings of the Classification!");
+};
+
+
 /*this is right now (2020-08-15) the only way to get something like a constant with 
  - a prober name
  - autocomplete support within the ADITO Designer
@@ -453,4 +465,4 @@ $ClassificationRecordCategories.CLASSIFICATION_GROUP_EXISTS =            functio
 $ClassificationRecordCategories.CLASSIFICATION_GROUP_DOESNT_EXIST =      function(){return "ClassificationGroupDoesntExist"};
 
 function $ClassificationPlaceholder(){}
-$ClassificationPlaceholder.TOPSECRETPLACEHOLDER =                       function(){return "T0PS3CR3TPL4CEH0LD3R"};
\ No newline at end of file
+$ClassificationPlaceholder.TOPSECRETPLACEHOLDER =                        function(){return "T0PS3CR3TPL4CEH0LD3R"};