You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to amend the unique id for a student who has already been created? I have a situation where our ID numbers are 6 digits but the person who was entering the students into the system forgot to put in some students' id numbers so the system gave them 2 digit numbers. Is there a way to change this?
The text was updated successfully, but these errors were encountered:
If you have internal id number requirements, then it is probably best not to use the system's unique id or manipulate it. For your situation, it is probably best to use the alternate id field on the NAE screen. When this field is used, the system will show this id on screens instead of the system generated one.
In any case, there is no way at the moment to batch correct what has been done. You have to either manually change/update them or use a query for each record you want/need to change:
UPDATE person SET altID ='123456'WHERE personID ='6';
Is there a way to amend the unique id for a student who has already been created? I have a situation where our ID numbers are 6 digits but the person who was entering the students into the system forgot to put in some students' id numbers so the system gave them 2 digit numbers. Is there a way to change this?
The text was updated successfully, but these errors were encountered: