diff --git a/ENI-2/ENI2/ENI2/Controls/POListControl.xaml b/ENI-2/ENI2/ENI2/Controls/POListControl.xaml
new file mode 100644
index 00000000..5b80b8ab
--- /dev/null
+++ b/ENI-2/ENI2/ENI2/Controls/POListControl.xaml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ENI-2/ENI2/ENI2/Controls/POListControl.xaml.cs b/ENI-2/ENI2/ENI2/Controls/POListControl.xaml.cs
new file mode 100644
index 00000000..2e72b9b6
--- /dev/null
+++ b/ENI-2/ENI2/ENI2/Controls/POListControl.xaml.cs
@@ -0,0 +1,156 @@
+// Copyright (c) 2017 schick Informatik
+// Description: PO Nummer Übersicht. Ergänzung Nummern. Excel Export
+//
+
+using System;
+using System.Collections.Generic;
+using System.Windows;
+using System.Windows.Controls;
+
+using bsmd.database;
+
+namespace ENI2.Controls
+{
+ ///
+ /// Interaction logic for POListControl.xaml
+ ///
+ public partial class POListControl : UserControl
+ {
+
+ #region Fields
+
+ private readonly string[] _comboBoxEntries =
+ {
+ "All",
+ "Maersk BHV",
+ "SeaGo BHV",
+ "SeaGo WHV"
+ };
+
+ private List searchResult = new List();
+ private readonly List filteredResult = new List();
+
+ #endregion
+
+ #region Construction
+
+ public POListControl()
+ {
+ InitializeComponent();
+ Loaded += POList_Loaded;
+ }
+
+ #endregion
+
+ #region control event handler
+
+ private void POList_Loaded(object sender, RoutedEventArgs e)
+ {
+ this.comboBoxFilterType.ItemsSource = this._comboBoxEntries;
+ this.doubleUpDownCalendarWeek.Value = bsmd.database.Util.GetIso8601WeekOfYear(DateTime.Now);
+ this.dataGridPOCores.ItemsSource = this.filteredResult;
+ }
+
+ private void buttonExcelExport_Click(object sender, RoutedEventArgs e)
+ {
+
+ }
+
+ private void buttonSaveChanges_Click(object sender, RoutedEventArgs e)
+ {
+ foreach(MessageCore messageCore in this.filteredResult)
+ {
+ if (messageCore.IsDirty)
+ {
+ DBManager.Instance.Save(messageCore);
+ messageCore.IsDirty = false;
+ }
+ }
+ this.buttonSaveChanges.IsEnabled = false;
+ }
+
+ private void doubleUpDownCalendarWeek_ValueChanged(object sender, RoutedPropertyChangedEventArgs