diff --git a/SQL/0000-00-00-schema.sql b/SQL/0000-00-00-schema.sql index 8dcc321b601..fc2e86666db 100644 --- a/SQL/0000-00-00-schema.sql +++ b/SQL/0000-00-00-schema.sql @@ -67,7 +67,8 @@ CREATE TABLE `language` ( UNIQUE KEY (`language_code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -INSERT INTO language (language_code, language_label) VALUES ('en-CA', 'English'); +INSERT INTO language (language_code, language_label) VALUES + ('en-CA', 'English'); CREATE TABLE `users` ( `ID` int(10) unsigned NOT NULL auto_increment, @@ -210,6 +211,7 @@ CREATE TABLE `session` ( `MRIQCFirstChangeTime` datetime DEFAULT NULL, `MRIQCLastChangeTime` datetime DEFAULT NULL, `MRICaveat` enum('true','false') NOT NULL DEFAULT 'false', + `languageID` integer unsigned DEFAULT NULL, PRIMARY KEY (`ID`), KEY `session_candVisit` (`CandID`,`VisitNo`), KEY `FK_session_2` (`CenterID`), @@ -218,6 +220,7 @@ CREATE TABLE `session` ( CONSTRAINT `FK_session_1` FOREIGN KEY (`CandID`) REFERENCES `candidate` (`CandID`), CONSTRAINT `FK_session_2` FOREIGN KEY (`CenterID`) REFERENCES `psc` (`CenterID`), CONSTRAINT `FK_session_3` FOREIGN KEY (`SubprojectID`) REFERENCES `subproject` (`SubprojectID`), + CONSTRAINT `FK_session_4` FOREIGN KEY (`languageID`) REFERENCES `language` (`language_id`), CONSTRAINT `FK_session_ProjectID` FOREIGN KEY (`ProjectID`) REFERENCES `Project` (`ProjectID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Table holding session information'; diff --git a/SQL/New_patches/2019_07_05_Add_Language_feature.sql b/SQL/New_patches/2019_07_05_Add_Language_feature.sql new file mode 100644 index 00000000000..cd658c8c419 --- /dev/null +++ b/SQL/New_patches/2019_07_05_Add_Language_feature.sql @@ -0,0 +1,3 @@ +ALTER TABLE `session` + ADD COLUMN `languageID` integer unsigned DEFAULT NULL, + ADD CONSTRAINT `FK_session_4` FOREIGN KEY (`languageID`) REFERENCES `language` (`language_id`); diff --git a/modules/create_timepoint/php/create_timepoint.class.inc b/modules/create_timepoint/php/create_timepoint.class.inc index 719d4a30dec..02c85001ffc 100644 --- a/modules/create_timepoint/php/create_timepoint.class.inc +++ b/modules/create_timepoint/php/create_timepoint.class.inc @@ -97,7 +97,8 @@ class Create_Timepoint extends \NDB_Form $values['subprojectID'], $values['visitLabel'] ?? null, $site, - $project + $project, + $values['languageID'] ?? null ); $this->tpl_data['success'] = true; @@ -188,7 +189,7 @@ class Create_Timepoint extends \NDB_Form && $visitLabel['generation'] !== 'sequence' ) { throw new \DeprecatedException( - "User generated Visit Labels are no ". + "User generated Visit Labels are no " . "longer supported in Loris." ); } @@ -202,10 +203,25 @@ class Create_Timepoint extends \NDB_Form $this->addSelect('visitLabel', 'Visit label', $labelOptions); $this->addRule('visitLabel', 'Visit label is required', 'required'); + $languages = \Utility::getLanguageList(); + if (count($languages) > 1) { + array_unshift($languages, null); + $this->addSelect( + 'languageID', + 'Language', + $languages + ); + $this->addRule( + 'languageID', + 'Language is required', + 'required' + ); + } + // List of sites for the user $user_list_of_sites = $user->getCenterIDs(); $num_sites = count($user_list_of_sites); - if ($num_sites >1) { + if ($num_sites > 1) { $this->tpl_data['pscLabelAdded'] = true; $psc_labelOptions = [null => '']; foreach ($user_list_of_sites as $key => $siteID) { @@ -228,7 +244,7 @@ class Create_Timepoint extends \NDB_Form // List projects $user_list_of_projects = $user->getProjectIDs(); - if (count($user_list_of_projects) >1) { + if (count($user_list_of_projects) > 1) { $this->tpl_data['projectAdded'] = true; $projectOptions = array(null => ''); foreach ($user_list_of_projects as $key => $projectID) { @@ -252,6 +268,7 @@ class Create_Timepoint extends \NDB_Form If you are an administrator, please assign visits to this subproject in the config.xml file."; } + $this->form->addFormRule(array(&$this, '_validate')); } @@ -301,6 +318,12 @@ class Create_Timepoint extends \NDB_Form $errors['visitLabel'] = $e->getMessage(); } + // validate language + $languages = \Utility::getLanguageList(); + if (count($languages) > 1 && empty($val['languageID'])) { + $errors['languageID'] = "A language must be selected."; + } + return $errors; } diff --git a/modules/create_timepoint/templates/form_create_timepoint.tpl b/modules/create_timepoint/templates/form_create_timepoint.tpl index e8dae4ec2cf..503a6e481a0 100644 --- a/modules/create_timepoint/templates/form_create_timepoint.tpl +++ b/modules/create_timepoint/templates/form_create_timepoint.tpl @@ -40,6 +40,11 @@
{$form.visitLabel.html}
+
+ +
{$form.languageID.html}
+
+
diff --git a/php/libraries/TimePoint.class.inc b/php/libraries/TimePoint.class.inc index 7cfb798deb1..e126feb7470 100644 --- a/php/libraries/TimePoint.class.inc +++ b/php/libraries/TimePoint.class.inc @@ -191,13 +191,15 @@ class TimePoint /** * Registers a new timepoint into the session table * - * @param \Candidate $candidate The Candidate to create this timepoint for - * @param integer $SubprojectID The subprojectID of the new timepoint - * @param string|null $nextVisitLabel The visit label of the timepoint - * being created. If null, consecutive V1, V2, - * etc will be created. - * @param \Site $psc The center of the timepoint - * @param \Project $project The project of the timepoint + * @param \Candidate $candidate The Candidate to create this timepoint for + * @param integer $SubprojectID The subprojectID of the new timepoint + * @param string|null $nextVisitLabel The visit label of the timepoint + * being created. If null, + * consecutive V1, V2, etc will be + * created. + * @param \Site $psc The center of the timepoint + * @param \Project $project The project of the timepoint + * @param integer|null $lang The language id * * @throws DatabaseException * @@ -208,7 +210,8 @@ class TimePoint int $SubprojectID, ?string $nextVisitLabel, \Site $psc, - \Project $project + \Project $project, + ?int $lang = null ): void { // insert into session set CandID=$candID, @@ -237,6 +240,12 @@ class TimePoint $VisitLabel = "V$visitNo"; } + $language = $lang; + if ($language === null) { + $langList = Utility::getLanguageList(); + $language = array_key_first($langList); + } + $insertData = array( 'CandID' => $candidate->getCandID(), 'SubprojectID' => $SubprojectID, @@ -250,6 +259,7 @@ class TimePoint 'UserID' => $userID, 'Date_registered' => $today, 'Date_active' => $today, + 'languageID' => $language, ); // insert the data diff --git a/raisinbread/RB_files/RB_session.sql b/raisinbread/RB_files/RB_session.sql index 5126ecb29aa..ac9a9e2492f 100644 --- a/raisinbread/RB_files/RB_session.sql +++ b/raisinbread/RB_files/RB_session.sql @@ -1,1141 +1,1141 @@ SET FOREIGN_KEY_CHECKS=0; TRUNCATE TABLE `session`; LOCK TABLES `session` WRITE; -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1,300001,2,1,1,'V1',2,'N','Visit','2018-03-26',NULL,NULL,'In Progress','2018-03-26',NULL,NULL,'Y','2018-03-26','admin','admin','2018-03-26','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2,300002,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (3,300003,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (4,300004,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (5,300005,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (6,300006,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (7,300007,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,'Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (8,300008,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (9,300009,2,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (10,300010,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (11,300011,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,'Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (12,300012,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (13,300013,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (14,300014,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (15,300015,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (16,300016,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (17,300017,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (18,300018,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (19,300019,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (20,300020,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (21,300021,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (22,300022,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Pass','N','2016-08-12 12:21:58','2016-08-12 12:22:04','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (23,300023,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (24,300024,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (25,300025,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (26,300026,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (27,300027,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (28,300028,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (29,300029,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (30,300030,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (31,300031,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (32,300032,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (33,300033,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (34,300034,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (35,300035,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (36,300036,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (37,300037,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (38,300038,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Fail','N','2016-08-12 12:23:37','2016-08-12 12:23:37','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (39,300039,2,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (40,300040,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (41,300041,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (42,300042,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (43,300043,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (44,300044,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (45,300045,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (46,300046,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (47,300047,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (48,300048,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (49,300049,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (50,300050,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (51,300051,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (52,300052,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (53,300053,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (54,300054,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (55,300055,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (56,300056,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (57,300057,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (58,300058,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (59,300059,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (60,300060,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (61,300061,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (62,300062,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (63,300063,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (64,300064,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (65,300065,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (66,300066,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (67,300067,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (68,300068,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (69,300069,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (70,300070,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (71,300071,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (72,300072,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (73,300073,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (74,300074,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (75,300075,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (76,300076,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (77,300077,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (78,300078,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (79,300079,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (80,300080,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (81,300081,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (82,300082,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (83,300083,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (84,300084,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (85,300085,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (86,300086,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (87,300087,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (88,300088,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (89,300089,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (90,300090,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (91,300091,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (92,300092,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (93,300093,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (94,300094,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (95,300095,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (96,300096,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (97,300097,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (98,300098,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (99,300099,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (100,300100,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (101,300101,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (102,300102,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (103,300103,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (104,300104,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (105,300105,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (106,300106,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (107,300107,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (108,300108,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (109,300109,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (110,300110,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (111,300111,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (112,300112,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (113,300113,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (114,300114,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (115,300115,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (116,300116,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (117,300117,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (118,300118,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (119,300119,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (120,300120,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (121,300121,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (122,300122,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (123,300123,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (124,300124,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (125,300125,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (126,300126,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (127,300127,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (128,300128,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (129,300129,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (130,300130,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (131,300131,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (132,300132,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (133,300133,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (134,300134,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (135,300135,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Pass','N','2016-08-15 11:06:22','2016-08-15 11:07:00','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (136,300136,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (137,300137,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (138,300138,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (139,300139,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (140,300140,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (141,300141,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (142,300142,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (143,300143,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (144,300144,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (145,300145,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (146,300146,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (148,300148,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (149,300149,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (150,300150,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (151,300151,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (152,300152,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (153,300153,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (154,300154,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (155,300155,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (156,300156,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (157,300157,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (158,300158,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (159,300159,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (160,300160,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (161,300161,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (162,300162,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (163,300163,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (164,300164,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (165,300165,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (166,300166,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (167,300167,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (168,300168,3,1,1,'V1',1,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (169,300169,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (170,300170,3,1,1,'V1',2,'N','Visit','2016-08-16',NULL,NULL,'Pass','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (171,300171,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (172,300172,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (173,300173,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (174,300174,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (175,300175,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (176,300176,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (177,300177,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (178,300178,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (179,300179,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (180,300180,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (181,300181,3,1,1,'V1',2,'N','Visit','2016-08-16',NULL,NULL,'Pass','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (182,300182,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (183,300183,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (184,300184,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (185,300185,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (186,300186,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (187,300187,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (188,300188,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (189,300189,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (190,300190,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (191,300191,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (192,300192,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (193,300193,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (194,300194,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (195,300195,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (196,300196,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (197,300197,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (198,300198,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (199,300199,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (200,300200,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (201,300201,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (202,300202,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (203,300203,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (204,300204,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (205,300205,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (206,300206,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (207,300207,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (208,300208,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (209,300209,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (210,300210,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (211,300211,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (212,300212,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (213,300213,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (214,300214,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (215,300215,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (216,300216,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (217,300217,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (218,300218,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (219,300219,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (220,300220,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (221,300221,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (222,300222,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (223,300223,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (224,300224,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (225,300225,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (226,300226,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (227,300227,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (228,300228,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (229,300229,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (230,300230,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (231,300231,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (232,300232,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (233,300233,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (234,300234,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (235,300235,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (236,300236,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (237,300237,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (238,300238,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (239,300239,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (240,300240,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (241,300241,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (242,300242,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (243,300243,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (244,300244,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (245,300245,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (246,300246,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (247,300247,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (248,300248,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (249,300249,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (250,300250,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (251,300251,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (252,300252,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (253,300253,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (254,300254,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (255,300255,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (256,300256,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (257,300257,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (258,300258,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (259,300259,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (260,300260,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (261,300261,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (262,300262,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (263,300263,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (264,300264,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (265,300265,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (266,300266,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (267,300267,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (268,300268,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (269,300269,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (270,300270,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (271,300271,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (272,300272,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (273,300273,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (274,300274,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (275,300275,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (276,300276,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (277,300277,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (278,300278,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (279,300279,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (280,300280,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (281,300281,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (282,300282,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (283,300283,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (284,300284,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (285,300285,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (286,300286,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (287,300287,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (288,300288,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (289,300289,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (290,300290,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (291,300291,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (292,300292,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (293,300293,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (294,300294,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (295,300295,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (296,300296,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (297,300297,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (298,300298,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (299,300299,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (300,300300,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (301,300301,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (302,300302,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (303,300303,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (304,300304,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (305,300305,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (306,300306,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (307,300307,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (308,300308,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (309,300309,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (310,300310,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (311,300311,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (312,300312,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (313,300313,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (314,300314,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (316,300316,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (317,300317,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (318,300318,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (319,300319,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (320,300320,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (321,300321,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (323,300323,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (324,300324,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-15 11:03:58','2016-08-15 11:03:58','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (325,300325,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (326,300326,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (327,300327,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (328,300328,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (514,300299,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (515,300300,3,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (517,300302,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (518,300303,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (519,300305,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (523,300310,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (524,300311,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (527,300314,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (529,300316,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (532,300319,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (533,300320,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (534,300321,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (536,300323,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (538,300325,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (542,400162,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (545,400165,4,3,1,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (546,400166,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (547,400167,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (548,400168,4,3,1,'V3',1,'N','Visit','2016-08-19',NULL,NULL,'In Progress','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (549,400169,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (550,400170,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (551,400171,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (552,400172,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'Withdrawal','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (553,400173,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (554,400174,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (556,400176,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (557,400177,4,2,1,'V3',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (558,400178,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (559,400179,4,2,1,'V4',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (560,400180,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (561,400181,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (562,400182,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (563,400183,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (564,400184,4,3,1,'V3',3,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'Y','Pass','N','2016-08-15 10:49:46','2016-08-15 10:50:26','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (565,400185,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (566,400186,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (567,400187,4,2,1,'V3',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (568,400188,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (570,400190,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (571,400191,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (572,400192,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'Pass','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (573,400193,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (574,400194,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (575,400195,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (578,400198,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (579,400199,4,3,1,'V5',3,'N','Not Started','2016-08-12',NULL,NULL,NULL,'2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (581,400201,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (582,400202,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (583,400203,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (585,400205,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (586,400206,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (587,400207,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (589,400209,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (590,400210,4,2,1,'V3',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (592,400212,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (593,400213,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (594,400214,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (595,400215,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (597,400217,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (598,400218,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (599,400219,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (600,400220,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (601,400221,4,2,1,'V5',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (602,400222,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (603,400223,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (604,400224,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (605,400225,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (608,400228,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (609,400229,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (610,400230,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (611,400231,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (612,400232,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (613,400233,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (614,400234,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (615,400235,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (617,400237,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (618,400238,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (619,400239,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (620,400240,4,2,1,'V6',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (622,400242,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (623,400243,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (624,400244,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (626,400246,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (627,400247,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (628,400248,4,2,1,'V6',4,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (629,400249,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (630,400250,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (631,400251,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (632,400252,4,1,1,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (633,400253,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (634,400254,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (635,400255,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (636,400256,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (637,400257,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (638,400258,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (639,400259,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (640,400260,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (641,400261,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (642,400262,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (643,400263,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (644,400264,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (645,400265,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (646,400266,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (647,400267,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (648,400268,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (649,400269,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (650,400270,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (651,400271,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (652,400272,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (653,400273,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (654,400274,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (655,400275,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (657,400277,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (658,400278,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (659,400279,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (661,400281,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (662,400282,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (663,400283,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (665,400285,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (666,400286,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (668,400288,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (669,400289,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (670,400290,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (672,400292,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (673,400293,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (674,400294,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (676,400296,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (678,400298,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (679,400299,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (680,400300,4,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'Y','Pass','N','2016-08-15 10:43:12','2016-08-15 10:43:12','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (681,400301,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (682,400302,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (685,400305,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (686,400306,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (687,400307,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (688,400308,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (689,400309,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (690,400310,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (691,400311,4,3,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (692,400312,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (693,400313,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (694,400314,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (695,400315,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (697,400317,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (698,400318,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (700,400320,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (701,400321,4,3,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (702,400322,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (703,400323,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (704,400324,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (705,400325,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (706,400326,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (707,400327,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (708,400328,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (709,400329,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (711,400331,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (712,400332,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (715,400335,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (716,400336,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (717,400337,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (718,400338,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (720,400340,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (721,400341,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (722,400342,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (724,400344,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (725,400345,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (726,400346,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (727,400347,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (730,400350,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (731,400351,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (732,400352,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (733,400353,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (734,400354,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (735,400355,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (736,400356,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (737,400357,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (738,400358,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (740,400360,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (741,400361,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (742,400362,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (743,400363,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (744,400364,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (745,400365,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (746,400366,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (747,400367,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (749,400369,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (750,400370,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (753,400373,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (754,400374,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (755,400375,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (756,400376,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (757,400377,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (758,400378,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (759,400379,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (760,400380,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (761,400381,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (762,400382,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (764,400384,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (765,400385,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (766,400386,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (767,400387,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (768,400388,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (769,400389,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (770,400390,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (771,400391,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (772,400392,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (774,400394,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (775,400395,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (776,400396,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (777,400397,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (778,400398,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (780,400400,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (781,400401,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (782,400402,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (783,400403,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (784,400404,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (785,400405,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (786,400406,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (787,400407,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (788,400408,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (789,400409,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (790,400410,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (791,400411,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (792,400412,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (793,400413,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (794,400414,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (796,400416,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (797,400417,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (798,400418,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (799,400419,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (800,400420,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (801,400421,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (802,400422,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (803,400423,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (804,400424,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (805,400425,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (807,400427,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (808,400428,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (809,400429,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (810,400430,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (811,400431,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (812,400432,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (813,400433,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (814,400434,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (815,400435,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (816,400436,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (817,400437,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (818,400438,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (819,400439,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (820,400440,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (822,400442,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (823,400443,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (824,400444,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (825,400445,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (827,400447,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (829,400449,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (830,400450,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (831,400451,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (833,400453,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (834,400454,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (835,400455,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (836,400456,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (837,400457,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (838,400458,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (839,400459,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (840,400460,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (842,400462,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (845,400465,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (846,400466,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (848,400468,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (849,400469,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (850,400470,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (851,400471,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (852,400472,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (853,400473,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (854,400474,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (855,400475,4,3,1,'V2',1,'N','Visit','2016-08-19',NULL,NULL,'In Progress','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (856,400476,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (857,400477,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (858,400478,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (859,400479,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (860,400480,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (861,400481,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (862,400482,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (864,400484,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (865,400485,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (866,400486,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (867,400487,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (869,400489,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1053,587630,1,1,1,'V1',1,'N','Visit','2018-04-20',NULL,NULL,'Pass','2018-04-20',NULL,NULL,'Y','2018-04-20','admin','admin','2018-04-20','2019-11-25 13:24:01','-','Complete','Hardcopy',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1054,400342,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1056,400242,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1057,300212,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1058,300216,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1059,300151,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1060,300235,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1062,400164,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1063,300063,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1064,300255,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1065,300285,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1066,300279,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1067,300167,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1069,300042,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1070,300286,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1071,400466,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1072,300240,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1073,400407,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1075,300105,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1076,300106,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1078,300155,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1079,300187,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1080,400216,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1081,300046,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1082,300291,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1083,400232,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1084,300146,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1085,300126,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1086,300134,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1087,300214,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1088,400389,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1089,400314,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1090,400319,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1091,300219,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1092,300100,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1093,300113,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1095,300171,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1096,400426,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1098,300023,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1100,300185,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1101,400424,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1103,400325,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1104,300287,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1105,300072,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1106,300012,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1110,300093,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1112,300304,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1113,400371,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1114,300107,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1115,300085,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1116,400197,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1118,300247,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1119,300303,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1120,300262,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1122,300164,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1123,300323,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1124,300035,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1126,400372,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1127,400374,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1128,300028,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1129,300244,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1132,400433,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1133,300305,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1135,300053,2,1,2,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1136,300183,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1138,400291,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1139,300328,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1140,400472,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1141,300317,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1142,300088,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1143,300211,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1144,400223,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1146,400396,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1147,300289,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1148,400245,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1149,300138,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1150,300005,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1152,300047,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1153,300283,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1155,400361,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1156,300033,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1157,300073,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1160,300024,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1161,300080,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1162,300011,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1163,400276,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1165,300131,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1166,400409,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1167,300099,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1168,400173,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1170,300006,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1171,400368,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1173,400473,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1174,300318,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1175,300078,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1176,300327,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1179,300112,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1180,400303,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1181,300038,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1184,400237,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1185,400359,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1186,300041,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1188,400165,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1189,300002,2,1,2,'V2',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','Fail','N','2016-08-12 12:22:49','2016-08-12 12:22:54','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1190,300203,3,1,2,'V3',1,'N','Visit','2016-08-16',NULL,NULL,'In Progress','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-16 15:43:17','2016-08-16 15:43:17','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1191,300051,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1192,400355,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1196,300270,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1197,300014,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1199,300056,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1202,300201,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1203,300090,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1204,300087,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1205,300312,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1206,300326,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1207,400308,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1208,300233,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1209,400369,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1210,300061,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1211,400189,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1212,300194,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1214,300152,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1215,300075,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1216,300181,3,1,2,'V2',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-15 10:54:12','2016-08-15 10:54:12','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1218,400382,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1219,300109,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1220,300225,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1221,400380,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1222,300288,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1223,300153,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1224,300160,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1225,400309,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1226,400215,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1227,300020,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1228,300069,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1230,300200,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1233,400463,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1235,400163,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1237,300123,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1239,400286,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1240,400373,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1241,300111,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1242,400390,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1243,300120,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1244,300184,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1245,300175,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1246,300172,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1247,400167,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1248,400239,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1250,300249,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1252,400334,4,2,2,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1253,300108,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1254,400339,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1255,300173,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1256,400264,4,2,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1257,400489,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1258,300248,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1259,300189,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1261,300256,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1262,300193,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1263,400278,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1264,400288,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1265,300117,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1266,300220,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1267,300309,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1269,400332,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1270,300130,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1271,300195,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1272,400419,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1273,400175,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1274,400229,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1275,300032,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1276,300282,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1278,400456,4,2,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1279,400204,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1280,300300,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1281,400416,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1283,587630,1,1,2,'V2',1,'N','Visit','2019-11-25',NULL,NULL,'Pass','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:43','-','Complete',NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1285,400281,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1286,300259,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1287,300222,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1288,300308,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1289,300045,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1290,300082,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1293,400174,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1294,300297,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1295,300306,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1296,400481,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1297,300116,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1298,300127,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1299,300199,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1300,300260,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1301,400316,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1302,300202,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1303,300246,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1304,300236,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1306,300223,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1307,300036,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1308,300071,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1311,300324,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1313,300064,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1314,300110,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1317,300231,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1318,400217,4,1,2,'V3',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1319,300029,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1320,300055,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1321,300268,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1322,300265,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1324,400448,4,3,2,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1325,300007,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1327,300157,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1328,300215,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1332,400441,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1333,300178,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1334,400170,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1335,300197,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1336,300091,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1338,400266,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1339,300186,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1340,400401,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1341,300049,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1342,400406,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1343,300192,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1344,300238,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1345,400425,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1346,400446,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1347,300001,2,1,2,'V2',2,'N','Visit','2018-04-18',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-18','admin','admin','2018-04-18','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1348,400348,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1349,300166,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1350,300264,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1353,300252,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1356,300221,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1357,400461,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1358,300319,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1359,400474,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1360,300142,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1362,300097,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1363,300239,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1365,300092,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1368,300133,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1369,400227,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1370,400341,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1371,300144,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1372,400452,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1373,400172,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1375,300307,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1376,300026,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1377,300162,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1378,300269,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1379,300129,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1381,300272,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1382,300277,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1384,300021,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1385,300118,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1386,400392,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1387,300015,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1388,400304,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1389,300050,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1390,300180,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1391,300156,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1392,300115,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1396,400468,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1397,300031,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1400,300067,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1401,300043,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1402,300274,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1403,400343,4,2,2,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1404,300227,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1405,300095,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1407,300176,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1408,400436,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1410,300298,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1411,400168,4,3,2,'V2',1,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-',NULL,'Hardcopy',NULL,NULL,'Y','Fail','N','2016-08-15 10:39:32','2016-08-15 10:39:32','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1412,300198,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1413,300074,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1414,300250,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1415,300267,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1416,400356,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1417,300149,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1418,300242,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1421,400347,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1423,400234,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1424,300243,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1425,300257,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1426,300234,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1427,300310,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1428,300052,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1429,300062,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1430,300210,3,1,2,'V2',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Fail','N','2016-08-15 10:31:34','2016-08-15 10:31:34','false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1431,300119,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1433,300010,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1434,300292,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1435,400297,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1436,300154,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1437,300068,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1438,300048,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1439,300060,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1440,400200,4,1,2,'V2',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1441,300084,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1443,300143,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1444,400458,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1445,400320,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1446,400328,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1447,400182,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1448,400196,4,2,2,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1450,300141,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1452,300044,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1453,300025,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1565,400333,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1566,300128,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1570,300226,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1571,300145,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1574,300227,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1575,300171,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1576,300032,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1578,300258,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1580,300101,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1581,300206,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1582,300030,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1583,300004,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1584,400424,4,3,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1587,400250,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1588,300150,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1593,300104,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1597,300099,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1599,300176,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1601,400334,4,2,3,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1607,300294,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1608,400470,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1610,300027,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1611,300146,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1613,400347,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1614,300228,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1616,300295,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1620,300016,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1623,300248,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1625,300179,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1629,400276,4,3,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1632,400295,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1634,400330,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1635,300103,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1640,300067,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1643,300002,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1644,300018,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1645,300109,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1646,300095,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1647,300034,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1649,300313,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1650,400408,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1651,300013,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1652,400238,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1655,587630,1,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'Pass','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,'Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1656,300094,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1657,400456,4,2,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1658,400399,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1661,300285,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1665,400344,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1666,300086,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1667,300076,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1668,300180,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1672,400483,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1674,300273,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1675,300139,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1678,400368,4,3,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1679,400284,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1680,300106,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1684,400300,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1685,300036,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1687,300302,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1688,400467,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1689,400167,4,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1692,300296,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1694,300275,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1695,400419,4,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1697,300173,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1699,300096,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1701,300049,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1705,300219,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1707,300292,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1717,300134,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1718,400384,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1720,300174,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1723,400211,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1730,400241,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1731,300148,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1735,300172,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1738,300107,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1739,300165,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1740,300160,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1745,400169,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1746,300316,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1747,300119,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1748,300141,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1750,300251,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1751,300017,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1752,400273,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1754,400469,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1755,300082,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1756,300213,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1758,300267,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1767,400393,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1769,300283,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1775,300230,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1776,300159,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1777,400256,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1778,300289,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1779,400375,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1780,300229,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1781,300029,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1782,400264,4,2,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1786,400266,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1788,400332,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1790,300254,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1794,400208,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1796,400223,4,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1797,300225,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1802,300214,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1803,300245,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1806,300068,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1807,300237,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1808,300149,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1809,300079,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1811,400343,4,2,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1820,400308,4,3,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1821,400415,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1825,400460,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1827,300066,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1832,300130,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1835,300037,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1836,400404,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1839,400456,4,2,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1844,300218,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1845,300040,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1847,400172,4,3,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1853,300325,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1854,300163,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1855,400224,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1858,400343,4,2,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1863,300189,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1864,300103,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1866,300164,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1867,400334,4,2,4,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1868,300199,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1869,300065,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1871,300118,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1872,300046,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1873,300205,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1875,400196,4,2,3,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1876,300280,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1877,300273,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1878,400368,4,3,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1882,300139,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1883,400236,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1885,400247,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1886,300102,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1888,400448,4,3,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1891,300074,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1892,300306,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1895,300100,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1901,300064,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1904,400276,4,3,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1908,400383,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1909,300235,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1912,300188,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1913,400349,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1914,300078,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1916,300170,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1918,300202,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1919,300320,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1922,400416,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1925,300270,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1927,300005,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1928,400264,4,2,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1931,400226,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1932,400280,4,1,2,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1934,300311,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1937,300291,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1938,300281,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1939,300059,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1942,300054,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1952,300297,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1958,300165,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1962,300174,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1963,300278,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1964,300232,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1967,400464,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (1969,300252,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2075,300301,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2081,400196,4,2,4,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2083,400350,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2084,300135,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2086,300293,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2096,400469,4,3,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2102,300223,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2105,400308,4,3,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2107,300120,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2116,400192,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2121,400448,4,3,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2122,300213,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2138,284119,1,4,1,'Living_Phantom_DCC_SD_3t2',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2139,284119,1,4,2,'Living_Phantom_DCC_SD_3dwi',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2140,284119,1,4,3,'Living_Phantom_DCC_SD_3mprage',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2141,115788,1,1,1,'V3',3,'N','Visit','2018-04-20',NULL,NULL,'In Progress','2018-04-20',NULL,NULL,'Y','2018-04-20','admin','admin','2018-04-20','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2142,475906,1,1,1,'V1',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-01',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2143,475906,1,1,2,'V2',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-02-02',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2144,475906,1,1,3,'V3',1,'Y','Approval','2018-04-23',NULL,NULL,'Pass','2018-03-03','In Progress','2018-04-23','Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-','Complete',NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2145,676061,1,1,1,'V1',2,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-01',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,'Hardcopy',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2146,696846,2,1,1,'V1',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-15',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2147,676061,2,1,2,'V2',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-19',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2148,676061,1,1,3,'V3',2,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-03-03',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2149,676061,1,1,4,'V4',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-04',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2150,676061,1,1,5,'V5',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-05',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2151,676061,1,1,6,'V6',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-06',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2152,475906,1,1,4,'V4',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-04',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2153,475906,1,1,5,'V5',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-05',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2154,475906,1,1,6,'V6',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-06',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,'Visual',NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2155,947103,1,1,1,'V1',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2156,947103,1,1,2,'V2',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2157,947103,1,1,3,'V3',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2158,947103,1,1,4,'V4',3,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2159,947103,1,1,5,'V5',4,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false'); -INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`) VALUES (2160,947103,1,1,6,'V6',4,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false'); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1,300001,2,1,1,'V1',2,'N','Visit','2018-03-26',NULL,NULL,'In Progress','2018-03-26',NULL,NULL,'Y','2018-03-26','admin','admin','2018-03-26','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2,300002,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (3,300003,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (4,300004,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (5,300005,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (6,300006,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (7,300007,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,'Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (8,300008,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (9,300009,2,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (10,300010,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (11,300011,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,'Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (12,300012,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (13,300013,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (14,300014,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (15,300015,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (16,300016,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (17,300017,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (18,300018,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (19,300019,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (20,300020,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (21,300021,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (22,300022,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Pass','N','2016-08-12 12:21:58','2016-08-12 12:22:04','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (23,300023,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (24,300024,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (25,300025,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (26,300026,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (27,300027,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (28,300028,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (29,300029,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (30,300030,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (31,300031,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (32,300032,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (33,300033,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (34,300034,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (35,300035,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (36,300036,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (37,300037,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (38,300038,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Fail','N','2016-08-12 12:23:37','2016-08-12 12:23:37','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (39,300039,2,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (40,300040,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (41,300041,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (42,300042,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (43,300043,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (44,300044,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (45,300045,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (46,300046,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (47,300047,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (48,300048,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (49,300049,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (50,300050,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (51,300051,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (52,300052,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (53,300053,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (54,300054,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (55,300055,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (56,300056,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (57,300057,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (58,300058,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (59,300059,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (60,300060,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (61,300061,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (62,300062,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (63,300063,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (64,300064,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (65,300065,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (66,300066,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (67,300067,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (68,300068,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (69,300069,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (70,300070,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (71,300071,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (72,300072,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (73,300073,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (74,300074,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (75,300075,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (76,300076,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (77,300077,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (78,300078,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (79,300079,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (80,300080,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (81,300081,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (82,300082,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (83,300083,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (84,300084,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (85,300085,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (86,300086,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (87,300087,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (88,300088,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (89,300089,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (90,300090,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (91,300091,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (92,300092,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (93,300093,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (94,300094,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (95,300095,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (96,300096,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (97,300097,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (98,300098,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (99,300099,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (100,300100,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (101,300101,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (102,300102,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (103,300103,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (104,300104,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (105,300105,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (106,300106,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (107,300107,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (108,300108,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (109,300109,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (110,300110,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (111,300111,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (112,300112,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (113,300113,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (114,300114,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (115,300115,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (116,300116,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (117,300117,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (118,300118,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (119,300119,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (120,300120,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (121,300121,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (122,300122,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (123,300123,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (124,300124,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (125,300125,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (126,300126,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (127,300127,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (128,300128,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (129,300129,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (130,300130,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (131,300131,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (132,300132,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (133,300133,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (134,300134,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (135,300135,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','Pass','N','2016-08-15 11:06:22','2016-08-15 11:07:00','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (136,300136,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (137,300137,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (138,300138,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (139,300139,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (140,300140,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (141,300141,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (142,300142,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (143,300143,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (144,300144,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (145,300145,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (146,300146,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (148,300148,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (149,300149,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (150,300150,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (151,300151,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (152,300152,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (153,300153,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (154,300154,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (155,300155,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (156,300156,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (157,300157,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (158,300158,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (159,300159,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (160,300160,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (161,300161,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (162,300162,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (163,300163,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (164,300164,2,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (165,300165,2,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (166,300166,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (167,300167,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (168,300168,3,1,1,'V1',1,'N','Visit','2016-08-19',NULL,NULL,'Failure','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (169,300169,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (170,300170,3,1,1,'V1',2,'N','Visit','2016-08-16',NULL,NULL,'Pass','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (171,300171,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (172,300172,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (173,300173,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (174,300174,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (175,300175,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (176,300176,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (177,300177,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (178,300178,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (179,300179,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (180,300180,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (181,300181,3,1,1,'V1',2,'N','Visit','2016-08-16',NULL,NULL,'Pass','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (182,300182,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (183,300183,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (184,300184,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (185,300185,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (186,300186,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (187,300187,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (188,300188,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (189,300189,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (190,300190,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (191,300191,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (192,300192,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (193,300193,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (194,300194,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (195,300195,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (196,300196,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (197,300197,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (198,300198,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (199,300199,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (200,300200,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (201,300201,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (202,300202,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (203,300203,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (204,300204,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (205,300205,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (206,300206,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (207,300207,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (208,300208,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (209,300209,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (210,300210,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (211,300211,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (212,300212,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (213,300213,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (214,300214,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (215,300215,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (216,300216,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (217,300217,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (218,300218,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (219,300219,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (220,300220,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (221,300221,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (222,300222,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (223,300223,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (224,300224,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (225,300225,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (226,300226,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (227,300227,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (228,300228,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (229,300229,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (230,300230,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (231,300231,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (232,300232,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (233,300233,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (234,300234,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (235,300235,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (236,300236,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (237,300237,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (238,300238,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (239,300239,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (240,300240,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (241,300241,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (242,300242,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (243,300243,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (244,300244,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (245,300245,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (246,300246,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (247,300247,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (248,300248,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (249,300249,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (250,300250,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (251,300251,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (252,300252,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (253,300253,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (254,300254,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (255,300255,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (256,300256,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (257,300257,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (258,300258,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (259,300259,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (260,300260,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (261,300261,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (262,300262,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (263,300263,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (264,300264,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (265,300265,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (266,300266,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (267,300267,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (268,300268,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (269,300269,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (270,300270,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (271,300271,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (272,300272,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (273,300273,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (274,300274,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (275,300275,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (276,300276,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (277,300277,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (278,300278,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (279,300279,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (280,300280,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (281,300281,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (282,300282,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (283,300283,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (284,300284,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (285,300285,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (286,300286,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (287,300287,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (288,300288,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (289,300289,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (290,300290,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (291,300291,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (292,300292,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (293,300293,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (294,300294,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (295,300295,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (296,300296,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (297,300297,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (298,300298,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (299,300299,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (300,300300,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (301,300301,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (302,300302,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (303,300303,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (304,300304,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (305,300305,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (306,300306,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (307,300307,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (308,300308,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (309,300309,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (310,300310,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (311,300311,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (312,300312,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (313,300313,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (314,300314,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (316,300316,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (317,300317,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (318,300318,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (319,300319,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (320,300320,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (321,300321,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (323,300323,3,1,2,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (324,300324,3,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-15 11:03:58','2016-08-15 11:03:58','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (325,300325,3,1,2,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (326,300326,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (327,300327,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (328,300328,3,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (514,300299,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (515,300300,3,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (517,300302,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (518,300303,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (519,300305,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (523,300310,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (524,300311,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (527,300314,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (529,300316,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (532,300319,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (533,300320,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (534,300321,3,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (536,300323,3,1,1,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (538,300325,3,1,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (542,400162,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (545,400165,4,3,1,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (546,400166,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (547,400167,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (548,400168,4,3,1,'V3',1,'N','Visit','2016-08-19',NULL,NULL,'In Progress','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (549,400169,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (550,400170,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (551,400171,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (552,400172,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'Withdrawal','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (553,400173,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (554,400174,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (556,400176,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (557,400177,4,2,1,'V3',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (558,400178,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (559,400179,4,2,1,'V4',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (560,400180,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (561,400181,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (562,400182,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (563,400183,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (564,400184,4,3,1,'V3',3,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'Y','Pass','N','2016-08-15 10:49:46','2016-08-15 10:50:26','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (565,400185,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (566,400186,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (567,400187,4,2,1,'V3',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (568,400188,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (570,400190,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (571,400191,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (572,400192,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'Pass','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-','Complete','Visual',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (573,400193,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (574,400194,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (575,400195,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (578,400198,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (579,400199,4,3,1,'V5',3,'N','Not Started','2016-08-12',NULL,NULL,NULL,'2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (581,400201,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (582,400202,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (583,400203,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (585,400205,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (586,400206,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (587,400207,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (589,400209,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (590,400210,4,2,1,'V3',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (592,400212,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (593,400213,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (594,400214,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (595,400215,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (597,400217,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (598,400218,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (599,400219,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (600,400220,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (601,400221,4,2,1,'V5',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (602,400222,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (603,400223,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (604,400224,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (605,400225,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (608,400228,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (609,400229,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (610,400230,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (611,400231,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (612,400232,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (613,400233,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (614,400234,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (615,400235,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (617,400237,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (618,400238,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (619,400239,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (620,400240,4,2,1,'V6',3,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (622,400242,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (623,400243,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (624,400244,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (626,400246,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (627,400247,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (628,400248,4,2,1,'V6',4,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (629,400249,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (630,400250,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (631,400251,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (632,400252,4,1,1,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (633,400253,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (634,400254,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (635,400255,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (636,400256,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (637,400257,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (638,400258,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (639,400259,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (640,400260,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (641,400261,4,2,1,'V6',3,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (642,400262,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (643,400263,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (644,400264,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (645,400265,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (646,400266,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (647,400267,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (648,400268,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (649,400269,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (650,400270,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (651,400271,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (652,400272,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (653,400273,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (654,400274,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (655,400275,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (657,400277,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (658,400278,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (659,400279,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (661,400281,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (662,400282,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (663,400283,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (665,400285,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (666,400286,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (668,400288,4,3,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (669,400289,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (670,400290,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (672,400292,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (673,400293,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (674,400294,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (676,400296,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (678,400298,4,2,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (679,400299,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (680,400300,4,1,1,'V1',2,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-','Complete','Hardcopy',NULL,NULL,'Y','Pass','N','2016-08-15 10:43:12','2016-08-15 10:43:12','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (681,400301,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (682,400302,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (685,400305,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (686,400306,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (687,400307,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (688,400308,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (689,400309,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (690,400310,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (691,400311,4,3,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (692,400312,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (693,400313,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (694,400314,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (695,400315,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (697,400317,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (698,400318,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (700,400320,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (701,400321,4,3,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (702,400322,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (703,400323,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (704,400324,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (705,400325,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (706,400326,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (707,400327,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (708,400328,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (709,400329,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (711,400331,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (712,400332,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (715,400335,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (716,400336,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (717,400337,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (718,400338,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (720,400340,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (721,400341,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (722,400342,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (724,400344,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (725,400345,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (726,400346,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (727,400347,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (730,400350,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (731,400351,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (732,400352,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (733,400353,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (734,400354,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (735,400355,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (736,400356,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (737,400357,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (738,400358,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (740,400360,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (741,400361,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (742,400362,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (743,400363,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (744,400364,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (745,400365,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (746,400366,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (747,400367,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (749,400369,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (750,400370,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (753,400373,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (754,400374,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (755,400375,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (756,400376,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (757,400377,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (758,400378,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (759,400379,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (760,400380,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (761,400381,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (762,400382,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (764,400384,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (765,400385,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (766,400386,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (767,400387,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (768,400388,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (769,400389,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (770,400390,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (771,400391,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (772,400392,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (774,400394,4,2,1,'V3',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (775,400395,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (776,400396,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (777,400397,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (778,400398,4,1,1,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (780,400400,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (781,400401,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (782,400402,4,2,1,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (783,400403,4,2,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (784,400404,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (785,400405,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (786,400406,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (787,400407,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (788,400408,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (789,400409,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (790,400410,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (791,400411,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (792,400412,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (793,400413,4,2,1,'V5',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (794,400414,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (796,400416,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (797,400417,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (798,400418,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (799,400419,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (800,400420,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (801,400421,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (802,400422,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (803,400423,4,2,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (804,400424,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (805,400425,4,1,1,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (807,400427,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (808,400428,4,3,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (809,400429,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (810,400430,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (811,400431,4,2,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (812,400432,4,3,1,'V3',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (813,400433,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (814,400434,4,2,1,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (815,400435,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (816,400436,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (817,400437,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (818,400438,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (819,400439,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (820,400440,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (822,400442,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (823,400443,4,2,1,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (824,400444,4,2,1,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (825,400445,4,3,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (827,400447,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (829,400449,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (830,400450,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (831,400451,4,3,1,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (833,400453,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (834,400454,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (835,400455,4,3,1,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (836,400456,4,2,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (837,400457,4,3,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (838,400458,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (839,400459,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (840,400460,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (842,400462,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (845,400465,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (846,400466,4,1,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (848,400468,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (849,400469,4,3,1,'V1',1,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (850,400470,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (851,400471,4,2,1,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (852,400472,4,3,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (853,400473,4,1,1,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (854,400474,4,1,1,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (855,400475,4,3,1,'V2',1,'N','Visit','2016-08-19',NULL,NULL,'In Progress','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (856,400476,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (857,400477,4,2,1,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (858,400478,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (859,400479,4,1,1,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (860,400480,4,3,1,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (861,400481,4,3,1,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (862,400482,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (864,400484,4,1,1,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (865,400485,4,2,1,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (866,400486,4,3,1,'V3',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (867,400487,4,2,1,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (869,400489,4,1,1,'V1',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1053,587630,1,1,1,'V1',1,'N','Visit','2018-04-20',NULL,NULL,'Pass','2018-04-20',NULL,NULL,'Y','2018-04-20','admin','admin','2018-04-20','2019-11-25 13:24:01','-','Complete','Hardcopy',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1054,400342,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1056,400242,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1057,300212,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1058,300216,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1059,300151,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1060,300235,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1062,400164,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1063,300063,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1064,300255,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1065,300285,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1066,300279,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1067,300167,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1069,300042,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1070,300286,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1071,400466,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1072,300240,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1073,400407,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1075,300105,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1076,300106,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1078,300155,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1079,300187,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1080,400216,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1081,300046,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1082,300291,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1083,400232,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1084,300146,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1085,300126,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1086,300134,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1087,300214,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1088,400389,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1089,400314,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1090,400319,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1091,300219,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1092,300100,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1093,300113,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1095,300171,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1096,400426,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1098,300023,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1100,300185,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1101,400424,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1103,400325,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1104,300287,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1105,300072,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1106,300012,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1110,300093,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1112,300304,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1113,400371,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1114,300107,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1115,300085,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1116,400197,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1118,300247,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1119,300303,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1120,300262,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1122,300164,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1123,300323,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1124,300035,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1126,400372,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1127,400374,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1128,300028,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1129,300244,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1132,400433,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1133,300305,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1135,300053,2,1,2,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1136,300183,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1138,400291,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1139,300328,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1140,400472,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1141,300317,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1142,300088,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1143,300211,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1144,400223,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1146,400396,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1147,300289,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1148,400245,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1149,300138,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1150,300005,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1152,300047,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1153,300283,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1155,400361,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1156,300033,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1157,300073,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1160,300024,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1161,300080,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1162,300011,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1163,400276,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1165,300131,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1166,400409,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1167,300099,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1168,400173,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1170,300006,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1171,400368,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1173,400473,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1174,300318,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1175,300078,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1176,300327,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1179,300112,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1180,400303,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1181,300038,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1184,400237,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1185,400359,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1186,300041,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1188,400165,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1189,300002,2,1,2,'V2',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','Fail','N','2016-08-12 12:22:49','2016-08-12 12:22:54','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1190,300203,3,1,2,'V3',1,'N','Visit','2016-08-16',NULL,NULL,'In Progress','2016-08-16',NULL,NULL,'Y','2016-08-16','admin','admin','2016-08-16','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-16 15:43:17','2016-08-16 15:43:17','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1191,300051,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1192,400355,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1196,300270,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1197,300014,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1199,300056,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1202,300201,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1203,300090,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1204,300087,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1205,300312,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1206,300326,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1207,400308,4,3,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1208,300233,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1209,400369,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1210,300061,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1211,400189,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1212,300194,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1214,300152,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1215,300075,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1216,300181,3,1,2,'V2',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Pass','N','2016-08-15 10:54:12','2016-08-15 10:54:12','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1218,400382,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1219,300109,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1220,300225,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1221,400380,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1222,300288,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1223,300153,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1224,300160,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1225,400309,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1226,400215,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1227,300020,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1228,300069,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1230,300200,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1233,400463,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1235,400163,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1237,300123,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1239,400286,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1240,400373,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1241,300111,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1242,400390,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1243,300120,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1244,300184,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1245,300175,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1246,300172,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1247,400167,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1248,400239,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1250,300249,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1252,400334,4,2,2,'V4',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1253,300108,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1254,400339,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1255,300173,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1256,400264,4,2,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1257,400489,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1258,300248,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1259,300189,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1261,300256,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1262,300193,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1263,400278,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1264,400288,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1265,300117,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1266,300220,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1267,300309,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1269,400332,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1270,300130,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1271,300195,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1272,400419,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1273,400175,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1274,400229,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1275,300032,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1276,300282,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1278,400456,4,2,2,'V4',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1279,400204,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1280,300300,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1281,400416,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1283,587630,1,1,2,'V2',1,'N','Visit','2019-11-25',NULL,NULL,'Pass','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:43','-','Complete',NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1285,400281,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1286,300259,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1287,300222,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1288,300308,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1289,300045,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1290,300082,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1293,400174,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1294,300297,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1295,300306,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1296,400481,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1297,300116,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1298,300127,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1299,300199,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1300,300260,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1301,400316,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1302,300202,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1303,300246,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1304,300236,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1306,300223,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1307,300036,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1308,300071,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1311,300324,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1313,300064,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1314,300110,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1317,300231,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1318,400217,4,1,2,'V3',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1319,300029,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1320,300055,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1321,300268,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1322,300265,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1324,400448,4,3,2,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1325,300007,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1327,300157,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1328,300215,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1332,400441,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1333,300178,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1334,400170,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1335,300197,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1336,300091,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1338,400266,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1339,300186,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1340,400401,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1341,300049,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1342,400406,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1343,300192,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1344,300238,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1345,400425,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1346,400446,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1347,300001,2,1,2,'V2',2,'N','Visit','2018-04-18',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-18','admin','admin','2018-04-18','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1348,400348,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1349,300166,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1350,300264,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1353,300252,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1356,300221,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1357,400461,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1358,300319,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1359,400474,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1360,300142,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1362,300097,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1363,300239,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1365,300092,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1368,300133,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1369,400227,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1370,400341,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1371,300144,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1372,400452,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1373,400172,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1375,300307,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1376,300026,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1377,300162,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1378,300269,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1379,300129,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1381,300272,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1382,300277,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1384,300021,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1385,300118,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1386,400392,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1387,300015,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1388,400304,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1389,300050,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1390,300180,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1391,300156,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1392,300115,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1396,400468,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1397,300031,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1400,300067,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1401,300043,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1402,300274,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1403,400343,4,2,2,'V4',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1404,300227,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1405,300095,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1407,300176,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1408,400436,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1410,300298,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1411,400168,4,3,2,'V2',1,'N','Visit','2016-08-19',NULL,NULL,'Pass','2016-08-19',NULL,NULL,'Y','2016-08-19','admin','admin','2016-08-19','2019-11-25 13:34:28','-',NULL,'Hardcopy',NULL,NULL,'Y','Fail','N','2016-08-15 10:39:32','2016-08-15 10:39:32','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1412,300198,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1413,300074,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1414,300250,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1415,300267,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1416,400356,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1417,300149,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1418,300242,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1421,400347,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1423,400234,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1424,300243,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1425,300257,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1426,300234,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1427,300310,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1428,300052,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1429,300062,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1430,300210,3,1,2,'V2',2,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'Y','Fail','N','2016-08-15 10:31:34','2016-08-15 10:31:34','false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1431,300119,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1433,300010,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1434,300292,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1435,400297,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1436,300154,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1437,300068,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1438,300048,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1439,300060,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1440,400200,4,1,2,'V2',2,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1441,300084,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1443,300143,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1444,400458,4,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1445,400320,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1446,400328,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1447,400182,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1448,400196,4,2,2,'V4',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1450,300141,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1452,300044,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1453,300025,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1565,400333,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1566,300128,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1570,300226,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1571,300145,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1574,300227,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1575,300171,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1576,300032,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1578,300258,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1580,300101,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1581,300206,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1582,300030,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1583,300004,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1584,400424,4,3,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1587,400250,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1588,300150,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1593,300104,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1597,300099,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1599,300176,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1601,400334,4,2,3,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1607,300294,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1608,400470,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1610,300027,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1611,300146,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1613,400347,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1614,300228,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1616,300295,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1620,300016,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1623,300248,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1625,300179,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1629,400276,4,3,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1632,400295,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1634,400330,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1635,300103,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1640,300067,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1643,300002,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1644,300018,2,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1645,300109,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1646,300095,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1647,300034,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1649,300313,3,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1650,400408,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1651,300013,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1652,400238,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1655,587630,1,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'Pass','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,'Hardcopy',NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1656,300094,2,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1657,400456,4,2,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1658,400399,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1661,300285,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1665,400344,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1666,300086,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1667,300076,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1668,300180,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1672,400483,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1674,300273,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1675,300139,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1678,400368,4,3,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1679,400284,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1680,300106,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1684,400300,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1685,300036,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1687,300302,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1688,400467,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1689,400167,4,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1692,300296,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1694,300275,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1695,400419,4,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1697,300173,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1699,300096,2,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1701,300049,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1705,300219,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1707,300292,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1717,300134,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1718,400384,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1720,300174,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1723,400211,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1730,400241,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1731,300148,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1735,300172,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1738,300107,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1739,300165,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1740,300160,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1745,400169,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1746,300316,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1747,300119,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1748,300141,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1750,300251,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1751,300017,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1752,400273,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1754,400469,4,3,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1755,300082,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1756,300213,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1758,300267,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1767,400393,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1769,300283,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1775,300230,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1776,300159,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1777,400256,4,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1778,300289,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1779,400375,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1780,300229,3,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1781,300029,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1782,400264,4,2,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1786,400266,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1788,400332,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1790,300254,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1794,400208,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1796,400223,4,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1797,300225,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1802,300214,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1803,300245,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1806,300068,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1807,300237,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1808,300149,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1809,300079,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1811,400343,4,2,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1820,400308,4,3,3,'V5',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1821,400415,4,3,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1825,400460,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1827,300066,2,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1832,300130,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1835,300037,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1836,400404,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1839,400456,4,2,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1844,300218,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1845,300040,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1847,400172,4,3,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1853,300325,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1854,300163,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1855,400224,4,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1858,400343,4,2,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1863,300189,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1864,300103,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1866,300164,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1867,400334,4,2,4,'V6',4,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1868,300199,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1869,300065,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1871,300118,2,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1872,300046,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1873,300205,3,1,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1875,400196,4,2,3,'V5',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1876,300280,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1877,300273,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1878,400368,4,3,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1882,300139,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1883,400236,4,3,2,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1885,400247,4,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1886,300102,2,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1888,400448,4,3,3,'V5',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1891,300074,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1892,300306,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1895,300100,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1901,300064,2,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1904,400276,4,3,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1908,400383,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1909,300235,3,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1912,300188,3,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1913,400349,4,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1914,300078,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1916,300170,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1918,300202,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1919,300320,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1922,400416,4,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1925,300270,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1927,300005,2,1,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1928,400264,4,2,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1931,400226,4,1,2,'V2',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1932,400280,4,1,2,'V3',1,'N','Visit','2016-08-12',NULL,NULL,'In Progress','2016-08-12',NULL,NULL,'Y','2016-08-12','admin','admin','2016-08-12','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1934,300311,3,1,2,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1937,300291,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1938,300281,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1939,300059,2,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1942,300054,2,1,2,'V2',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1952,300297,3,1,3,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1958,300165,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1962,300174,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1963,300278,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1964,300232,3,1,2,'V3',2,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1967,400464,4,3,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (1969,300252,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2075,300301,3,1,2,'V2',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2081,400196,4,2,4,'V6',4,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2083,400350,4,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2084,300135,2,1,2,'V2',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2086,300293,3,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2096,400469,4,3,3,'V3',1,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2102,300223,3,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2105,400308,4,3,4,'V6',3,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2107,300120,2,1,3,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2116,400192,4,1,2,'V3',1,'N','Visit','2016-07-15',NULL,NULL,'In Progress','2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2121,400448,4,3,4,'V6',3,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2122,300213,3,1,3,'V3',2,'N','Not Started','2016-07-15',NULL,NULL,NULL,'2016-07-15',NULL,NULL,'Y','2016-07-15','admin','admin','2016-07-15','2019-11-25 13:34:28','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2138,284119,1,4,1,'Living_Phantom_DCC_SD_3t2',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2139,284119,1,4,2,'Living_Phantom_DCC_SD_3dwi',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2140,284119,1,4,3,'Living_Phantom_DCC_SD_3mprage',NULL,'N','Visit','2016-08-15',NULL,NULL,'In Progress','2016-08-15',NULL,NULL,'Y','2016-08-15','admin','admin','2016-08-15','2019-07-04 11:52:39','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2141,115788,1,1,1,'V3',3,'N','Visit','2018-04-20',NULL,NULL,'In Progress','2018-04-20',NULL,NULL,'Y','2018-04-20','admin','admin','2018-04-20','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2142,475906,1,1,1,'V1',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-01',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2143,475906,1,1,2,'V2',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-02-02',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2144,475906,1,1,3,'V3',1,'Y','Approval','2018-04-23',NULL,NULL,'Pass','2018-03-03','In Progress','2018-04-23','Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-','Complete',NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2145,676061,1,1,1,'V1',2,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-01',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,'Hardcopy',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2146,696846,2,1,1,'V1',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-15',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2147,676061,2,1,2,'V2',1,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-19',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2148,676061,1,1,3,'V3',2,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-03-03',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2149,676061,1,1,4,'V4',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-04',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2150,676061,1,1,5,'V5',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-05',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2151,676061,1,1,6,'V6',3,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-04-06',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2152,475906,1,1,4,'V4',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-04',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2153,475906,1,1,5,'V5',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-05',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2154,475906,1,1,6,'V6',4,'N','Visit','2018-04-23',NULL,NULL,'In Progress','2018-01-06',NULL,NULL,'Y','2018-04-23','admin','admin','2018-04-23','2019-07-04 09:43:19','-',NULL,'Visual',NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2155,947103,1,1,1,'V1',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2156,947103,1,1,2,'V2',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2157,947103,1,1,3,'V3',1,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2158,947103,1,1,4,'V4',3,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2159,947103,1,1,5,'V5',4,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'N','','N',NULL,NULL,'false',NULL); +INSERT INTO `session` (`ID`, `CandID`, `CenterID`, `ProjectID`, `VisitNo`, `Visit_label`, `SubprojectID`, `Submitted`, `Current_stage`, `Date_stage_change`, `Screening`, `Date_screening`, `Visit`, `Date_visit`, `Approval`, `Date_approval`, `Active`, `Date_active`, `RegisteredBy`, `UserID`, `Date_registered`, `Testdate`, `Hardcopy_request`, `BVLQCStatus`, `BVLQCType`, `BVLQCExclusion`, `QCd`, `Scan_done`, `MRIQCStatus`, `MRIQCPending`, `MRIQCFirstChangeTime`, `MRIQCLastChangeTime`, `MRICaveat`, `languageID`) VALUES (2160,947103,1,1,6,'V6',4,'N','Visit','2018-04-25',NULL,NULL,'In Progress','2018-04-18',NULL,NULL,'Y','2018-04-25','admin','admin','2018-04-25','2019-07-04 09:43:19','-',NULL,NULL,NULL,NULL,'Y','','N',NULL,NULL,'false',NULL); UNLOCK TABLES; SET FOREIGN_KEY_CHECKS=1;