2012-09-06 Release
Summary
This release primarily involves:
- updates to CSI-as-a-Service functionality
- defect fixes
Change Control
Release Notes
https://yale.service-now.com/sys_attachment.do?sys_id=bd4156bd90d8f080fde6c4b91cbd3015
Documentation
Detail is provided in the description. Full implementation detail is captured in the update set, which can be viewed (with admin rights) by drilling down into the links.
Requirements/Defects (Other)
Requirement (Original Names) |
Functional Tested? |
QA Tested? |
Dev Status Notes |
Description |
---|---|---|---|---|
Defect 368 |
OK |
n/a |
OK |
Platform: duplicate, empty user ids being created from AD |
CSI |
OK |
n/a |
OK |
CSIaaS: coach navigation updates |
Approved Updates
Update Set (Original Names) |
Description |
---|---|
CSIaaS: role and ACLs for csi API access |
|
Explicitly list all fields required on each record within the "csi export" views. |
|
Change target url in itsmcoach ui page |
|
Defect 368 - prevent AD from inserting new users |
|
Defect 368 - prevent AD from inserting new users
|
- removed because of regression in production which did not manifest itself in test
Manual Updates
- Defect 368 - run background script to delete non-IST AD users:
var gr = new GlideRecord('sys_user'); // // GOTOsourceLIKEldap^employee_numberISEMPTY^user_name!=admin gr.addQuery('source', 'CONTAINS', 'ldap'); gr.addQuery('employee_number', '=', ''); gr.addQuery('user_name', '!=', 'admin'); var count=0; gr.query(); while(gr.next()) { gr.deleteRecord(); count++; } gs.print(count);