Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to change Unique ID for student already created? #93

Open
kevindionr opened this issue Jan 17, 2019 · 5 comments
Open

How to change Unique ID for student already created? #93

kevindionr opened this issue Jan 17, 2019 · 5 comments
Assignees

Comments

@kevindionr
Copy link

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?

@parkerj
Copy link
Owner

parkerj commented Jan 17, 2019

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';

@kevindionr
Copy link
Author

How do I manually update the alternate id?

@parkerj
Copy link
Owner

parkerj commented Jan 19, 2019

If through the database, update the altID field in the person table.

Or on the NAE screen, update the Alternate ID field.

@kevindionr
Copy link
Author

On the NAE screen it does not allow an entry into the ID field once the record was created. It is in grey. Is there something I am missing?

@parkerj
Copy link
Owner

parkerj commented Jan 29, 2019

The first time anyone has brought that to my attention. It will need to be fixed.

@parkerj parkerj self-assigned this Jan 29, 2019
@parkerj parkerj added this to the 6.3.5 Maintenance Release milestone Jan 29, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants