Dear mates,

Can i develope using french language in Creatio ?

Which browser would you advise for users ? (not developers)

Thank you,

Nicolas

 

Like 0

Like

1 comments

Hello Nicolas,

Yes, you can adjust changes to the application using French localization and also you can use French words when specifying parameters names (but not key words like "method" or "function").

As for browser that can be used - here is the list of client side system requirements with the list of browsers that can be used.

Best regards,

Oscar

Show all comments

Hello,

Somebody knows how can I add or remove fields on the provider containers on Minpages?, in my case New Account Minipage, I want to change Primary Contact from List to Lookup...

http://prntscr.com/qs0ij7

thanks

Like 0

Like

3 comments

Hello, somebody had any suggestion?

You can just add to your schema AccountMiniPage in DIFF definition:

                "operation": "merge",

                "name": "PrimaryContactEdit",

                "values": {

                    "layout": {

                        "colSpan": 18,

                        "rowSpan": 1,

                        "column": 0,

                        "row": 4

                    },

                    "dataValueType": this.Terrasoft.DataValueType.LOOKUP,

                    "contentType": Terrasoft.ContentType.LOOKUP

                }

Thanks Vladimir, it works! :-)

Show all comments

Hi community,

I would like to know more about the amount of space next fields take in database (cloud version):

For example, Text(250) field holds a string of 70 characters. How much space would it take in bytes? 

What if the value is null?

If we have 20 custom Text columns for Contact object, how much do they affect the performance? For table of 10K-30K rows. And if they are null for bigger amount of contacts?

For the section table (Account, Contact) of 10K-30K rows, what should be... hmm... the strategy of creating new custom fields for better performance? As an option, instead of adding the columns to Contact object we may add them to a separate detail object, but that increases complexity.

Should we consider much about that?

Thank you.

Like 0

Like

1 comments

Dear Yuriy, 

We haven't performed such precised tests, however, the size of the string field is approximately 2 bytes per character. You can perform tests yourself populating columns in sql and evaluating the difference in size of the table. However, the value of the field itself doesn't affects the performance of the system. The amount of columns may affect the performance of the system depending on how often and in which volume you get the data (how many records and how many columns) as it loads an sql to the certain extent. However, 20 text fields shouldn't cause much trouble. There are some ways of optimizing this based on what's said above, e.g. when you use Read Data element in the Business process we recommend to read only columns that are further used in the system. 

Show all comments

I am trying to add a mobile business rule that applies at various stages for an Opportunity. With the below code, the rule is only working on the Verified stage. I need it to work at 13 different stages so I was hoping to be able to add it all in one rule, but not sure if that is possible?

Terrasoft.sdk.Model.addBusinessRule("Opportunity", {

    ruleType: Terrasoft.RuleTypes.Visibility,

    events: [Terrasoft.BusinessRuleEvents.Load],

    conditionalColumns: [

                        {name: "Stage" , value: "e39b75ac-db07-4f37-a140-2f881a0a98e5"}, //Closed Won

                        {name: "Stage" , value: "423774cb-5ae6-df11-971b-001d60e938c6"} //Verified

                        

                        ],

    triggeredByColumns: ["Stage"] ,

    dependentColumnNames: ["UsrEstStartDate","UsrEstEndDate"]

    });

Like 0

Like

1 comments

Please check ids that are using in "conditionalColumns" array. It seems like the wrong id is used. The stage values are saved in the OpportunityStage table in the database.

Show all comments

Toggle operation mode for Mobile Creatio is not working now, when I click the button toggle for offline mode there are some process running on it,

and stack as long as the application is open. Anyone idea to solve this problem?

Like 0

Like

1 comments

Hi! In OOB creatio mobile app offline mode can be enabled only via PC version. If this button is custom try to debug it using mobile emulator that can be requested from support team. 

Best regards,

Angela

Show all comments

Hi everyone,

Is it possible to resize message box in method "showInformationDialog" ?

and how ?

Thank you.

Like 0

Like

1 comments

Unfortunately, it's not possible to configure message box size in the method "showInformationDialog". However you can resize the message box by applying custom css. The article by the link below describes how to add custom css style:

https://community.creatio.com/articles/how-add-or-edit-css-style

The example for css style:

.ts-messagebox-box {

    height: 500px;

    width: 500px;

}

Please note that this css style can be applied globally, to all message boxes in the system. 

Show all comments

Good morning,

At difference with "LDAP synchronization interval, hours" that indicates is on hours or "Webhooks synchronization interval, min" minutes, the "Mailbox synchronization interval (MailboxSyncInterval)" didn't indicates if the sync value is hours or minutes, also on documentation just "LDAP synchronization interval" is documented,

Also there no reference to "Mailbox synchronization interval" on Creatio documentation on https://academy.creatio.com/documents/administration/7-15/system-settings-description

Somebody knows if the value here is hours or minutes?

Thanks in advance

Like 0

Like

3 comments

Hello!

 

This interval is stored in minutes. Please note that this system setting will not be applied for existing mailboxes - you need to add them again to apply this setting.

Best regards,

Angela

Angela Reyes,

thanks Angela, we have configured, by default 1, I understand minute, but it doesn't works. You indicate me if I change this setting I must to delete the current mailboxes and add it again to recognize the new setting, this is no logic, are you sure?

Thanks again

Julio.Falcon_Nodos,

Yes, system setting will work only for new mailboxes. Old mailboxes cannot be affected by it. 

Show all comments

Hi,

  I have configured some email templates in recent weeks but when the email is sent the inserted image is not visible. This is the same image that I have always been using.

 

 

https://prnt.sc/qkgvdj

https://prnt.sc/qkgw16

Like 0

Like

2 comments

Dear Pedro, 

The issue happens with jpg images in the gmail provider. The issue would be fixed in one of the upcoming versions of the application. As a workaround you can change the image format to png or contact support team (support@creatio.com) to have temporary fix installed. 

Dennis Hudson,

Thanks

Show all comments

What is the reason why it is needed to link objects to processes?

Like 0

Like

1 comments

Dear Ricardo, 

This element is needed to track what objects were used in the process. It just adds the object to the corresponding record in process log. It doesn't do anything with the object itself and nothing would happen if you don't use it, however, it is easier to track the process flow with this element. It takes an extra space on the site though and process runs a bit slower. 

Show all comments

Is there a way to restrict adding duplicate records to the detail? 

Like 0

Like

2 comments

I use processes that are triggered by a signal when a new record is added to the section, then looks for duplicates, deletes the new record, and notifies the user with a link to the existing record.

Would the process pickup the signal from a record insertion happening during an excel import as well?

 

Show all comments