diff --git a/aliasDefinition/Data_alias/Data_alias.aod b/aliasDefinition/Data_alias/Data_alias.aod
index fb634569f2d2d3b7e26d44bcd45633d5ac5eb4d6..ef3197cd46a5b7bc8b9b9b5d2de62348b9fdfb00 100644
--- a/aliasDefinition/Data_alias/Data_alias.aod
+++ b/aliasDefinition/Data_alias/Data_alias.aod
@@ -6494,6 +6494,20 @@
                 <title></title>
                 <description></description>
               </entityFieldDb>
+              <entityFieldDb>
+                <name>DESCRIPTION</name>
+                <dbName></dbName>
+                <primaryKey v="false" />
+                <columnType v="12" />
+                <size v="500" />
+                <scale v="0" />
+                <notNull v="false" />
+                <isUnique v="false" />
+                <index v="false" />
+                <documentation></documentation>
+                <title></title>
+                <description></description>
+              </entityFieldDb>
             </entityFields>
           </entityDb>
           <entityDb>
diff --git a/entity/360Degree_entity/360Degree_entity.aod b/entity/360Degree_entity/360Degree_entity.aod
index 66b17d986f3f77f93e3bea9c803ef2a87d1a95bb..6a7428cd5b9bf1fb69c189f97952a8fbcdeeb0e7 100644
--- a/entity/360Degree_entity/360Degree_entity.aod
+++ b/entity/360Degree_entity/360Degree_entity.aod
@@ -121,6 +121,15 @@
           <iconIdProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/newcontract/iconIdProcess.js</iconIdProcess>
           <stateProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/newcontract/stateProcess.js</stateProcess>
         </entityActionField>
+        <entityActionField>
+          <name>newCampaignParticipant</name>
+          <fieldType>ACTION</fieldType>
+          <title>Add to campaign</title>
+          <onActionProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/onActionProcess.js</onActionProcess>
+          <iconId>NEON:GROUP_APPOINTMENT</iconId>
+          <stateProcess>%aditoprj%/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/stateProcess.js</stateProcess>
+          <tooltip>Choose a campaign and a step to add the contact to a  campaign</tooltip>
+        </entityActionField>
       </children>
     </entityActionGroup>
     <entityField>
diff --git a/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/onActionProcess.js b/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/onActionProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..6d99e6cb7b9b7e3efdd8e52f710084217dc65c21
--- /dev/null
+++ b/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/onActionProcess.js
@@ -0,0 +1,9 @@
+import("system.logging");
+import("system.vars");
+import("Campaign_lib");
+
+logging.log("ObjectType_param ->" + vars.get("$param.ObjectType_param"));
+logging.log("TARGET_CONTEXT ->" + vars.get("field.TARGET_CONTEXT"));
+logging.log("CONTEXT_NAME ->" + vars.get("field.CONTEXT_NAME"));
+logging.log("ObjectRowId_param -> " + vars.getString("$param.ObjectRowId_param"));
+//CampaignUtils.addParticipant(vars.getString("$param.ObjectRowId_param"));
\ No newline at end of file
diff --git a/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/stateProcess.js b/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/stateProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..2b00a9a7e37895a2608ce021896b3bbcb90d4b92
--- /dev/null
+++ b/entity/360Degree_entity/entityfields/newmodule/children/newcampaignparticipant/stateProcess.js
@@ -0,0 +1,15 @@
+import("system.vars");
+import("system.neon");
+import("system.result");
+
+var contextList = JSON.parse(vars.getString("$param.ObjectType_param"));
+var found = false;
+contextList.forEach(function (context) 
+{
+    if(context == "CampaignParticipant")
+        found = true;        
+});
+if(found)
+    result.string(neon.COMPONENTSTATE_AUTO);
+else
+    result.string(neon.COMPONENTSTATE_INVISIBLE);
\ No newline at end of file
diff --git a/entity/360Degree_entity/entityfields/organisationobjects/children/objecttype_param/valueProcess.js b/entity/360Degree_entity/entityfields/organisationobjects/children/objecttype_param/valueProcess.js
index bb07a1ee2ed5f16932e450be46af31e10e5ec7ee..f2f54ecff3d9ff295d929a5840b6cd071a4ccd7c 100644
--- a/entity/360Degree_entity/entityfields/organisationobjects/children/objecttype_param/valueProcess.js
+++ b/entity/360Degree_entity/entityfields/organisationobjects/children/objecttype_param/valueProcess.js
@@ -1,4 +1,4 @@
 import("system.vars");
 import("system.result");
 
-result.object(["Salesproject", "Offer", "Contract"]);
\ No newline at end of file
+result.object(["Salesproject", "Offer", "Contract", "CampaignParticipant"]);
\ No newline at end of file
diff --git a/entity/360Degree_entity/entityfields/personobjects/children/objecttype_param/valueProcess.js b/entity/360Degree_entity/entityfields/personobjects/children/objecttype_param/valueProcess.js
index 15de0e1ae47eb721911420272e0952a8d0aab01c..8937eb967cbb5134d3bf16a6c7ded068d30bab07 100644
--- a/entity/360Degree_entity/entityfields/personobjects/children/objecttype_param/valueProcess.js
+++ b/entity/360Degree_entity/entityfields/personobjects/children/objecttype_param/valueProcess.js
@@ -1,4 +1,4 @@
 import("system.vars");
 import("system.result");
 
-result.object(["Offer", "Contract"]);
\ No newline at end of file
+result.object(["Offer", "Contract", "CampaignParticipant"]);
\ No newline at end of file
diff --git a/entity/CampaignAddParticipants_entity/CampaignAddParticipants_entity.aod b/entity/CampaignAddParticipants_entity/CampaignAddParticipants_entity.aod
index 2bd6d6b593e73e023f936f64da158620915dee68..d63bfbbe44c55eecefd8e739629b0df3f16e9286 100644
--- a/entity/CampaignAddParticipants_entity/CampaignAddParticipants_entity.aod
+++ b/entity/CampaignAddParticipants_entity/CampaignAddParticipants_entity.aod
@@ -3,6 +3,7 @@
   <name>CampaignAddParticipants_entity</name>
   <title>Add participants to Campaign</title>
   <majorModelMode>DISTRIBUTED</majorModelMode>
+  <afterOperatingState>%aditoprj%/entity/CampaignAddParticipants_entity/afterOperatingState.js</afterOperatingState>
   <recordContainer>jdito</recordContainer>
   <entityFields>
     <entityProvider>
@@ -13,12 +14,18 @@
       <title>Campaign</title>
       <consumer>CampaignConsumer</consumer>
       <mandatory v="true" />
+      <state>AUTO</state>
+      <valueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaign_id/valueProcess.js</valueProcess>
+      <displayValueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaign_id/displayValueProcess.js</displayValueProcess>
     </entityField>
     <entityField>
       <name>CAMPAIGNSTEP_ID</name>
       <title>Campaign Step</title>
       <consumer>CampaignStepConsumer</consumer>
       <mandatory v="true" />
+      <state>EDITABLE</state>
+      <valueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaignstep_id/valueProcess.js</valueProcess>
+      <displayValueProcess>%aditoprj%/entity/CampaignAddParticipants_entity/entityfields/campaignstep_id/displayValueProcess.js</displayValueProcess>
     </entityField>
     <entityField>
       <name>campaignParticipantMessage</name>
@@ -59,6 +66,16 @@
     <entityField>
       <name>UID</name>
     </entityField>
+    <entityParameter>
+      <name>currentCampaignId_param</name>
+      <expose v="true" />
+      <description>PARAMETER</description>
+    </entityParameter>
+    <entityParameter>
+      <name>currentCampaignStepId_param</name>
+      <expose v="true" />
+      <description>PARAMETER</description>
+    </entityParameter>
   </entityFields>
   <recordContainers>
     <jDitoRecordContainer>
@@ -66,6 +83,7 @@
       <jDitoRecordAlias>Data_alias</jDitoRecordAlias>
       <contentProcess>%aditoprj%/entity/CampaignAddParticipants_entity/recordcontainers/jdito/contentProcess.js</contentProcess>
       <onInsert>%aditoprj%/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onInsert.js</onInsert>
+      <onUpdate>%aditoprj%/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onUpdate.js</onUpdate>
       <recordFields>
         <element>UID.value</element>
       </recordFields>
diff --git a/entity/CampaignAddParticipants_entity/afterOperatingState.js b/entity/CampaignAddParticipants_entity/afterOperatingState.js
new file mode 100644
index 0000000000000000000000000000000000000000..0265fbd4f36bc81aea602c4cc6f51140f1c03a7e
--- /dev/null
+++ b/entity/CampaignAddParticipants_entity/afterOperatingState.js
@@ -0,0 +1,2 @@
+import("system.logging");
+logging.log("hallo");
\ No newline at end of file
diff --git a/entity/CampaignAddParticipants_entity/entityfields/campaign_id/displayValueProcess.js b/entity/CampaignAddParticipants_entity/entityfields/campaign_id/displayValueProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..617c4952549c591e5ce27434bda419636cafae64
--- /dev/null
+++ b/entity/CampaignAddParticipants_entity/entityfields/campaign_id/displayValueProcess.js
@@ -0,0 +1,10 @@
+import("system.logging");
+import("system.result");
+import("system.db");
+import("system.vars");
+import("Campaign_lib");
+
+var campaignId = vars.get("$field.CAMPAIGN_ID");
+var campaignName = CampaignUtils.getCampaignNameById(campaignId);
+logging.log("CampaignAddParticipants: CAPMAIGN_ID displayValueProcess -> " + campaignName);
+result.string(campaignName);
\ No newline at end of file
diff --git a/entity/CampaignAddParticipants_entity/entityfields/campaign_id/valueProcess.js b/entity/CampaignAddParticipants_entity/entityfields/campaign_id/valueProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..5deb886b88ee09a8de4bd50ba7167e0a0d4b86fa
--- /dev/null
+++ b/entity/CampaignAddParticipants_entity/entityfields/campaign_id/valueProcess.js
@@ -0,0 +1,8 @@
+import("system.result");
+import("system.neon");
+import("system.vars");
+
+if(vars.exists("$param.currentCampaignId_param") && vars.get("$param.currentCampaignId_param"))
+{
+    result.string(vars.get("$param.currentCampaignId_param"));
+}
\ No newline at end of file
diff --git a/entity/CampaignAddParticipants_entity/entityfields/campaignstep_id/valueProcess.js b/entity/CampaignAddParticipants_entity/entityfields/campaignstep_id/valueProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..dd3720d0cc816c16944f7f2b7ef3adde1e227915
--- /dev/null
+++ b/entity/CampaignAddParticipants_entity/entityfields/campaignstep_id/valueProcess.js
@@ -0,0 +1,9 @@
+import("system.logging");
+import("system.result");
+import("system.neon");
+import("system.vars");
+
+if(vars.exists("$param.currentCampaignStepId_param") && vars.get("$param.currentCampaignStepId_param"))
+{
+    result.string(vars.get("$param.currentCampaignStepId_param"));
+}
\ No newline at end of file
diff --git a/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onInsert.js b/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onInsert.js
index e8edf991ced2e73426ce170fc3f6a06e00cb366c..8315686b00884f5729ac2a5ddbb30f5675d617b0 100644
--- a/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onInsert.js
+++ b/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onInsert.js
@@ -1,8 +1,11 @@
+import("system.logging");
 import("system.vars");
 import("system.db");
 import("system.util");
 import("Campaign_lib");
 
+logging.log("onInsert");
+
 var campaignId     = vars.getString("$field.CAMPAIGN_ID");
 var campaignStepId = vars.getString("$field.CAMPAIGNSTEP_ID");
 var participants   = JSON.parse(vars.getString("$param.campaignParticipants_param"));
diff --git a/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onUpdate.js b/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onUpdate.js
new file mode 100644
index 0000000000000000000000000000000000000000..0ac5d73051b0a7dde1556bff74ab18a21959d718
--- /dev/null
+++ b/entity/CampaignAddParticipants_entity/recordcontainers/jdito/onUpdate.js
@@ -0,0 +1,38 @@
+import("Campaign_lib");
+import("system.vars");
+import("system.db");
+import("system.logging");
+
+logging.log("CampaignAddParticipants_entity_onUpdate");
+
+
+var campaignId     = vars.getString("$field.CAMPAIGN_ID");
+var campaignStepId = vars.getString("$field.CAMPAIGNSTEP_ID");
+var participants   = JSON.parse(vars.getString("$param.campaignParticipants_param"));
+
+var colNamesCampaignParticipantLog = CampaignUtils.getParticipantLogInsertColumnNames();
+var colTypesCampaignParticipantLog = CampaignUtils.getParticipantLogInsertColumnTypes();
+let colsUpdate = [   "CAMPAIGNSTEP_ID",
+                    "USER_EDIT",
+                    "DATE_EDIT"
+                ];
+let colTypesUpdate = db.getColumnTypes("CAMPAIGNPARTICIPANT", colsUpdate);
+
+
+var dataArray = [];
+
+for (participant in participants)
+{
+    //var campaignParticipantId = 
+    //var valsCampaignParticipantLog = new Array(campaignId, campaignStepId, participants[participant], , vars.get("$sys.user"), vars.get("$sys.date"));
+    let updatedValues = [campaignStepId,
+                        vars.get("$sys.user"),
+                        vars.get("$sys.date")];
+    
+    let condition = "CAMPAIGNSTEP_ID = '" + campaignStepId + "' and CONTACT_ID = '" + participants[participant] + "'";
+    
+    dataArray.push(["CAMPAIGNPARTICIPANT", colsUpdate, colTypesUpdate, updatedValues, condition]);
+    //dataArray.push(["CAMPAIGNPARTICIPANTLOG", colNamesCampaignParticipantLog, colTypesCampaignParticipantLog, valsCampaignParticipantLog]);
+}
+logging.log("dataArray" + JSON.stringify(dataArray));
+db.updates(dataArray);
\ No newline at end of file
diff --git a/entity/CampaignParticipant_entity/CampaignParticipant_entity.aod b/entity/CampaignParticipant_entity/CampaignParticipant_entity.aod
index a049a87b4f9b9c76e146cc8f1e322a089a29dfc6..6b33d97ea86cb943d5674acd9fe2e201cc75be93 100644
--- a/entity/CampaignParticipant_entity/CampaignParticipant_entity.aod
+++ b/entity/CampaignParticipant_entity/CampaignParticipant_entity.aod
@@ -63,6 +63,7 @@
       <name>CAMPAIGN_ID</name>
       <title>Campaign</title>
       <consumer>CampaignsConsumer</consumer>
+      <state>EDITABLE</state>
       <valueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/campaign_id/valueProcess.js</valueProcess>
       <displayValueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/campaign_id/displayValueProcess.js</displayValueProcess>
       <onValueChange>%aditoprj%/entity/CampaignParticipant_entity/entityfields/campaign_id/onValueChange.js</onValueChange>
@@ -76,8 +77,14 @@
       <name>CAMPAIGNSTEP_ID</name>
       <title>Campaign Step</title>
       <consumer>CampaignSteps</consumer>
+      <state>EDITABLE</state>
       <valueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/campaignstep_id/valueProcess.js</valueProcess>
       <displayValueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/campaignstep_id/displayValueProcess.js</displayValueProcess>
+      <onValueChangeTypes>
+        <element>MASK</element>
+        <element>PROCESS</element>
+        <element>PROCESS_SETVALUE</element>
+      </onValueChangeTypes>
     </entityField>
     <entityConsumer>
       <name>CampaignsConsumer</name>
@@ -147,6 +154,18 @@
       <name>CONTACTCONTEXT</name>
       <valueProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/contactcontext/valueProcess.js</valueProcess>
     </entityField>
+    <entityActionGroup>
+      <name>FilterViewActionGroup</name>
+      <children>
+        <entityActionField>
+          <name>SetStepToParticipantSelection</name>
+          <fieldType>ACTION</fieldType>
+          <title>Set campaign step</title>
+          <onActionProcess>%aditoprj%/entity/CampaignParticipant_entity/entityfields/filterviewactiongroup/children/setsteptoparticipantselection/onActionProcess.js</onActionProcess>
+          <isSelectionAction v="true" />
+        </entityActionField>
+      </children>
+    </entityActionGroup>
   </entityFields>
   <recordContainers>
     <dbRecordContainer>
diff --git a/entity/CampaignParticipant_entity/entityfields/contact_id/displayValueProcess.js b/entity/CampaignParticipant_entity/entityfields/contact_id/displayValueProcess.js
index 85822946ab4fe0ba7730ca93fd6fca69250a5b33..e03fe3836f586e61cc4d702a08e723f86b937838 100644
--- a/entity/CampaignParticipant_entity/entityfields/contact_id/displayValueProcess.js
+++ b/entity/CampaignParticipant_entity/entityfields/contact_id/displayValueProcess.js
@@ -1,6 +1,9 @@
+import("system.logging");
 import("system.result");
 import("system.vars");
 import("Contact_lib");
 import("system.neon");
 
+logging.log("contactid displayvalue -> " + vars.getString("$field.CONTACT_ID"));
+logging.log("getFullTitleById -> " + ContactUtils.getFullTitleByContactId(vars.getString("$field.CONTACT_ID")));
 result.string(ContactUtils.getFullTitleByContactId(vars.getString("$field.CONTACT_ID")));
\ No newline at end of file
diff --git a/entity/CampaignParticipant_entity/entityfields/filterviewactiongroup/children/setsteptoparticipantselection/onActionProcess.js b/entity/CampaignParticipant_entity/entityfields/filterviewactiongroup/children/setsteptoparticipantselection/onActionProcess.js
new file mode 100644
index 0000000000000000000000000000000000000000..ce3dcbcf318c97211c4492907678277b046323d7
--- /dev/null
+++ b/entity/CampaignParticipant_entity/entityfields/filterviewactiongroup/children/setsteptoparticipantselection/onActionProcess.js
@@ -0,0 +1,12 @@
+import("system.logging");
+import("system.vars");
+import("system.neon");
+import("Campaign_lib");
+
+if(vars.exists("$sys.selection")) //selektierte IDs als Array
+{
+    logging.log(vars.get("$sys.selection"));
+    logging.log(JSON.parse(vars.get("$sys.selection")));
+    
+    CampaignUtils.openSetCampaignStepView(vars.get("$sys.selection"), vars.get("$param.CampaignId_param"), vars.get("$param.CampaignStepId_param"));
+}
\ No newline at end of file
diff --git a/entity/CampaignStep_entity/CampaignStep_entity.aod b/entity/CampaignStep_entity/CampaignStep_entity.aod
index 07b6defe0726909efdcf4bd72cc450143e06b019..5331e0ea56c1292838f470e7cfa9351f58a7ad87 100644
--- a/entity/CampaignStep_entity/CampaignStep_entity.aod
+++ b/entity/CampaignStep_entity/CampaignStep_entity.aod
@@ -177,6 +177,11 @@
       <state>READONLY</state>
       <valueProcess>%aditoprj%/entity/CampaignStep_entity/entityfields/campaignstatus/valueProcess.js</valueProcess>
     </entityField>
+    <entityField>
+      <name>DESCRIPTION</name>
+      <title>Description</title>
+      <contentType>LONG_TEXT</contentType>
+    </entityField>
   </entityFields>
   <recordContainers>
     <dbRecordContainer>
@@ -250,6 +255,10 @@
           <name>CAMPAIGNSTEPID.value</name>
           <recordfield>CAMPAIGNSTEP.CAMPAIGNSTEPID</recordfield>
         </dbRecordFieldMapping>
+        <dbRecordFieldMapping>
+          <name>DESCRIPTION.value</name>
+          <recordfield>CAMPAIGNSTEP.DESCRIPTION</recordfield>
+        </dbRecordFieldMapping>
       </recordFieldMappings>
     </dbRecordContainer>
   </recordContainers>
diff --git a/entity/Campaign_entity/Campaign_entity.aod b/entity/Campaign_entity/Campaign_entity.aod
index 76cf93a876dac52a2aaf89b43253878449c4adff..b8686f82dac4a89608bf61ee1ad1634631ef2fe3 100644
--- a/entity/Campaign_entity/Campaign_entity.aod
+++ b/entity/Campaign_entity/Campaign_entity.aod
@@ -45,7 +45,8 @@
     </entityField>
     <entityField>
       <name>DESCRIPTION</name>
-      <title>Beschreibung</title>
+      <title>Description</title>
+      <contentType>LONG_TEXT</contentType>
     </entityField>
     <entityField>
       <name>USER_NEW</name>
diff --git a/neonView/CampaignParticipantFilter_view/CampaignParticipantFilter_view.aod b/neonView/CampaignParticipantFilter_view/CampaignParticipantFilter_view.aod
index 7f62d6f835fcef1822059cd976794cba1537c1ec..7245f8689fc2851857ee32f20e54206b58e868c1 100644
--- a/neonView/CampaignParticipantFilter_view/CampaignParticipantFilter_view.aod
+++ b/neonView/CampaignParticipantFilter_view/CampaignParticipantFilter_view.aod
@@ -12,6 +12,7 @@
   <children>
     <tableViewTemplate>
       <name>ParticipantsTable</name>
+      <favoriteActionGroup2>FilterViewActionGroup</favoriteActionGroup2>
       <entityField>#ENTITY</entityField>
       <columns>
         <neonTableColumn>
diff --git a/neonView/CampaignStepEdit_view/CampaignStepEdit_view.aod b/neonView/CampaignStepEdit_view/CampaignStepEdit_view.aod
index 5f599fdfeff805b389612719ca62418fb84e6461..a412cf603936669ec4179dfb159610df383ab87a 100644
--- a/neonView/CampaignStepEdit_view/CampaignStepEdit_view.aod
+++ b/neonView/CampaignStepEdit_view/CampaignStepEdit_view.aod
@@ -13,7 +13,7 @@
       <name>StepGeneric</name>
       <editMode v="true" />
       <entityField>#ENTITY</entityField>
-      <title>Neuer Kampagnenschritt</title>
+      <title>New campaign step</title>
       <fields>
         <entityFieldLink>
           <name>db2e792a-b224-4c93-99ef-96c54c5c703f</name>
@@ -39,6 +39,10 @@
           <name>2447348f-4ed9-4b8c-8b0e-94e663fd781d</name>
           <entityField>MAXPARTICIPANTS</entityField>
         </entityFieldLink>
+        <entityFieldLink>
+          <name>981cf207-6e9b-428e-bd81-0d76b4b2f180</name>
+          <entityField>DESCRIPTION</entityField>
+        </entityFieldLink>
       </fields>
     </genericViewTemplate>
   </children>
diff --git a/neonView/CampaignStepPreview_view/CampaignStepPreview_view.aod b/neonView/CampaignStepPreview_view/CampaignStepPreview_view.aod
index a1e37221a7961f439fe69a21b6083c3094c5706e..cbf63b52c35d2be87472f64fd3c3eb6c48593caa 100644
--- a/neonView/CampaignStepPreview_view/CampaignStepPreview_view.aod
+++ b/neonView/CampaignStepPreview_view/CampaignStepPreview_view.aod
@@ -12,6 +12,7 @@
       <name>CampaignStepCard</name>
       <titleField>NAME</titleField>
       <subtitleField>STATE</subtitleField>
+      <descriptionField>DESCRIPTION</descriptionField>
       <entityField>#ENTITY</entityField>
     </cardViewTemplate>
     <genericViewTemplate>
diff --git a/others/db_changes/Data_alias/basic/2019.2/changelog.xml b/others/db_changes/Data_alias/basic/2019.2/changelog.xml
index 6009d8e602c66c83705a33922abe05eedc2179cc..6eb13f1b9fa7023fedf71ebfef1434b249856ce3 100644
--- a/others/db_changes/Data_alias/basic/2019.2/changelog.xml
+++ b/others/db_changes/Data_alias/basic/2019.2/changelog.xml
@@ -136,3 +136,4 @@
     <include relativeToChangelogFile="true" file="CampaignManagement/create_campaignParticipantLog.xml"/>
     <include relativeToChangelogFile="true" file="CampaignManagement/create_campaignState.xml"/>
     <include relativeToChangelogFile="true" file="CampaignManagement/create_campaignStepState.xml"/>
+</databaseChangeLog>
\ No newline at end of file
diff --git a/others/db_changes/data_alias/basic/2019.2/CampaignManagement/create_campaignStep.xml b/others/db_changes/data_alias/basic/2019.2/CampaignManagement/create_campaignStep.xml
index 408160e05bc55cfb00f711b33aecd96222234cff..377cb13f6c1cf81663d3d3da7ebbd6a9ffb99b24 100644
--- a/others/db_changes/data_alias/basic/2019.2/CampaignManagement/create_campaignStep.xml
+++ b/others/db_changes/data_alias/basic/2019.2/CampaignManagement/create_campaignStep.xml
@@ -14,6 +14,7 @@
             <column name="NAME" type="NVARCHAR(50)">
                 <constraints nullable="false"/>
             </column>
+            <column name="DESCRIPTION" type="NVARCHAR(500)" />
             <column name="DATE_START" type="DATE">
                 <constraints nullable="false"/>
             </column>
diff --git a/preferences/_____PREFERENCES_PROJECT/_____PREFERENCES_PROJECT.aod b/preferences/_____PREFERENCES_PROJECT/_____PREFERENCES_PROJECT.aod
index d95444c38df13ee28b6b3f22ad2bee4a72b13d98..918e08b8a4338f1a689095c669c22244125cab62 100644
--- a/preferences/_____PREFERENCES_PROJECT/_____PREFERENCES_PROJECT.aod
+++ b/preferences/_____PREFERENCES_PROJECT/_____PREFERENCES_PROJECT.aod
@@ -2,7 +2,7 @@
 <preferences xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="3.1.0" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/preferences/3.1.0">
   <name>_____PREFERENCES_PROJECT</name>
   <majorModelMode>DISTRIBUTED</majorModelMode>
-  <projectName>xRM-Basic - neon - 2019</projectName>
+  <projectName>xRM-Basic_current</projectName>
   <jditoMaxContentSize v="57671680" />
   <calendarCategoriesEvent>
     <entry>
diff --git a/process/Campaign_lib/Campaign_lib.aod b/process/Campaign_lib/Campaign_lib.aod
index e32f63d60bb1890dffcfb25a7c250d7cb280b7ac..6cff8443c7403caa3bbdc859ee356e248dc54018 100644
--- a/process/Campaign_lib/Campaign_lib.aod
+++ b/process/Campaign_lib/Campaign_lib.aod
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<process xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.2.0" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/process/1.2.0">
+<process xmlns="http://www.adito.de/2018/ao/Model" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" VERSION="1.2.1" xsi:schemaLocation="http://www.adito.de/2018/ao/Model adito://models/xsd/process/1.2.1">
   <name>Campaign_lib</name>
   <majorModelMode>DISTRIBUTED</majorModelMode>
   <process>%aditoprj%/process/Campaign_lib/process.js</process>
diff --git a/process/Campaign_lib/process.js b/process/Campaign_lib/process.js
index c484213432330a580c9ab92b715671ad41a680d6..342178d9321c7b7ec0407863f9f77119eb069f63 100644
--- a/process/Campaign_lib/process.js
+++ b/process/Campaign_lib/process.js
@@ -1,3 +1,4 @@
+import("system.logging");
 import("system.vars");
 import("system.db");
 import("system.neon");
@@ -45,6 +46,18 @@ CampaignUtils.getCampaignNameById = function(pCampaignId)
     return _CampaignUtils._loadSingleValueFromDb(selectQuery, conditionField, pCampaignId, defaultValue);
 }
 
+/**
+ * todo
+ */
+CampaignUtils.getCampaignStepNameById = function(pCampaignStepId)
+{
+    let selectQuery = "select CAMPAIGNSTEP.NAME from CAMPAIGNSTEP";
+    let conditionField = "CAMPAIGNSTEP.CAMPAIGNSTEPID";
+    let defaultValue = "";
+    
+    return _CampaignUtils._loadSingleValueFromDb(selectQuery, conditionField, pCampaignStepId, defaultValue);
+}
+
 /**
  * todo
  */
@@ -101,6 +114,22 @@ CampaignUtils.getParticipantLogInsertColumnTypes = function()
     return db.getColumnTypes("CAMPAIGNPARTICIPANTLOG", CampaignUtils.getParticipantLogInsertColumnNames());
 }
 
+/**
+ * todo
+ */
+CampaignUtils.openSetCampaignStepView = function(pParticipantIds, pCampaignId, pCampaignStepId)
+{
+    var params = {};
+    
+    params["campaignParticipants_param"] = pParticipantIds;
+    params["currentCampaignId_param"] = pCampaignId;
+    params["currentCampaignStepId_param"] = pCampaignStepId;
+    
+    
+
+    neon.openContext("CampaignAddParticipants", "CampaignAddParticipantsEdit_view", JSON.parse(pParticipantIds), neon.OPERATINGSTATE_EDIT, params);
+}
+
 /**
  * Methods for campaignmanagement.
  * Do not create an instance of this!
@@ -127,7 +156,7 @@ _CampaignUtils._openAddParticipantContext = function(pContext, pRowIds, pEntityP
     {
         params[pEntityParam] = pRowIds;
     }
-    
+    logging.log("pRowsIds" + pRowIds);
     neon.openContext(pContext, pView, null, neon.OPERATINGSTATE_NEW, params);
 }