We have a multitude of old instances of same business process with status Error. In the Process Log, I tried to select them all and then press ACTIONS(175930) → Cancel execution, but it just didn't work. I gave them some time, but the next day they were all there. Canceling them by 200-400 works, with some delays. Canceling by a couple of thousands doesn't work - a few hundreds become canceled, others remain with the status "Error". It would take too much time to cancel them in such small portions. Is there a quicker way?
Thank you, I tried this way. I changed the Allowed time for process instances in the "Error" state (days) setting from 0 to 1. The system started lagging, it canceled the processes with an average speed of 500 processes per hour. Users could not enter the system because of lags, and I too, only from time to time I could enter. It could take 2 weeks to wait until all the processes close, so I asked the Support to solve it. At last, as I see it, they plainly cleaned the Error instances from the Log and the slowness stopped. That's our experience.
I conclude that in our case, this method works for a low number of processes in the Error state.
Unfortunately, there are no OOB tools to create a new section like this.
It can be done only be means of advanced development and we do not have any examples of such sections created.
We will register an idea for our R&D team to consider the possibility of adding the functionality which would allow to create sections like this with system tools in future.
we have two companies and we would like to split the data. one solution might be to use the Creatio homepage which also allows now to create statistics widgets
I want to do Creatio Analyst (Basic ) Certification. For that, I need guidance and Material like how to prepare for that and what I need to follow in order to crack the certification Exam.
I downloaded the business card scanner from the marketplace. The mobile app allows me to scan the business cards, but it will now allow me to save the lead. Any suggestions?
It populates the fields correctly. I am hoping there is an easy fix to this.
You can add new fields to the Scan Results page only by development. An alternative way is to create the required fields on the page level (not on the database one).
I've this situation where I need to add a image to a specific section row column, based on the value of other column. Inside my ActivitySectionV2, I added a random dummy column to display the images. These images should appear if the Activity is expired or not. For example, if my activity due date is less than today's date the "Expired Image" should be visible.
I want to do Creatio Analyst (Basic ) Certification. For that, I need guidance like how to prepare for that and what I need to follow in order to crack the certification Exam.
for basic certification you take it from the site directly and prepare for the module that you want to take the certification in it, understand all module features, functionalities, sections and have an overall view of the main sections that will be exist in all creatio modules .
I am having a warning when i'am editing my template, the warning is
"Email template contains tags "u" not supported in HTML5. This can lead to incorrect display of email template in some email clients. Please change the template using css styles"
This warning should not influence anything, you can still send these bulk emails but there can be some issues with displaying them in different mail providers as the tag "u" (underline) which is used in your bulk email is deprecated.
Our recommendation is to use the CSS "text-decoration-line:underline" style instead of in places where underline is needed.
In case you didn't add any HTML blocks manually, a block with this tag could be generated automatically, and if you didn't add unsubscribe link and clicked on add it after trying to save the template and receiving the notification message about it.
In that case, simply delete the automatically added block with unsubscribe link and replace it with the one available in the block library.
This warning should not influence anything, you can still send these bulk emails but there can be some issues with displaying them in different mail providers as the tag "u" (underline) which is used in your bulk email is deprecated.
Our recommendation is to use the CSS "text-decoration-line:underline" style instead of in places where underline is needed.
In case you didn't add any HTML blocks manually, a block with this tag could be generated automatically, and if you didn't add unsubscribe link and clicked on add it after trying to save the template and receiving the notification message about it.
In that case, simply delete the automatically added block with unsubscribe link and replace it with the one available in the block library.
The use case is to remove OOTB items/buttons from the action menu in Section edit page depending on the user roles such as, (Follow the Feed, Setup Access rights etc..)
There are example codes to add a new item to the action menu, as shown below,
How to remove an existing item from the action menu. Is there a way to achieve it?
I am able to hide the "Setup Access Rights" based on roles by referring the document.
Similar to that when I tried to hide the "Follow the feed" based on roles. In the base I could find only the "Enable" property for the button. So I have overridden that method as below and it got disabled based on roles,
getChangeUserSubscriptionIsEnabled: function() {
return this.get("CanManageAccessRight");
}
But the requirement is to hide the button based on Roles. I also tried to override this method "getEsnTabVisible" but I am still able too see the Follow the feed button in UI.