I have modified the Activity object in order to display a custom Object (Order) and added an Activity column too.
Now, when clicking on the RightSideMenu I have the same object (Activity = Attività, and Ordini = Orders) repeated twice. Does anybody know which module is in charge of displaying the options within this menu? Or do you have any idea of what the "cleanest" solution might be?
Basically, there is a table in the database called EntityConnection. You can delete all the records from this table that refer to the objects which you do not need (for example, contact, requests etc).
You can do the following:
delete from EntityConnection where SysEntitySchemaUid in (select Uid from SysSchema where Name = '')
where '' is the name of the object, for example, Contact.
But the thing is if you delete the records from the EntityConnection table - the next fields on the activity page will be deleted automatically as well:
Basically, there is a table in the database called EntityConnection. You can delete all the records from this table that refer to the objects which you do not need (for example, contact, requests etc).
You can do the following:
delete from EntityConnection where SysEntitySchemaUid in (select Uid from SysSchema where Name = '')
where '' is the name of the object, for example, Contact.
But the thing is if you delete the records from the EntityConnection table - the next fields on the activity page will be deleted automatically as well: