diff --git a/entity/Organisation_entity/entityfields/360degreeobjects/children/objectrowid_param/valueProcess.js b/entity/Organisation_entity/entityfields/360degreeobjects/children/objectrowid_param/valueProcess.js
index aee05ab473a438d99830659e02d26be864a17c3f..8ab26e2080a446436766c55a45e57659f81f7af6 100644
--- a/entity/Organisation_entity/entityfields/360degreeobjects/children/objectrowid_param/valueProcess.js
+++ b/entity/Organisation_entity/entityfields/360degreeobjects/children/objectrowid_param/valueProcess.js
@@ -5,6 +5,9 @@ import("system.result");
 var contactids = newSelect( "CONTACTID" )
         .from("CONTACT")
         .where("CONTACT.ORGANISATION_ID", vars.getString("$field.ORGANISATIONID"))
-        .orderBy("CONTACT.PERSON_ID DESC").arrayColumn();
+        // ordering is necessary because the 360DegreeObject_entity will use the first
+        // entry as default for creating offers, salesprojects and so on
+        .orderBy(new SqlMaskingUtils().isNull("PERSON_ID", "'0'"))
+        .arrayColumn();
 
 result.string( JSON.stringify(contactids) );
\ No newline at end of file