Assessment data not visible in svdp portal - "No Assessments are Available'.Issue We successfully triggered certain assessments for the vendor contact but when we log in to the new svdp portal, our assessment data is not visible. It shows 'no assessments are available'. On the homepage, it displays 3 assessments but after clicking on it no data is shown. ReleaseParis Patch 1 Hot Fix 3CauseThe issue occurs as we should have "Vendor risk" (sn_vdr_risk_asmt_assessment) records with Empty "questionnaire_due_date".While querying the vendor risk assessment to be displayed for the vendor contact, the script include SVDPVendorPortalUtilsBase is querying for all VRA records for that particular vendor which are not in 'Draft' or 'Canceled' state.After getting the records, it is trying to get the "Due Date" value (questionnaire_due_date) from the VRA record and if the due date is empty, there is an exception occurs on line 488 of the script include and the vendor contact would not be able to see the assessment in the vendor portal.Prior to the upgrade, the "questionnaire_due_date" was not mandatory and it wasn't used to be queried to display the vendor assessment list and therefore there might be few records created before the upgrade that would have empty 'questionnaire_due_date' value.After upgrade, the field is mandatory so the vendor risk records can't be empty.ResolutionIn order to fix the issue for the old records, we need to run a script to populate the 'Due date' for those records and it should fix the issue.STEPS TO FIX THE ISSUE:Please run the following script in 'Scripts - Background' to fix the issue (it populates the Due Date field). Please try with the user who has the access to view the Vendor risk records. As a maint user I couldn't read the Vendor risk records :var gr = new GlideRecord('sn_vdr_risk_asmt_assessment');gr.addEncodedQuery('stateNOT IN1,7^questionnaire_due_dateISEMPTY');gr.query();while(gr.next()){gr.questionnaire_due_date = "2020-10-26 15:30:32";gr.setWorkflow(false);gr.update();}Please test this script and verify it in a sub-prod instance BEFORE executing this in prod.