I have tried to use a similar approach to the one mentioned in the forum discussion. Here is an example of how to filter recipients to contain 'mycompany' in the email address in the action dashboard of the contacts section.
Hello. Thank you. The solution works, but it is not ideal. It is necessary to check the Account domain, or there may be employees who have a Gmail email. I am looking for another solution.
The example I provided serves as a foundation for adding email address filtering for the action dashboard. You can use this example as a base and modify the filtering logic according to your preferences.
Only overriding onEntityInitialized won`t be enough because there is also a server logic that sets the Number (ContractEntityEventListener schema). If you change only the onEntityInitialized, the system will still set a number if the contract was created using BP or integration.
If you want to turn it off you will need to also override ContractEntityEventListener:
It's not related to any customization described either by Vladimir and Dmytro (I've tested both codes and they don't result in this ""Number" field is required" message). You have some another customization that makes the "Number" field mandatory (custom code, business rule, column settings on the object side or on the page side), you need to find and disable it.
In the documentation of the web service, in addition to Token-based authentication, there is a description of the authentication method based on OAuth 1.0a
Here is a successful request to Postman
When I tried to send the same request from Creatio (I copied the parameters from Postman), I get an error
Is it possible to use a Microsoft Office word macro in the template of a MS-word printable?
The matter is: A word template is to be filled with data from Creatio. In the exported document, additionally, at another position in the document, a function is to be provided via a word macro.
The word macro can be added to the template. But when the report is exported, the Word macro is missing.
We have discussed your case with the responsible R&D team. Unfortunately, as for now, there is no possibility to implement your business task in our application.
We want to assure you that we have created a request for our development team to implement this functionality in future versions of our application. We understand the importance of providing our clients with the best possible experience and will work hard to implement the changes you have suggested.
Thank you for this suggestion, this helps to make our product better!
we have the following case. We have some contacts who hold an honorary position (from - to). If the contact still holds the honorary position at the next year, the contact has an anniversary.
I was thinking of using the existing noteworthy detail for this. However, then only the owner of the contact record will receive the notification. All other employees should be notified about the anniversary as well
Can the Noteworthy detail be customized so that everyone and not just the owner receives a notification?
Or is it better to create a custom system notification for this case?
I am afraid there is no option to change the logic of this detail.
However, you can try to build a Business process, which will read the data from this detail and create a notification. Then you will be able to add the group of the employees to receive the notifications.
I'm looking for a solution where I can fetch the list of records from a section if the value of any three fields that i enter in the edit page form of a new record match with the current entry field values.
For example : In my current record I enter the values as follows for the customer CustomerA:
Field1 = 1;
Field2 = 2;
Field3 = 3;
Field4 = 4;
Field5 = 5;
Existing entries :
entry 1 : CustomerB
Field1 = 1;
Field2 = 2;
Field3 = 3;
Field4 = 6;
Field5 = 9;
entry 2 : CustomerC
Field1 = 3;
Field2 = 2;
Field3 = 3;
Field4 = 4;
Field5 = 9;
entry 3 : CustomerD
Field1 = 10;
Field2 = 12;
Field3 = 33;
Field4 = 62;
Field5 = 91;
then, in this case system should be able to fetch the entry with customer names-CustomerB and CustomerC in a list and display in a dialogBox .
in a test environment i set up successfully a synchronisation between creatio and google in the activitiy section. When I create an appointment in Creatio it is transferred directly to google calendar. Thats fine. But if i delete the appointment in creatio it dosen't delete the appointment in my google account. Do you know if this is possible to set up?
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: