diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
index b915eedfbc305a9f4c43a2a787f4fe9a6d3c566a..78bbe5243519f7b45315463c0e29116ebce481f3 100644
--- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
+++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/managed.py
@@ -8,7 +8,8 @@ from ch.systemsx.cisd.openbis.generic.server import CommonServiceProvider
 configuration = {}
 
 configuration["GENERAL_PROTOCOL"] = {
-                          "CHEMICALS" : {"QUANTITY" : False, "CHEMICAL_NAME" : False },
+                          "CHEMICALS" : {"QUANTITY" : False, "NAME" : False },
+                          "SOLUTION_BUFFERS" : {"QUANTITY" : False, "NAME" : False }
                          };
 
 #Global Variables
diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
index 15b6ce3273925dbdde12e504bca666d6977ad198..36e740bd753a7639375b73a0bccd51f5d7f306be 100644
--- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
+++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/migration.py
@@ -13,34 +13,15 @@ definitions = {
                                     { 
                                      "CHEMICALS" : {
                                                     "quantity" : "QUANTITY",
-                                                    "name" : "CHEMICAL_NAME"
+                                                    "name" : "NAME"
+                                                    },
+                                     "SOLUTIONS_BUFFERS" : {
+                                                    "quantity" : "QUANTITY",
+                                                    "name" : "NAME"
                                                     }
                                     }
 };
 
-# sampleTypes = [
-#             "GENERAL_PROTOCOL",
-#             "MEDIA",
-#             "PCR",
-#             "POMBE",
-#             "READOUT",
-#             "RESULT",
-#             "SOLUTIONS_BUFFERS",
-#             "WESTERN_BLOTTING",
-#             "YEAST"];
-#     
-# properties = [
-#             "CHEMICALS",
-#             "SOLUTIONS_BUFFERS",
-#             "ENZYMES",
-#             "MEDIA",
-#             "GENERAL_PROTOCOL",
-#             "PLASMIDS",
-#             "POMBE-PARENTS",
-#             "ANNOTATIONS",
-#             "ANTIBODIES",
-#             "YEAST_PARENTS"];
-
 def process(tr):
     print "START!"
     for sampleType in definitions:
diff --git a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/notes.txt b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/notes.txt
index 314349113314973d49a4e40439ca004f53ba2ee3..c1d884229adbe93b8eea11e8362ff52cc531d118 100644
--- a/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/notes.txt
+++ b/plasmid/source/core-plugins/stellingmigration/1/dss/drop-boxes/stellingmigration/notes.txt
@@ -3,8 +3,8 @@
 ##
 
 #
-# CHEMICALS
+# CHEMICALS, SOLUTION_BUFFERS
 #
 
 QUANTITY
-CHEMICAL_NAME
\ No newline at end of file
+NAME
\ No newline at end of file