How to fix the errors?
Error importing CRF: PATHOLOGY","java.lang.RuntimeException: Following special characters in form names not allowed: [+-/*(){}%. ]
Error importing CRF data. Subject: ABC01, Event: BASELINE. Error: DE form for PATHOLOGY (Path_Data) doesn't seem to be created"
How to cleanup mapping tables?
You can clean up the Open Clinica mapping tables using the below SQLs
Find the study ID from the table 'os_oc_studies' //SQL to cleanup the visits mapping table, where 'N' is the study ID SQL>delete from os_oc_visits where subject_id in (select identifier from os_oc_subjects where study_id = N); //SQL to cleanup the participant mapping table, where 'N' is the study ID SQL>delete from os_oc_subjects where study_id = N;