diff --git a/entity/Person_entity/Person_entity.aod b/entity/Person_entity/Person_entity.aod
index f8706d25fe66ebd0d381107e18793bc84b375a8d..714781d05fac644425d797764a693fb06829ee8a 100644
--- a/entity/Person_entity/Person_entity.aod
+++ b/entity/Person_entity/Person_entity.aod
@@ -928,10 +928,6 @@ Usually this is used for filtering COMMUNICATION-entries by a specified contact
       <displayValueProcess>%aditoprj%/entity/Person_entity/entityfields/organisation_contactid/displayValueProcess.js</displayValueProcess>
       <onValidation>%aditoprj%/entity/Person_entity/entityfields/organisation_contactid/onValidation.js</onValidation>
     </entityField>
-    <entityActionField>
-      <name>ActionField</name>
-      <onActionProcess>%aditoprj%/entity/Person_entity/entityfields/actionfield/onActionProcess.js</onActionProcess>
-    </entityActionField>
   </entityFields>
   <recordContainers>
     <dbRecordContainer>
diff --git a/entity/Person_entity/entityfields/actionfield/onActionProcess.js b/entity/Person_entity/entityfields/actionfield/onActionProcess.js
deleted file mode 100644
index 7f203a8e81a57c2059ce55ba08a163ddbe23ab50..0000000000000000000000000000000000000000
--- a/entity/Person_entity/entityfields/actionfield/onActionProcess.js
+++ /dev/null
@@ -1,29 +0,0 @@
-import("system.logging");
-import("DocumentTemplate_lib");
-import("Placeholder_lib");
-
-var p = "C3=BCgu{=\n\
-@test@}es auf unseren Prod{@test5@}uktiv-Daten arbeitet und die Tickets / Proekte{@ =\n\
-test2@}2.0) abbildet.{@tes=\n\
-t3@}\n\
-{   =\n\
-@te=\n\
-st@=\n\
-}\n\
-"
-function rep(pText)
-{
-    return pText.replace(new RegExp(
-//    "{.*?@(.|\n){1,50}?@.*?}"
-"{\\s*(=\\r?\\n)?@(.|(\\r?\\n))+?@\\s*(=\\r?\\n)?}"
-    , "ig"), function(pFound) {
-        logging.log(pFound);
-        
-        return "_";
-    }, "ig")
-}
-logging.log("{\\s*(=\\r?\\n)?@(.|(\\r?\\n))+?@\\s*(=\\r?\\n)?}");
-
-res = rep(p, PlaceholderUtils.getPlaceholders());
-
-logging.log(res);
\ No newline at end of file