diff --git a/entity/Person_entity/entityfields/onlyactive_param/valueProcess.js b/entity/Person_entity/entityfields/onlyactive_param/valueProcess.js
index b79bed7d644e36b82da688b0125065c3a1b66904..c95b5dd1b4fc9b39fda3524b5ac7702157952322 100644
--- a/entity/Person_entity/entityfields/onlyactive_param/valueProcess.js
+++ b/entity/Person_entity/entityfields/onlyactive_param/valueProcess.js
@@ -1,4 +1,4 @@
 import("system.vars");
 import("system.result");
 
-result.string(true);
\ No newline at end of file
+result.string(false);
\ No newline at end of file
diff --git a/entity/SupportTicket_entity/entityfields/pullnextticket/onActionProcess.js b/entity/SupportTicket_entity/entityfields/pullnextticket/onActionProcess.js
index 636de1cf79d85fee13b3e71b937d26850a969e40..b6abe33312fe99408c6e0c25619889b7425cada8 100644
--- a/entity/SupportTicket_entity/entityfields/pullnextticket/onActionProcess.js
+++ b/entity/SupportTicket_entity/entityfields/pullnextticket/onActionProcess.js
@@ -42,7 +42,7 @@ else
                   .join("EMPLOYEEGROUP_RULE","EMPLOYEEGROUP_RULE.EMPLOYEEGROUP_RULEGROUP_ID = EMPLOYEEGROUP_RULEGROUP.EMPLOYEEGROUP_RULEGROUPID")
                   .where("EMPLOYEEGROUP_CONTACT_RELATION.CONTACT_ID",contactID)
                   .and("EMPLOYEEGROUP_RULEGROUP.STATE", $KeywordRegistry.employeeGroupStatus$active())
-                  .column();
+                  .arrayColumn();
 
     var subFilter           = {}
     subFilter["type"]       = "group";
@@ -120,7 +120,7 @@ if(ticketID != "")
     //Update (TICKET) -> DATE_STATUS_EDIT
     TicketfieldValues["EDITOR_CONTACT_ID"] = contactID;
     TicketfieldValues["DATE_EDIT_STATUS"] = vars.get("sys.date");
-    newWhereIfSet("TICKETID", vars.get( "$field.TICKETID")).updateFields(TicketfieldValues);    
+    newWhereIfSet("TICKET.TICKETID", vars.get( "$field.TICKETID")).updateFields(TicketfieldValues);    
     newWhereIfSet("TASK.TASKID",taskID).updateFields(TaskfieldValues);
     // open Ticket
     neon.openContext("SupportTicket", "SupportTicketMain_view", [ticketID], neon.OPERATINGSTATE_VIEW, null);