Hi there,

we've added a custom web service to our cloud environment and we trigger it from our external API. Several requests in a row are executed correctly, and then an HTTP request timeout occurs for all further requests (including auth requests). 

The interesting note is that if we trigger the same request from Postman, it works ok and after it, several more requests can be sent from our API to Creatio. 

 

What can be the cause of such behavior? Is there any mechanism that blocks requests from external APIs to Creatio and if so, how can it be avoided?

Like 0

Like

3 comments

In our further investigation of the problem, it looks like Creatio has some anti-spam mechanism, and it blocks our API for 15 minutes when a certain amount of requests was sent to Creatio during a short period of time. We still do not know how to avoid it so any help would be appreciated

Hello!

 

We kindly ask you to create a support request for us because for providing the answer to this question we will need to ask you for additional information and examples from your side. 

 

Regards,

Maria

Mykhailo Bormashenko,

Do you got any resolution or cause ?

 

Show all comments

 

Good afternoon, there is the possibility of assigning a task to a user list based on the workload of the users, currently I see that it only allows the assignment by a role or by a specific user

Like 0

Like

1 comments

Hello,

Can you please elaborate the use case with the parameters of workload?

Show all comments

Hi Everyone!

I'm trying to create new custome channel for chat, but I don't understand 2 steps as shown in the below image that how to create and where to create. Could you explain me?



Regards Abbos Haydarov

Like 0

Like

1 comments

Hello, 

First SQL query will create a table that stores the custom channel data.

Then we need to register our custom channel in the database by adding a record to the Channel table. 

Create the queries and bind it in Configuration SQL script. 

Show all comments

In Web instance i want every user to see it's own list of activities but not the other users's . I am currently using classic UI , how can i apply this default filter ?

Like 1

Like

3 comments

Hello,

 

You can use the default quick filter by owner available in Activities section: https://academy.creatio.com/docs/user/platform_basics/business_data/fil…

 

Best regards,

Yuliya

Yuliya Gritsenko,

hello , 

I want it to be applied for all users by default and not editable .

Thank you

developer,

 

 

Hello,

 

Your business task can be only achieved with the help of separate development process. 

You can use 'entity schema query' filters in particular. Here is the guide on this topic:

 

https://academy.creatio.com/docs/developer/front_end_development/data_o…

 

You can also use this community post with the example of such logic:

 

https://community.creatio.com/questions/default-filter-section

 

Best regards,

Yuliya

Show all comments

Dear Creatio-Community,

I have set the record deactivation functionality for the Contacts object and set some contacts to "inactive". 

 

Now I have the following problem:

There is an inactive contact in my Creatio system that has the same email address assigned to it as an active contact. This is correct as far as it goes.

However, the Creatio system now automatically links an incoming e-mail (e-mail account is synchronized with Creatio) with the inactive contact. This is not correct.

 

Is there any way I can prevent this?



Regards

Like 1

Like

1 comments

Dear Florian,

 

In this case, you can try to desynchronize/unlink this e-mail from an inactive user, as the email linking logic will choose the user with whom this email address is synchronized. Record deactivation's main function is to filter out certain records, so they do not show in quick filter for example, for in lookup dropdown menu. Also, you can try to delete the inactive user altogether. 

 

Also, we will register an idea to our developer's team to expand the functionality of this function. Thank you for making Creatio better!

 

You can see more information regarding record deactivation function on Creatio Academy: https://academy.creatio.com/docs/developer/development_tools/creatio_id…;

 

Have a nice day.

Show all comments

Hi,

A specific Organizational Role has 'Reading' access rights in the Accounts, but can have 'Editing' access rights in the Communication Options Detail.

However whenever I update a record in 'Communication Options' i revieve this pop-up

1- I have given the correct access rights to object 'Communication Options' for the specific Organizational Role

2- Also modified 'Object to inherit access rights from'

What am I missing here ?

Sasori

Like 0

Like

3 comments

Hello Sasori,

 

According to your description, the issue is that when modifying data in the "Communication Options Detail" object, the system attempts to update related data in the "Accounts" object, and the user doesn't have the necessary permissions for this action.

 

Bogdan,

Thats correct.The mentioned Role has only 'Reading' rights in the Accounts.

However we have applied columns permission in the Accounts fields (like Phone,Alternate Phone) that can be affected by the Update of the 'Communication Options Detail" object but still not working.

Sasori

Sasori Oshigaki,

 

Please contact our support team on this matter - support@creatio.com

Show all comments

Hi Community,

I want to place three new fields in the Account panel, of the Contact section.

I have already read the article https://academy.creatio.com/docs/developer/interface_elements/record_pa…

but this article explains how to add a new Connected Account Profile, and not how to extend the existing one.

Any idea how I can achieve this ?

Sasor

Like 0

Like

3 comments
Best reply

Hi Sasor,

 

This is done in the same way with the only difference that:

 

1) Existing AccountProfileSchema should be replaced

2) In the diff array of the replaced AccountProfileSchema you need to add 3 new fields.

 

I've also previously showed how to add new columns to the same profile schema, but in the OpportunityPage (here). Same approach here should be used to add new columns.

Hi Sasor,

 

This is done in the same way with the only difference that:

 

1) Existing AccountProfileSchema should be replaced

2) In the diff array of the replaced AccountProfileSchema you need to add 3 new fields.

 

I've also previously showed how to add new columns to the same profile schema, but in the OpportunityPage (here). Same approach here should be used to add new columns.

Hi oleg,

Thank you for the great answer.

Just to double check , by ' Existing AccountProfileSchema should be replaced' you mean:

Thank you again

Sasor

Sasori Oshigaki,

 

Yes, replacing view model should be created.

Show all comments
Question

Hi all, 

 

Is there a way to force open the toggle column when a user enters the freedom ui page? 



Thanks

Harry

Like 2

Like

1 comments

Hello,

I have a use case where I need to make every field in every section of a mobile application read-only for every user in freedom UI. How can we accomplish it? Can someone help?

 

Thanks in advance!

 

Regards,

Yasaswini

Like 0

Like

4 comments
Best reply

First of all, you need to add a module to add the customizations to. You can see how to do that here: https://customerfx.com/article/creating-modules-for-the-creatio-mobile-…

Then, you can add the following to the module, in this example I've made a module for the account edit page and this will make the Type field read only.

Terrasoft.sdk.RecordPage.configureColumn("Account", "primaryColumnSet", "Type", {
    readOnly: true
});

Ryan

First of all, you need to add a module to add the customizations to. You can see how to do that here: https://customerfx.com/article/creating-modules-for-the-creatio-mobile-…

Then, you can add the following to the module, in this example I've made a module for the account edit page and this will make the Type field read only.

Terrasoft.sdk.RecordPage.configureColumn("Account", "primaryColumnSet", "Type", {
    readOnly: true
});

Ryan

Thank you Ryan Farley,

Also, have another doubt. Can we disable the addition of new records for sections and details in the mobile application? If so how can we achieve it?

Ryan Farley,

I have tried the implementation but it's still editable in the mobile application. I followed the steps in the Manifest module in the Models section under the PageExtensions I have added the module I have created as shown in the screenshots below

 

Thank you,

Often after adding code in modules for the mobile client you have to open and save the mobile wizard before the clients will get the change (it sets something to notify the mobile clients that there are changes to retrieve)

Show all comments

Hello,

I have a use case where I need to make every field in every section of a mobile application read-only for every user in freedom UI. How can we accomplish it?

 

Thanks in advance!

 

Regards,

Yasaswini

Like 0

Like

2 comments

Hello,

 

Column settings in the section wizard are not transferred to the mobile application, same as business rules. You can only make a field read-only via development.

A detailed description can be found at the Academy, property "ReadOnly":

https://academy.creatio.com/docs/developer/mobile_development/customiza…



It is not yet possible to do this using oob tools. 

The developers have a task to simplify this process for users, we have fixed your case to the task in order to raise its priority.

First of all, you need to add a module to add the customizations to. You can see how to do that here: https://customerfx.com/article/creating-modules-for-the-creatio-mobile-…

Then, you can add the following to the module, in this example I've made a module for the account edit page and this will make the Type field read only.

Terrasoft.sdk.RecordPage.configureColumn("Account", "primaryColumnSet", "Type", {
    readOnly: true
});

Ryan

Show all comments