Hi, I am using the cloud trial version of sales enterprise Creatio. I am getting this compilation error every time I compile my instance. On rare occasions it gets complied successfully. The same is true when I try to publish objects etc. Why is this error frequent and how do I rectify it ?

 

PS: The path mentioned in the error screenshot doesn't exist in my PC. Hence I assume the path is a part of Creatio cloud side and the error too. 

Like 0

Like

1 comments

Hello

 

The error usually appears if the system compilation is started by 2 or more users at the same time. One more scenario is when the compilation is still running and another compilation is started and not finished. Most likely this happens in your case.

You need to wait till the process is finished. The directory from the error message comes from application server and means that the static content is still generated there. 

It might take more time than usual with trial\demo instances since they do not have much resources to finish the process faster.

 

Regards,

Dean

Show all comments

Hello,

A user has a phone call that does not hang up and is still displayed in the call section for 3 days.

What solutions are there to solve this problem, please?

Creatio version: 7.17.4.2265

Telephony under Asterisk

 

 

 

 

Best regards

Like 0

Like

3 comments

Dear Antoine, 



Please contact our support team via an email: support@creatio.com and submit the support request so we could check it.

Please provide us with more detailed information on this issue in your letter and mention about the community post you have created on this issue. 



Thank you in advance.



Kind regards,

Roman

Hello Roman,

 

I have sent my request to support as requested.

 

Thank you.

Hello Antoine, 



Such situations occur when during a call the connection between TMS service and Asterisk is lost. TMS service restart is required to fix the issue. 



Best regards, 

Yurii. 

Show all comments

I have this Action Item and onClick of it, want to trigger a Business Process. How can this be achieved?

 

Thanks

Like 0

Like

2 comments

Dear Anu, 



Can you please specify with more details on how exactly would you like to trigger the process? 



Thank you. 

AnuRoman Brown,



Here is the Academy article to call the BP (Business Process) from the Action items menu.

https://academy.creatio.com/docs/developer/integrations_and_api/busines…

 

Sample,

 

define("AccountPageV2", ["ProcessModuleUtilities"], function(ProcessModuleUtilities) {
    return {
        entitySchemaName: "Account",
        methods: {
            // Проверяет, заполнено ли поле [Основной контакт] страницы.
            isAccountPrimaryContactSet: function() {
                return this.get("PrimaryContact") ? true : false;
            },
            // Переопределение базового виртуального метода, возвращающего коллекцию действий страницы редактирования.
            getActions: function() {
                var actionMenuItems = this.callParent(arguments);
                actionMenuItems.addItem(this.getActionsMenuItem({
                    Type: "Terrasoft.MenuSeparator",
                    Caption: ""
                }));
                actionMenuItems.addItem(this.getActionsMenuItem({
                    "Caption": { bindTo: "Resources.Strings.CallProcessCaption" },
                    "Tag": "callCustomProcess"                
                }));
                return actionMenuItems;
            },
            // call you porcess
            callCustomProcess: function() {
                var contactParameter = this.get("PrimaryContact");
                var args = {
                    // Process name
                    sysProcessName: "UsrCustomProcess",
                    // parameters process
                    parameters: {
                        ProcessSchemaContactParameter: contactParameter.value
                    }
                };
                // run process
                ProcessModuleUtilities.executeProcess(args);
            }
        }
    };
});





BR,

Bhoobalan Palanivelu

Show all comments

I have the add-in loaded, Calculation of working days in business processes.

Trying to use the "Add Business Days" user task.

Calendar is set, number of days is set, start date is set, end date is empty.  When processing, it throws an error:

 

Npgsql.PostgresException (0x80004005): 42883: operator does not exist: boolean = integer

   at Npgsql.NpgsqlConnector.d__157.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Npgsql.NpgsqlConnector.d__156.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at Npgsql.NpgsqlConnector.d__156.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Npgsql.NpgsqlConnector.d__163`1.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at Npgsql.NpgsqlDataReader.d__32.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Npgsql.NpgsqlDataReader.NextResult()

   at Npgsql.NpgsqlCommand.d__71.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Npgsql.NpgsqlCommand.d__92.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Npgsql.NpgsqlCommand.ExecuteDbDataReader(CommandBehavior behavior)

   at Polly.Policy.<>c__DisplayClass119_0`1.b__0(Context ctx, CancellationToken ct)

   at Polly.Policy.<>c__DisplayClass129_0`1.b__0(Context ctx, CancellationToken ct)

   at Polly.Policy.<>c__DisplayClass103_0.b__1(Context ctx, CancellationToken ct)

   at Polly.NoOp.NoOpEngine.Implementation[TResult](Func`3 action, Context context, CancellationToken cancellationToken)

   at Polly.Policy.<>c.b__103_0(Action`2 action, Context context, CancellationToken cancellationToken)

   at Polly.Policy.ExecuteInternal[TResult](Func`3 action, Context context, CancellationToken cancellationToken)

   at Polly.Policy.Execute[TResult](Func`3 action, Context context, CancellationToken cancellationToken)

   at Polly.Policy.Execute[TResult](Func`1 action)

   at Terrasoft.Core.DB.DBExecutor.FailoverExecuteReader(DbCommand command, Func`1 func)

   at Terrasoft.Core.DB.DBExecutor.d__88`1.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Terrasoft.Core.DB.DBExecutor.ExecuteCommand[TResult](Func`2 commandExecutionCallback, String sqlText, QueryParameterCollection queryParameters, CancellationToken cancellationToken)

   at Terrasoft.Core.DB.DBExecutor.InternalExecuteReader(String sqlText, QueryParameterCollection queryParameters, CommandBehavior behavior, CancellationToken cancellationToken)

   at Terrasoft.DB.PostgreSql.PostgreSqlExecutor.<>c__DisplayClass41_0.b__0()

   at Terrasoft.DB.PostgreSql.PostgreSqlExecutor.ExecuteInLockIfInTransaction[TResult](Func`1 action)

   at Terrasoft.DB.PostgreSql.PostgreSqlExecutor.InternalExecuteReader(String sqlText, QueryParameterCollection queryParameters, CommandBehavior behavior, CancellationToken cancellationToken)

   at Terrasoft.Core.DB.DBExecutor.InternalExecuteReader(String sqlText, QueryParameterCollection queryParameters)

   at Terrasoft.Core.DB.Select.d__54.MoveNext()

--- End of stack trace from previous location where exception was thrown ---

   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()

   at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)

   at Terrasoft.Core.DB.Select.ExecuteReader(DBExecutor dbExecutor)

   at Terrasoft.Configuration.GlbCalendarServiceUtils.GetWeekEnds()

   at Terrasoft.Configuration.GlbCalendarServiceUtils.AddWorkingDays(DateTime date, Int32 days, Guid incomingCalendarId)

   at Terrasoft.Core.Process.Configuration.GlbAddBusinessDays.InternalExecute(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessActivity.ExecuteElement(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessActivity.ExecuteItem(ProcessExecutingContext context)

   at Terrasoft.Core.Process.ProcessFlowElement.Execute(ProcessExecutingContext context)

Like 0

Like

2 comments

Hello Chris,

 

Could you please double-check if you executed the script from the instruction on the Creatio deployment procedure, step 8?

https://academy.creatio.com/docs/user/setup_and_administration/on-site_…

The script name is CreateTypeCastsPostgreSql.sql file

 

Best regards,

Bogdan S.

Bogdan, thanks, but this is a creatio-hosted site.  I can run the script there via the sql console if that will work.

 

Show all comments

How can we set up "Select from similar" functionality, when a contact or an account is added automatically when creating a new lead.

Does it have to do something with duplication rules setup? Does this comes Out-of-the-box?

Like 0

Like

1 comments

Hello Kavian,

 

Hope you're doing well.

 

You can find more information about the "Select from similar" functionality for Contacts and Accounts created from Leads in the articles below:

https://academy.creatio.com/docs/user/marketing_tools/leads/leads_faq#t…

https://academy.creatio.com/docs/user/marketing_tools/leads/leads_faq#t…

 

Also, the search process for similar contacts/accounts for Leads is being performed based on the parameters from "Duplicates rules" settings. To find the needed duplicates rules, please go to the System designer and open the "Setup duplicates rules" section, there you will be able to configure duplicates search parameters for Contacts and Accounts created from Leads (there are two folders for those rules: "Leads: similar accounts", "Leads: similar contacts"):

 

 

Best regards,

Roman

Show all comments

Hello community,

 

On clicking the feedback CSAT ratings in https release environment we are getting the error seen in the following link

https://drive.google.com/file/d/1Lalt3mpCkUwY_bpxE-HSODJpuVzV2ryX/view?…

(At this point I am unable to add attachment :( )

The system settings are correctly configured (The URL that gets redirected is right). Could you please let us know the reason for this error and what we can do to resolve it?



 

Like 0

Like

1 comments

Hello,

 

Please check if your SysPortalConnection user has the portal license assigned to him and also check if the password for the SysPortalConnection is the same as the password specified in the UserManagementSauPassword key of the root/Terrasoft.WebApp/Web.config file.

 

Also what message is logged in the application logs at the moment you click the link? Also do you click the link directly from the case processing tab or do you receive a feedback email and click the link from the email? Because clicking the link from the processing tab of the case is restricted for company employees and can lead to this error (secure case evaluation, logged-in company employees cannot rate cases).

 

Best regards,

Oscar

Show all comments

Hi,

We want to set up a report for the customer per loan number of the redemptions and the interest income to be paid. All needed data is stored within Creatio including loan duration, interest percentages, etc.

The overview should show per month, the redemption amount, the interest amount, the total amount to be paid; all months should be included in the overview.

Will it be possible to realise such a document without additional coding or is there a template available?

Guido Buurlage

Like 0

Like

0 comments
Show all comments

Need to grant access of a group of accounts / contacts to partners via partner portal.

All I found so far is to do it individually, record by record.

Is there a better way ?

regards,

Like 0

Like

6 comments

Hello Ricardo,

 

Hope you're doing well.

 

If I understood your business task correctly, for this purpose you can use the "Access rights setup wizard for Creatio" add-on. Please find more details about the mentioned add-on in the link below:

Additionally in the next articles, you will be able to find useful information about the working process with the Creatio portal:

 

Best regards,

Roman

Roman Rak,

Dear Roman,

I have just installed Access rights setup wizard for Creatio.

After selecting some accounts, clicking on "Set up access rights", and choosing permanent (or temporary) righs the system shows "loading" and never returns... Am I missing anything ?

Dear Ricardo,

 

Please make sure you have followed the installation and user guide:

https://marketplace.creatio.com/sites/marketplace/files/app-guide/Acces…

 

Kind regards,

Roman

 

Dear Roman, 

Here you go:

Implementation instructions

1. Contact the support service to install a package with the [Access rights] business process or install it manually using the [Installed applications] link in the system designer.

 

I installed via the the [Installed applications] link in the system designer.

 

2. Record access rights configuration is carried out by clicking the [Actions] button in the section list. To configure access rights:

a. The user who makes the configuration must have the access rights to the [CanManageAdministration] system operation.

b. The user must be a member of the [System Administrators] organizational role.

 

I am using the  Supervisor user,  which has the needed access rights.

 

Any other recommendation ?

 

Regards,

Ricardo Bigio,

I had the same issue with this package. I believe it started working after I logged out and back in again (a refresh wasn't enough). I might have also compiled the workspace as well.

Ryan

I recompiled the workspace, and now I have another problem: I can grant access rights for a selection of  accounts (If I open each account individually, I can see that the access was granted). But If I select the same group os accounts (with "Select multiple records" / "Set up access rights" / ")  nothing is shown in the "Granted rights"detail, as if the rights were not granted. 

Show all comments

Dear Community,

There are some system settings, email templates which we would like to change according the environment in which the package is deployed. For example, we want to change the URL in email templates to that of BUAT/Production URL. Is there a way to automate this process? Is it possible to run a Business Process/ Stored Procedure exactly once, as soon as package is installed successfully?

 

Thanks

Like 0

Like

3 comments

Dear Shivani,



When you add a web link or object link to your template, they are saved in Html code of an indicated template in <a href="">name</a> tag. The link in a tag is static and within template transfer, it will not be changed. 

This functionality did not include the logic of creating all-purpose links, which would work when migrating templates to another environment.

This has been already reported to our R&D team so they can work on implementing the needed logic upon future releases.



Best Regards,

Ivanna Yatsura

Ivanna Yatsura,

Hi Ivanna. Follow up question reg Package installations and entity events - https://community.creatio.com/questions/do-package-installations-trigge…



Request your inputs. 

M Shrikanth,

 

You will be updated on the corresponding post shortly.



Best Regards,

Ivanna Yatsura

Show all comments

Is it possible to change an item value (not caption) color on an edit page ?

Like 0

Like

2 comments

Hi Ricardo,

Yes, you can add CSS to a page and then can set the color of a field using the CSS. See https://customerfx.com/article/adding-custom-css-style-sheets-in-bpmonl…

Ryan

Hello Ricardo,

 

As was correctly mentioned by Ryan, for this purpose you need to add CSS, where you will be able to configure any colors your business task requires. Additionally to the article which was kindly shared above, the next articles can be helpful as well:

Kind regards,

Roman

Show all comments