diff --git a/entity/ObjectRelation_entity/ObjectRelation_entity.aod b/entity/ObjectRelation_entity/ObjectRelation_entity.aod
index 2e0f9056bd3f7ddfe2aedaa8b2a9da190f73aa08..8c87e6e7476b74e2dfcf36311e572d61d97db54d 100644
--- a/entity/ObjectRelation_entity/ObjectRelation_entity.aod
+++ b/entity/ObjectRelation_entity/ObjectRelation_entity.aod
@@ -109,7 +109,6 @@
       <fieldType>DEPENDENCY_IN</fieldType>
       <targetContextField>OtherObjectType</targetContextField>
       <targetIdField>OtherObjectRowid</targetIdField>
-      <recordContainer>db</recordContainer>
       <dependencies>
         <entityDependency>
           <name>30a7c954-3127-4ceb-9838-a0b7b55d0c8c</name>
@@ -117,6 +116,12 @@
           <fieldName>ObjectRelations</fieldName>
           <isConsumer v="false" />
         </entityDependency>
+        <entityDependency>
+          <name>3f268dec-4672-4de0-98b2-7616f344248f</name>
+          <entityName>Organisation_entity</entityName>
+          <fieldName>ObjectRelations</fieldName>
+          <isConsumer v="false" />
+        </entityDependency>
       </dependencies>
       <children>
         <entityParameter>
diff --git a/entity/ObjectRelation_entity/entityfields/relation_type/displayValueProcess.js b/entity/ObjectRelation_entity/entityfields/relation_type/displayValueProcess.js
index b741df48526b0549a77bbc9c019367fb9065244b..5e306501b826e7eab0eec1369f081f02bdde910d 100644
--- a/entity/ObjectRelation_entity/entityfields/relation_type/displayValueProcess.js
+++ b/entity/ObjectRelation_entity/entityfields/relation_type/displayValueProcess.js
@@ -1,4 +1,3 @@
-import("system.logging");
 import("system.db");
 import("system.result");
 import("system.vars");
@@ -10,18 +9,20 @@ if (vars.exists("$field.OtherObjectType") && vars.get("$field.OtherObjectType")
 {
     var attributes = KeywordUtils.getAttributeRelationsByKey(vars.get("$field.RELATION_TYPE"), $KeywordRegistry.objectRelationType());
     var currentObjectNum = vars.get("$field.CurrentObjectNumber");
-   logging.log(currentObjectNum.toSource())
     var name = "";
+    
     switch (currentObjectNum)
     {
         case "1":
-            name = attributes.Object2Title;
+            // if second title doesn't exist, it is same like the first one.
+            if (attributes.Object2Title == null) 
+                name = attributes.Object1Title;
+            else
+                name = attributes.Object2Title;
             break;
         case "2":
             name = attributes.Object1Title;
             break;
     }
-    logging.log(attributes.toSource())
-    logging.log(name.toSource())
     result.string(name);
 }
\ No newline at end of file
diff --git a/entity/Organisation_entity/Organisation_entity.aod b/entity/Organisation_entity/Organisation_entity.aod
index c72fa0ec5c89996212beb0d30924792b02493c9d..9d6c0a092a8fc8016cca01be087ebb30ce1a62d1 100644
--- a/entity/Organisation_entity/Organisation_entity.aod
+++ b/entity/Organisation_entity/Organisation_entity.aod
@@ -425,7 +425,19 @@
       <fieldType>DEPENDENCY_OUT</fieldType>
       <dependency>
         <name>dependency</name>
+        <entityName>ObjectRelation_entity</entityName>
+        <fieldName>ObjectRelations</fieldName>
       </dependency>
+      <children>
+        <entityParameter>
+          <name>ObjectRowid_param</name>
+          <code>%aditoprj%/entity/Organisation_entity/entityfields/objectrelations/children/objectrowid_param/code.js</code>
+        </entityParameter>
+        <entityParameter>
+          <name>ObjectType_param</name>
+          <code>%aditoprj%/entity/Organisation_entity/entityfields/objectrelations/children/objecttype_param/code.js</code>
+        </entityParameter>
+      </children>
     </entityConsumer>
     <entityConsumer>
       <name>KeywordContactStates</name>
@@ -527,6 +539,22 @@
         <name>dependency</name>
       </dependency>
     </entityConsumer>
+    <entityConsumer>
+      <name>Salesprojects</name>
+      <title>Salesprojects</title>
+      <fieldType>DEPENDENCY_OUT</fieldType>
+      <dependency>
+        <name>dependency</name>
+        <entityName>Salesproject_entity</entityName>
+        <fieldName>Salesprojects</fieldName>
+      </dependency>
+      <children>
+        <entityParameter>
+          <name>ContactId_param</name>
+          <code>%aditoprj%/entity/Organisation_entity/entityfields/salesprojects/children/contactid_param/code.js</code>
+        </entityParameter>
+      </children>
+    </entityConsumer>
   </entityFields>
   <recordContainers>
     <dbRecordContainer>
diff --git a/entity/Organisation_entity/entityfields/objectrelations/children/objectrowid_param/code.js b/entity/Organisation_entity/entityfields/objectrelations/children/objectrowid_param/code.js
new file mode 100644
index 0000000000000000000000000000000000000000..bcfda44fe71eac93b3f8c11cc0c85a496f2cd51c
--- /dev/null
+++ b/entity/Organisation_entity/entityfields/objectrelations/children/objectrowid_param/code.js
@@ -0,0 +1,4 @@
+import("system.vars");
+import("system.result");
+
+result.string(vars.get("$field.ORGANISATIONID"));
\ No newline at end of file
diff --git a/entity/Organisation_entity/entityfields/objectrelations/children/objecttype_param/code.js b/entity/Organisation_entity/entityfields/objectrelations/children/objecttype_param/code.js
new file mode 100644
index 0000000000000000000000000000000000000000..008915f61deac19ccdd40fff81701de63eb3b6a2
--- /dev/null
+++ b/entity/Organisation_entity/entityfields/objectrelations/children/objecttype_param/code.js
@@ -0,0 +1,4 @@
+import("system.result");
+import("Context_lib");
+
+result.string(ContextUtils.getCurrentContextId());
\ No newline at end of file
diff --git a/neonView/OrganisationMain_view/OrganisationMain_view.aod b/neonView/OrganisationMain_view/OrganisationMain_view.aod
index ef3e97b5d040718be56622ba93179c3b94eb47ba..8983facca327c13b601989999d56186c88738daa 100644
--- a/neonView/OrganisationMain_view/OrganisationMain_view.aod
+++ b/neonView/OrganisationMain_view/OrganisationMain_view.aod
@@ -40,16 +40,16 @@
       <entityField>Contracts</entityField>
       <view>ContractFilter_view</view>
     </neonViewReference>
+    <neonViewReference>
+      <name>ee7395b9-b787-4662-9021-f6e2d486bd16</name>
+      <entityField>ObjectRelations</entityField>
+      <view>ObjectRelationFilter_view</view>
+    </neonViewReference>
     <neonViewReference>
       <name>39c98ccb-7f77-4df0-818f-1f302f69fec4</name>
       <entityField>Attributes</entityField>
       <view>AttributeRelationFilter_view</view>
     </neonViewReference>
-    <neonViewReference>
-      <name>ee7395b9-b787-4662-9021-f6e2d486bd16</name>
-      <entityField>ObjectRelations</entityField>
-      <view>AnyObjectRelationFilter_view</view>
-    </neonViewReference>
     <neonViewReference>
       <name>dc1aa0ca-d0bd-45fd-84dc-55cfcf3ca430</name>
       <entityField>Salesprojects</entityField>
diff --git a/others/db_changes/data_alias/basic/2019.2/add_ObjectRelationKeyword.xml b/others/db_changes/data_alias/basic/2019.2/add_ObjectRelationKeyword.xml
index 937b402f18d2727eb8c8117b0395d575e11452cc..6f4fab3fe32d05bfcb2ab7cc62347ba8d4f294b3 100644
--- a/others/db_changes/data_alias/basic/2019.2/add_ObjectRelationKeyword.xml
+++ b/others/db_changes/data_alias/basic/2019.2/add_ObjectRelationKeyword.xml
@@ -237,7 +237,7 @@
         
         <insert tableName="AB_KEYWORD_ENTRY">
             <column name="AB_KEYWORD_ENTRYID" value="ba666b30-27b0-46ba-8ea7-442518cb862f"/>
-            <column name="KEYID" value="600cd496-c7c1-4be0-a339-76f057711025"/>
+            <column name="KEYID" value="a19802ad-f5aa-47dc-abb3-02791a4aa7ac"/>
             <column name="TITLE" value="competitor"/>
             <column name="CONTAINER" value="ObjectRelationType"/>
             <column name="SORTING" valueNumeric="5"/>