diff --git a/entity/CampaignStep_entity/CampaignStep_entity.aod b/entity/CampaignStep_entity/CampaignStep_entity.aod
index 3d40d3531edc1d25041c2b33f962aaf35eef07d3..5a568b8af9acf40209bc5a0344319afd60110316 100644
--- a/entity/CampaignStep_entity/CampaignStep_entity.aod
+++ b/entity/CampaignStep_entity/CampaignStep_entity.aod
@@ -411,6 +411,10 @@
           <isObjectAction v="false" />
           <iconId>VAADIN:AT</iconId>
         </entityActionField>
+        <entityActionField>
+          <name>Export_action</name>
+          <onActionProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/group/children/export_action/onActionProcess.js</onActionProcess>
+        </entityActionField>
       </children>
     </entityActionGroup>
     <entityField>
diff --git a/entity/CampaignStep_entity/entityfields/group/children/export_action/onActionProcess.js b/entity/CampaignStep_entity/entityfields/group/children/export_action/onActionProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..6c68dcef71d0a7db12fd4d25819640764899dbad
--- /dev/null
+++ b/entity/CampaignStep_entity/entityfields/group/children/export_action/onActionProcess.js
@@ -0,0 +1,11 @@
+import("ExportTemplate_lib");
+import("system.vars");
+
+var selection = vars.get("$sys.selection");
+
+if(selection.length == 0)     //no selection -> use Filtercondition;
+{
+    selection = vars.get("$sys.filter");
+}
+
+ExportTemplateUtils.addParticipants(JSON.stringify(selection), vars.get("$sys.currentcontextname"));
\ No newline at end of file
diff --git a/process/Dependency_lib/process.js b/process/Dependency_lib/process.js
index efe81c43ef8249475a569c9732b3fe96a3149a33..2c137e74dbf61bdd2086081fe065e1f836090c1c 100644
--- a/process/Dependency_lib/process.js
+++ b/process/Dependency_lib/process.js
@@ -1031,6 +1031,16 @@ Dependency.mapping = function ()
                     "isObservable" : true
                 },
                 "getUIDsfn" : Dependency.defaultFunctionForRelation("TASKLINK", "OBJECT_ROWID", "CAMPAIGNSTEPID", "CampaignStep", "CAMPAIGNSTEP")
+            },
+            "CampaignParticipant_entity" : 
+            {
+                "options" : 
+                {
+                    "isExportable" : true,
+                    "isObservable" : false
+                }, 
+                "getUIDsfn" : Dependency.defaultFunctionForRelation("CAMPAIGNPARTICIPANT", "CAMPAIGNSTEP_ID", "CAMPAIGNSTEPID", null, "CAMPAIGNSTEPID", "CAMPAIGNPARTICIPANTID"), 
+                "fieldsToLoad" : ["CAMPAIGNSTEPID"]
             }
         },
         "Lead_entity" : 
diff --git a/process/ExportTemplate_lib/process.js b/process/ExportTemplate_lib/process.js
index 0c7b4b920559b8d3a088c8e5b4dd3e13e3ae0019..daf23fb9a30c2d66e011e678d185a405fb275601 100644
--- a/process/ExportTemplate_lib/process.js
+++ b/process/ExportTemplate_lib/process.js
@@ -501,6 +501,7 @@ ExportTemplateUtils.exportableEntities = function ()
     "Offer_entity",
     "Organisation_entity",
     "Person_entity",
-    "Salesproject_entity"
+    "Salesproject_entity",
+    "CampaignStep_entity"
     ];
 }
\ No newline at end of file