It has come up a few times in the past and I wanted to share a little information regarding the UDC ID. The UDC ID (unified digital campus) is unique to Ellucian / Banner products. This id is tied to your user account, and you have one for development systems and one for production systems. This id is used exclusively for the Single Sign-on process for certain Ellucian products and isn’t something an end user should or needs to know.
This may come up when individuals receive an invalid Login error (see attached) on Student Registration XE.
One initial step to check is to verify that their UDC id , stored in GOBUMAP, matches what is stored in Active Directory for that individual. These UDC IDs are stored in two attributes in ad, Prod : extensionAttribute10 and Dev: extensionAttribute11.
Run the following in powershell on your pc to find this information for an individual.
get-aduser -f {name -eq 'mtm002'} -properties extensionAttribute10, extensionAttribute11
In banner /SQLDeveloper :
select gobumap_udc_id from gobumap where gobumap_pidm = get_pidm_from_user(‘mtm002’);
Again, these need to match for the SSO process to work on services that require UDC id.