Время создания
Filters

Hello community,
Is there a system setting that allows you to set the default culture for all users?
In other words, imagine the following scenario:
1- Users have been created with the culture English (United States)
2- Portuguese was installed and this language was set as default.
3- I want all users to have this new language.

Without having to go to each user and change the culture, is there a feature that allows me to change the culture of all users at once?

Thank you!

Andreia

Like 0

Like

2 comments

Greeting,

Currently, there is no option to modify the "Primary culture" system setting, which is responsible for the default culture in th...MoreLess

Show all comments (1)

Hi Team,

I have added Multiselect Component for a client 'A' that is stored in Package 'UsrCrtLeadOppMgmtApp_3hvyr8v' instead of 'UserDemo' that is set as Current-Package.

Now, I need to make Multiselect Component + Other Changes for Client 'B' but in another package.

Query:

1. How to set custom...MoreLess

Like 0

Like

1 comments

Hello!

To set the UsrDemo package as the current package for the page, you need to link this package to the application where the page is located...MoreLess

Show all comments

Hi all mentors, 
     
     I notice there is an app on the marketplace named "Excel reports builder for Creatio" that can generate the excel report in section page directly. Is it also okay to send the excel file in BP directly to certain users? I've tried it but failed during the setup in BP. If there is any reference information or link, please kindly share. 

Like 0

Like

0 comments
Show all comments

Hi,

We’re looking for a way to sync emails selectively to Creatio. I know we can set up folders and sync only specific ones, but that requires users to manually drag emails, which adds an extra step.

Do you know of a better solution or an add-on that could help?

Thanks in advance,
Chani

Like 0

Like

0 comments
Show all comments

Have following code to serialize the JSON but not working -- PLEASE HELP

Code 

using Terrasoft.Common.Json;

var diagCodeJson = Get>("DiagCode");
var jsonArray = new List();

foreach (var item in diagCodeJson) {
   jsonArray.Add(Json.Serialize(item));
}
string jsonString = "[" + Json.Serialize(jsonArray)...MoreLess

Like 0

Like

2 comments

If you need to serialize JSON object you can use JsonConvert.SerializeObject from Newtonsoft.Json namespace.

Here is the sample of the code:

...

MoreLess

Show all comments (1)