diff --git a/entity/Order_entity/Order_entity.aod b/entity/Order_entity/Order_entity.aod
index 5006bc81c963f13f0ee37bcdcd7f528f7475172e..0f222669ca7a884f0a9a1701697c39bbdf286089 100644
--- a/entity/Order_entity/Order_entity.aod
+++ b/entity/Order_entity/Order_entity.aod
@@ -682,6 +682,7 @@
       <documentation>%aditoprj%/entity/Order_entity/entityfields/dunningtext/documentation.adoc</documentation>
       <title>Dunning text</title>
       <contentType>LONG_TEXT</contentType>
+      <stateProcess>%aditoprj%/entity/Order_entity/entityfields/dunningtext/stateProcess.js</stateProcess>
       <valueProcess>%aditoprj%/entity/Order_entity/entityfields/dunningtext/valueProcess.js</valueProcess>
     </entityField>
     <entityParameter>
diff --git a/entity/Order_entity/entityfields/dunningdate/stateProcess.js b/entity/Order_entity/entityfields/dunningdate/stateProcess.js
index bd8b298328ee30fe9401afd20691b51f7034dcd0..d1055b709a36c48fbe9a8844499475bfe4337dc1 100644
--- a/entity/Order_entity/entityfields/dunningdate/stateProcess.js
+++ b/entity/Order_entity/entityfields/dunningdate/stateProcess.js
@@ -3,9 +3,9 @@ import("system.vars");
 import("system.neon");
 import("KeywordRegistry_basic")
 
-if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()) || vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
+if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()))
     {
-    result.string(neon.COMPONENTSTATE_AUTO);
+    result.string(neon.COMPONENTSTATE_EDITABLE);
     }
 else
     {
diff --git a/entity/Order_entity/entityfields/dunninglevel/stateProcess.js b/entity/Order_entity/entityfields/dunninglevel/stateProcess.js
index bd8b298328ee30fe9401afd20691b51f7034dcd0..d1055b709a36c48fbe9a8844499475bfe4337dc1 100644
--- a/entity/Order_entity/entityfields/dunninglevel/stateProcess.js
+++ b/entity/Order_entity/entityfields/dunninglevel/stateProcess.js
@@ -3,9 +3,9 @@ import("system.vars");
 import("system.neon");
 import("KeywordRegistry_basic")
 
-if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()) || vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
+if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()))
     {
-    result.string(neon.COMPONENTSTATE_AUTO);
+    result.string(neon.COMPONENTSTATE_EDITABLE);
     }
 else
     {
diff --git a/entity/Order_entity/entityfields/dunningtext/stateProcess.js b/entity/Order_entity/entityfields/dunningtext/stateProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..d1055b709a36c48fbe9a8844499475bfe4337dc1
--- /dev/null
+++ b/entity/Order_entity/entityfields/dunningtext/stateProcess.js
@@ -0,0 +1,13 @@
+import("system.result");
+import("system.vars");
+import("system.neon");
+import("KeywordRegistry_basic")
+
+if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()))
+    {
+    result.string(neon.COMPONENTSTATE_EDITABLE);
+    }
+else
+    {
+    result.string(neon.COMPONENTSTATE_INVISIBLE);
+    }
\ No newline at end of file
diff --git a/entity/Order_entity/entityfields/paid/stateProcess.js b/entity/Order_entity/entityfields/paid/stateProcess.js
index bd8b298328ee30fe9401afd20691b51f7034dcd0..c5b973b17369f2080b66374d84448a83637224eb 100644
--- a/entity/Order_entity/entityfields/paid/stateProcess.js
+++ b/entity/Order_entity/entityfields/paid/stateProcess.js
@@ -3,9 +3,9 @@ import("system.vars");
 import("system.neon");
 import("KeywordRegistry_basic")
 
-if((vars.get("$field.ORDERTYPE") == $KeywordRegistry.orderType$invoice()) || vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
+if(vars.get("$field.ORDERTYPE") != $KeywordRegistry.orderType$confirmation())
     {
-    result.string(neon.COMPONENTSTATE_AUTO);
+    result.string(neon.COMPONENTSTATE_EDITABLE);
     }
 else
     {
diff --git a/entity/Order_entity/entityfields/paydate/stateProcess.js b/entity/Order_entity/entityfields/paydate/stateProcess.js
index 08bc5d1caf244373130abbf6cc954a83fe914020..c5b973b17369f2080b66374d84448a83637224eb 100644
--- a/entity/Order_entity/entityfields/paydate/stateProcess.js
+++ b/entity/Order_entity/entityfields/paydate/stateProcess.js
@@ -3,9 +3,9 @@ import("system.vars");
 import("system.neon");
 import("KeywordRegistry_basic")
 
-if(vars.get("$field.ORDERTYPE") != $KeywordRegistry.orderType$confirmation()|| vars.get("$sys.recordstate") == neon.OPERATINGSTATE_NEW)
+if(vars.get("$field.ORDERTYPE") != $KeywordRegistry.orderType$confirmation())
     {
-    result.string(neon.COMPONENTSTATE_AUTO);
+    result.string(neon.COMPONENTSTATE_EDITABLE);
     }
 else
     {