private function writeToExportTable($fileName)
 {
     $export = new Gpf_Db_Export();
     $export->setFileName($fileName);
     $export->setDateTime($this->date);
     $export->setDescription($this->note);
     $export->setDataTypes($this->getDataTypes());
     $export->setAccountId(Gpf_Session::getAuthUser()->getAccountId());
     $export->insert();
 }