--- /src/Controller/Admin/ElementController.php
+++ /src/Controller/Admin/ElementController.patch.php
@@ -16,6 +16,7 @@
 
 namespace Pimcore\Bundle\AdminBundle\Controller\Admin;
 
+use C4S\ShopObjectExporterBundle\Tool\Setting;
 use Pimcore\Bundle\AdminBundle\Controller\AdminAbstractController;
 use Pimcore\Bundle\AdminBundle\DependencyInjection\PimcoreAdminExtension;
 use Pimcore\Bundle\AdminBundle\Event\AdminEvents;
@@ -606,6 +607,14 @@
                         $version['scheduled'] = null;
                         if (array_key_exists($version['id'], $schedules)) {
                             $version['scheduled'] = $schedules[$version['id']];
+                        }
+                        $db = Db::get();
+                        $sOutputFileName = $db->fetchOne('SELECT C4S_OUTPUT_FILE FROM versions WHERE id = '.$version['id']);
+                        if ($sOutputFileName) {
+                            $version['outputFileName'] = $sOutputFileName;
+                            if (file_exists(Setting::getArchiveTarget().'/'.$sOutputFileName)) {
+                                $version['outputFileDatetime'] = date ("Y-m-d H:i:s", filemtime(Setting::getArchiveTarget().'/'.$sOutputFileName));
+                            }
                         }
                     }
 
