diff --git a/entity/Organisation_entity/entityfields/address_id/displayValueProcess.js b/entity/Organisation_entity/entityfields/address_id/displayValueProcess.js
index f212ec24e70e27e30a7f0a66299874a335617f4d..9fe94ad2b200d48746b253e0bb0d86749f8a8406 100644
--- a/entity/Organisation_entity/entityfields/address_id/displayValueProcess.js
+++ b/entity/Organisation_entity/entityfields/address_id/displayValueProcess.js
@@ -1,8 +1,13 @@
+import("system.neon");
 import("system.db");
 import("system.vars");
 import("system.result");
 import("PostalAddress_lib");
 
-var addrId = vars.get("$field.ADDRESS_ID");
-var addr = AddressUtils.getFormattedOnlineAddressById(addrId);
-result.string(addr);
\ No newline at end of file
+
+if(vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{
+    var addrId = vars.get("$field.ADDRESS_ID");
+    var addr = AddressUtils.getFormattedOnlineAddressById(addrId);
+    result.string(addr);
+}
\ No newline at end of file
diff --git a/entity/Organisation_entity/entityfields/language/displayValueProcess.js b/entity/Organisation_entity/entityfields/language/displayValueProcess.js
index fbcdba886ae05f415758c8c9bb4eb8c57600d541..e3f0ad22bd88b89d0bb35c4892150d46eb09083c 100644
--- a/entity/Organisation_entity/entityfields/language/displayValueProcess.js
+++ b/entity/Organisation_entity/entityfields/language/displayValueProcess.js
@@ -1,5 +1,9 @@
+import("system.neon");
 import("system.vars");
 import("system.result");
 import("Context_lib");
 
-result.string(ContextUtils.loadContentTitle("Language_entity", vars.get("$field.LANGUAGE")));
\ No newline at end of file
+if(vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{   
+    result.string(ContextUtils.loadContentTitle("Language_entity", vars.get("$field.LANGUAGE")));
+}
\ No newline at end of file
diff --git a/entity/Organisation_entity/entityfields/status/displayValueProcess.js b/entity/Organisation_entity/entityfields/status/displayValueProcess.js
index cc03068b7cc2ee7e27814c0ee7969882d15c3a3b..4af59c46e10f25e13d969526aa8cf32be5b716b1 100644
--- a/entity/Organisation_entity/entityfields/status/displayValueProcess.js
+++ b/entity/Organisation_entity/entityfields/status/displayValueProcess.js
@@ -1,6 +1,10 @@
+import("system.neon");
 import("system.result");
 import("system.vars");
 import("Keyword_lib");
 import("KeywordRegistry_basic");
 
-result.string(KeywordUtils.getViewValue($KeywordRegistry.contactStatus(), vars.get("$field.STATUS")));
+if(vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{
+    result.string(KeywordUtils.getViewValue($KeywordRegistry.contactStatus(), vars.get("$field.STATUS")));
+}
diff --git a/entity/Organisation_entity/entityfields/type/displayValueProcess.js b/entity/Organisation_entity/entityfields/type/displayValueProcess.js
index 06795c5d7051cadf68aac11ed47a65873f7fb2e0..8ec1ffbf984fb56bbc4e038a4b29629344257330 100644
--- a/entity/Organisation_entity/entityfields/type/displayValueProcess.js
+++ b/entity/Organisation_entity/entityfields/type/displayValueProcess.js
@@ -1,6 +1,10 @@
+import("system.neon");
 import("system.result");
 import("system.vars");
 import("Keyword_lib");
 import("KeywordRegistry_basic");
 
-result.string(KeywordUtils.getViewValue($KeywordRegistry.organisationType(), vars.get("$field.TYPE")));
+if(vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{
+    result.string(KeywordUtils.getViewValue($KeywordRegistry.organisationType(), vars.get("$field.TYPE")));
+}
diff --git a/entity/Person_entity/Person_entity.aod b/entity/Person_entity/Person_entity.aod
index 9fe6cb1d66d34ece682718c84b3fdb37271512e7..0e71f6701c534a75c80fe47236d912cf67e2e91b 100644
--- a/entity/Person_entity/Person_entity.aod
+++ b/entity/Person_entity/Person_entity.aod
@@ -87,13 +87,11 @@
       <consumer>Salutations</consumer>
       <mandatory v="true" />
       <mandatoryProcess>%aditoprj%/entity/Person_entity/entityfields/salutation/mandatoryProcess.js</mandatoryProcess>
-      <displayValueProcess>%aditoprj%/entity/Person_entity/entityfields/salutation/displayValueProcess.js</displayValueProcess>
     </entityField>
     <entityField>
       <name>TITLE</name>
       <title>Title</title>
       <consumer>SalutationTitles</consumer>
-      <displayValueProcess>%aditoprj%/entity/Person_entity/entityfields/title/displayValueProcess.js</displayValueProcess>
     </entityField>
     <entityField>
       <name>TITLESUFFIX</name>
diff --git a/entity/Person_entity/entityfields/gender/displayValueProcess.js b/entity/Person_entity/entityfields/gender/displayValueProcess.js
index 734a0b1410de96958c342202f8aad49b52ed096e..bd75bed0d063d73ff9f21db088c41a844723c0a1 100644
--- a/entity/Person_entity/entityfields/gender/displayValueProcess.js
+++ b/entity/Person_entity/entityfields/gender/displayValueProcess.js
@@ -1,3 +1,4 @@
+import("system.neon");
 import("system.vars");
 import("KeywordRegistry_basic");
 import("system.result");
@@ -6,7 +7,7 @@ import("Sql_lib");
 
 var sex = vars.get("$field.GENDER");
     
-if (sex)
+if (sex && vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
 {
     var keyword = KeywordUtils.getViewValue($KeywordRegistry.personGender(), sex);
     result.string(keyword)
diff --git a/entity/Person_entity/entityfields/language/displayValueProcess.js b/entity/Person_entity/entityfields/language/displayValueProcess.js
index fbcdba886ae05f415758c8c9bb4eb8c57600d541..d3a07fff8b2bda7c274e496509ad886261bf458b 100644
--- a/entity/Person_entity/entityfields/language/displayValueProcess.js
+++ b/entity/Person_entity/entityfields/language/displayValueProcess.js
@@ -1,5 +1,9 @@
+import("system.neon");
 import("system.vars");
 import("system.result");
 import("Context_lib");
 
-result.string(ContextUtils.loadContentTitle("Language_entity", vars.get("$field.LANGUAGE")));
\ No newline at end of file
+if(vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{
+    result.string(ContextUtils.loadContentTitle("Language_entity", vars.get("$field.LANGUAGE")));
+}
\ No newline at end of file
diff --git a/entity/Person_entity/entityfields/organisation_contactid/displayValueProcess.js b/entity/Person_entity/entityfields/organisation_contactid/displayValueProcess.js
index cc0128938026864ece7d645d38276aa195367b0a..30512466e9a209ba907bce1b5471b5a07434cafb 100644
--- a/entity/Person_entity/entityfields/organisation_contactid/displayValueProcess.js
+++ b/entity/Person_entity/entityfields/organisation_contactid/displayValueProcess.js
@@ -3,5 +3,7 @@ import("system.result");
 import("system.neon");
 import("system.vars");
 
-if (vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW && vars.get("$this.value"))
-    result.string(OrganisationUtils.getNameByContactId(vars.get("$this.value")));
\ No newline at end of file
+if (vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
+{
+    result.string(OrganisationUtils.getNameByContactId(vars.get("$field.ORGANISATION_CONTACTID")));
+}
\ No newline at end of file
diff --git a/entity/Person_entity/entityfields/salutation/displayValueProcess.js b/entity/Person_entity/entityfields/salutation/displayValueProcess.js
deleted file mode 100644
index 275e5fb9a51310d5d2b8e0d427aec3415a2b6c73..0000000000000000000000000000000000000000
--- a/entity/Person_entity/entityfields/salutation/displayValueProcess.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import("system.vars");
-import("system.result");
-
-if(vars.get("$field.SALUTATION"))
-    result.string(vars.get("$field.SALUTATION"));
\ No newline at end of file
diff --git a/entity/Person_entity/entityfields/status/displayValueProcess.js b/entity/Person_entity/entityfields/status/displayValueProcess.js
index b9185cff9ec6fc9022ed92033e064118bfc493b7..c5555df134cf20af0700ae6e5ae762f9d9ae95c3 100644
--- a/entity/Person_entity/entityfields/status/displayValueProcess.js
+++ b/entity/Person_entity/entityfields/status/displayValueProcess.js
@@ -1,10 +1,11 @@
+import("system.neon");
 import("system.result");
 import("system.vars");
 import("KeywordRegistry_basic");
 import("Keyword_lib");
 
 var key = vars.get("$field.STATUS");
-if (key)
+if (key && vars.get("$sys.viewmode") != neon.FRAME_VIEWMODE_TABLE)
 {
     var res = KeywordUtils.getViewValue($KeywordRegistry.contactStatus(), key);
     result.string(res);
diff --git a/entity/Person_entity/entityfields/title/displayValueProcess.js b/entity/Person_entity/entityfields/title/displayValueProcess.js
deleted file mode 100644
index 9023d1aa7e54c97980047d0aed8f9fdc50e1b157..0000000000000000000000000000000000000000
--- a/entity/Person_entity/entityfields/title/displayValueProcess.js
+++ /dev/null
@@ -1,5 +0,0 @@
-import("system.result");
-import("system.vars");
-
-if (vars.get("$field.TITLE"))
-    result.string(vars.get("$field.TITLE"));
diff --git a/entity/Task_entity/entityfields/filteractiongroup/children/setcomplete/onActionProcess.js b/entity/Task_entity/entityfields/filteractiongroup/children/setcomplete/onActionProcess.js
index 3a57f271c622082bac9341b1b4932fc7538f0613..824095f07f756b98f5d7231e50d8224030a108c1 100644
--- a/entity/Task_entity/entityfields/filteractiongroup/children/setcomplete/onActionProcess.js
+++ b/entity/Task_entity/entityfields/filteractiongroup/children/setcomplete/onActionProcess.js
@@ -1,12 +1,17 @@
-import("system.neon");
-import("Sql_lib");
+import("KeywordRegistry_basic");
+import("system.entities");
 import("system.vars");
-import("system.db");
-import("KeywordRegistry_basic")
 
-var data = vars.get("$sys.selection")
+var data = vars.get("$sys.selection");
 
-var cond = newWhere("TASK.TASKID", data, SqlBuilder.IN()).toString();
-db.updateData("TASK", ["STATUS"], null, [$KeywordRegistry.taskStatus$ended()], cond)
-
-neon.refreshAll()
\ No newline at end of file
+var updateConfig = entities.createConfigForUpdatingRows()
+.entity("Task_entity")
+.fieldValues({
+    "STATUS": $KeywordRegistry.taskStatus$ended()
+});
+                    
+data.forEach(function (dataRow) 
+{
+    updateConfig.uid(dataRow);
+    entities.updateRow(updateConfig);
+});     
diff --git a/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod b/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod
index cc2ff42c79fd36ac6563e1ef9e4499daee3648b2..7b6aee941f0b18cc3d840c7eed167824e967ab9b 100644
--- a/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod
+++ b/language/_____LANGUAGE_EXTRA/_____LANGUAGE_EXTRA.aod
@@ -11129,6 +11129,9 @@
     <entry>
       <key>Deleting the dependency also deletes its fields.</key>
     </entry>
+    <entry>
+      <key>dd/MM/yyyy HH:mm</key>
+    </entry>
   </keyValueMap>
   <font name="Dialog" style="0" size="11" />
   <sqlModels>
diff --git a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
index b794447646a8dbb438e0b5c503820ad7c5cfe37a..c84e649cf8f83e9717daffc619a7de6c9b9fea66 100644
--- a/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
+++ b/language/_____LANGUAGE_de/_____LANGUAGE_de.aod
@@ -81,6 +81,10 @@
       <key>Ticket number of the original ticket</key>
       <value>Ticketnummer des originalen Tickets</value>
     </entry>
+    <entry>
+      <key>Datasets are exported</key>
+      <value>Datensätze werden exportiert</value>
+    </entry>
     <entry>
       <key>Ticket duplicated (original)</key>
       <value>Ticket dupliziert (Original)</value>
diff --git a/language/_____LANGUAGE_en/_____LANGUAGE_en.aod b/language/_____LANGUAGE_en/_____LANGUAGE_en.aod
index 09fc8aece661b6ce3b203a8f4f93922a1528e712..99650096f79bb15197e3e728143e69bb1060b560 100644
--- a/language/_____LANGUAGE_en/_____LANGUAGE_en.aod
+++ b/language/_____LANGUAGE_en/_____LANGUAGE_en.aod
@@ -11225,6 +11225,9 @@
     <entry>
       <key>Deleting the dependency also deletes its fields.</key>
     </entry>
+    <entry>
+      <key>dd/MM/yyyy HH:mm</key>
+    </entry>
   </keyValueMap>
   <font name="Dialog" style="0" size="11" />
 </language>