Problem:

When a diplomate has an existing Pilot Participant record that has an EndDate in the past, When they apply for an article based assessment, they do not see the button to take them to the article Portal (Oasis)


Solution:

Update the EndDate of the PilotParticipant record to 2022


SELECT * from PilotParticipant WHERE Person_Key = <PersonKey>

UPDATE PilotParticipant SET EndDate = '2022-12-31 00:00:00.000' WHERE PilotParticipantId = <PilotParticipantId>