how can i display and hide the case management based on two conditions(Two column) 

 

Like 0

Like

3 comments

Hello,

 

There is a possibility to select several conditions in the selection in the 8.0.8 version:

But this should be also available in the previous versions. You need to update your app to 8.0.8 and then you will be definitely able to select conditions needed.

 

But if we are talking about two separate columns then indeed there is no such possibility in the current application versions. I will register a suggestion for our R&D team to implement one. Thank you for helping us in making the app better!

Oleg Drobina,

Thank you , but i need to choose two conditons based on two colums , for example , type And category

Safa Ghandri,

 

if we are talking about two separate columns then indeed there is no such possibility in the current application versions. I will register a suggestion for our R&D team to implement one. Thank you for helping us in making the app better!

Show all comments

Hello team,

 

Can somebody help me or give me some hint what to do regarding my problem. 

So I want to remove one Activity from this menu, see my screenshot: 

I want to remove this "übergeordnete Aktivität" from this meni. 

Can you please help me out with this problem, thanks in advance!

 

Kind regards,

Marijana

Like 0

Like

1 comments

Hello Marijana, 

 

In order to delete the object from this list, there is a need to delete corresponding records from the EntityConnection system table.

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 let me mention, that if you delete the records from the EntityConnection table - the corresponding fields will be deleted not only from this list but also from the "Connected to" detail of the email activity page:

 

Best regards,

Anastasiia

Show all comments

We have our own Notes object however we have individuals entering private notes in the Feed section. 

 

Can we remove access to Feed for all users?

Like 0

Like

3 comments

Hello George,



You can set up access rights for each channel in the feed section:

 

Best regards,

Bogdan

Hi Bogdan,

 

I updated access rights for only System Administrators to Read/Edit/Delete but Feed and all of its contents are still available to each of our users.

 

Feed is still viewable and editable regardless of the role our users are in. Are there any additional settings to restrict this access?

 

 

You can completely remove the Feed tab from a page by adding the following into the methods of the page: 

onRender: function() {
    this.callParent(arguments);
 
    var tabs = this.get("TabsCollection");
    if (tabs.contains("ESNTab")) {
        tabs.removeByKey("ESNTab");
    }
}

Ryan

Show all comments