diff --git a/entity/Role_entity/entityfields/uid/valueProcess.js b/entity/Role_entity/entityfields/uid/valueProcess.js
index 4a9b27cc967acf29eaaca8df845716ef50c06a33..08a5eb0e28e3adb0656a9ccedeb3ec12cacbe42c 100644
--- a/entity/Role_entity/entityfields/uid/valueProcess.js
+++ b/entity/Role_entity/entityfields/uid/valueProcess.js
@@ -1,4 +1,11 @@
+import("system.neon");
 import("system.vars");
 import("system.result");
 
-result.string("CUSTOM_" + vars.get("$field.ROLENAME"));
\ No newline at end of file
+var prefix = "CUSTOM_";
+var uid = vars.get("$field.ROLENAME");
+
+if (vars.get("$sys.operatingstate") == neon.OPERATINGSTATE_NEW)
+    uid = prefix + uid;
+
+result.string(uid);
\ No newline at end of file