Exam Admin has functionality (a withdraw button) to withdraw other board examinees from the exam on the examinee details page. However, since we developed and introduced invoices, this is broken. Manual updates can be made by IT to withdraw the examinees using update query below.
update otherboardexaminee
set TestTaker_Status_Key = 0,
UpdatedBy = [dev's first initial last name],
UpdatedDate = GETDATE()
where otherboardexamineeid in
(select obe.OtherBoardExamineeId from OtherBoardPhysician obp
join OtherBoardExaminee obe on obp.OtherBoardPhysicianId = obe.OtherBoardPhysicianId
where OtherBoardPhysicianCode in ('ABIM-219877'.....)
and examination_key = 1234)
The AutomatedScheduler hosted service will send a delete EAD/authorization call to Pearson Vue, but Exam Admin Manager should be advised to check the PV Intellivue reports the following day to confirm that that the authorization was deleted.