diff --git a/GUI/Model/Item/JobFunctions.cpp b/GUI/Model/Item/JobFunctions.cpp
index 925ad6c0ef9252b1140821f774b14f233b505d49..2377acbdbad444f81d1305ddf19a1e06c24dd75b 100644
--- a/GUI/Model/Item/JobFunctions.cpp
+++ b/GUI/Model/Item/JobFunctions.cpp
@@ -172,7 +172,7 @@ void GUI::Model::JobFunctions::copyRealDataItem(JobItem* jobItem, const RealData
 
     // adapting the name to job name
     realDataItemCopy->dataItem()->setFileName(
-        GUI::Model::FilenameUtils::jobReferenceFileName(jobItem->itemName()));
+        GUI::Model::FilenameUtils::jobReferenceFileName(jobItem->jobName()));
 
     // #baimport ++ copy members of realDataItem?
 
diff --git a/GUI/Model/Item/JobItem.cpp b/GUI/Model/Item/JobItem.cpp
index 3b074f319d1f2b6a8126479770b7b9ec343bb294..25a8e8e8597eae644b5291c7e752e0e490870f79 100644
--- a/GUI/Model/Item/JobItem.cpp
+++ b/GUI/Model/Item/JobItem.cpp
@@ -87,6 +87,16 @@ void JobItem::setIdentifier(const QString& identifier)
     setItemValue(JobItem::P_IDENTIFIER, identifier);
 }
 
+QString JobItem::jobName() const
+{
+    return itemName();
+}
+
+void JobItem::setJobName(const QString& name)
+{
+    setItemName(name);
+}
+
 IntensityDataItem* JobItem::intensityDataItem()
 {
     return dynamic_cast<IntensityDataItem*>(getItem(T_OUTPUT));
diff --git a/GUI/Model/Item/JobItem.h b/GUI/Model/Item/JobItem.h
index 30761c46a5f47b28bc3553a66e75e82723532ad2..3d29e7cde98569e840bd91a186d6b8542056f327 100644
--- a/GUI/Model/Item/JobItem.h
+++ b/GUI/Model/Item/JobItem.h
@@ -17,9 +17,9 @@
 
 #include "GUI/Model/BaseItem/SessionItem.h"
 #include "GUI/Model/Item/InstrumentItems.h"
+#include "GUI/Model/Item/MaterialItems.h"
 #include "GUI/Model/Item/MultiLayerItem.h"
 #include "GUI/Model/Item/ParameterTreeItems.h"
-#include "GUI/Model/Item/MaterialItems.h"
 #include "GUI/Model/Model/SessionModel.h" // call to model() from templated fct
 #include "GUI/Support/Data/JobStatus.h"   // enum cannot be forward declared
 #include "GUI/Support/Data/SimulationOptionsItem.h"
@@ -64,6 +64,9 @@ public:
     QString getIdentifier() const;
     void setIdentifier(const QString& identifier);
 
+    QString jobName() const;
+    void setJobName(const QString& name);
+
     IntensityDataItem* intensityDataItem();
     DataItem* dataItem();
     template <typename T> T* setDataType();
diff --git a/GUI/View/Job/JobListModel.cpp b/GUI/View/Job/JobListModel.cpp
index bdd5838026e704d8e2aaea90ee9152d07ea86bc1..e69395a86b8143ed81b014157c9f008e1184e1d2 100644
--- a/GUI/View/Job/JobListModel.cpp
+++ b/GUI/View/Job/JobListModel.cpp
@@ -55,7 +55,7 @@ QVariant JobListModel::data(const QModelIndex& index, int role) const
 
     JobItem* item = jobs[index.row()];
     if (role == Qt::DisplayRole)
-        return item->itemName();
+        return item->jobName();
 
     return {};
 }
diff --git a/GUI/View/Job/JobListView.cpp b/GUI/View/Job/JobListView.cpp
index dd09a20745e31ce61c516c87e206c8ee6ab83d6f..72fd803d422f2357993764da7bd1d7dfca491fb3 100644
--- a/GUI/View/Job/JobListView.cpp
+++ b/GUI/View/Job/JobListView.cpp
@@ -207,7 +207,7 @@ void JobListView::showContextMenu(const QPoint&)
         std::sort(indexes.begin(), indexes.end(), row_ascending);
         for (const QModelIndex& index : indexes) {
             JobItem* job = m_model->jobForIndex(index);
-            QAction* action = m_equalizeMenu->addAction(QString("to ").append(job->itemName()));
+            QAction* action = m_equalizeMenu->addAction(QString("to ").append(job->jobName()));
             connect(action, &QAction::triggered, this, [this, job] { equalizeSelectedToJob(job); });
         }
         m_equalizeMenu->setEnabled(true);
diff --git a/GUI/View/Job/JobListViewDelegate.cpp b/GUI/View/Job/JobListViewDelegate.cpp
index 5254735e3bffc495513cb92aaa64493eecec5709..c9911c9a6ff0f5117528ca4018ea2430531533fc 100644
--- a/GUI/View/Job/JobListViewDelegate.cpp
+++ b/GUI/View/Job/JobListViewDelegate.cpp
@@ -49,9 +49,8 @@ void JobListViewDelegate::paint(QPainter* painter, const QStyleOptionViewItem& o
 
     painter->setRenderHint(QPainter::Antialiasing, true);
 
-    QString text = item->itemName();
     QRect textRect = getTextRect(option.rect);
-    painter->drawText(textRect, text);
+    painter->drawText(textRect, item->jobName());
 
     drawCustomProjectBar(item, painter, option);
 
diff --git a/GUI/View/Job/JobPropertiesTableModel.cpp b/GUI/View/Job/JobPropertiesTableModel.cpp
index 78523d95a4db3afdf21f5a265968908e8cc7ff08..52c695d144178d09d55ca39de05a3777eaf266f8 100644
--- a/GUI/View/Job/JobPropertiesTableModel.cpp
+++ b/GUI/View/Job/JobPropertiesTableModel.cpp
@@ -83,7 +83,7 @@ QVariant JobPropertiesTableModel::data(const QModelIndex& index, int role) const
     case Column::Value: {
         switch (index.row()) {
         case Row::Name:
-            return m_item->itemName();
+            return m_item->jobName();
         case Row::Sample:
             return m_item->sampleName();
         case Row::Instrument:
@@ -135,7 +135,7 @@ bool JobPropertiesTableModel::setData(const QModelIndex& index, const QVariant&
     if (role != Qt::EditRole || index.column() != Column::Value || index.row() != Row::Name
         || !m_item)
         return false;
-    m_item->setItemName(value.toString());
+    m_item->setJobName(value.toString());
     emit dataChanged(index, index, {role});
     return true;
 }