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

Hi Community,

I have a customer that wants to only allow the Actual Response Time to be calculated when an actual email is sent to the customer

As far as I understand the actual response time is calculated as soon as the case changes from status new.

Is there anyway to control this? Of for example linking the actual response time calculation to a specific state, or some other way to have control over when this date is calculated?

Thanks,
Luis

Like 0

Like

4 comments

Hello,

The Actual Response Time field is populated automatically the first time the case status changes. For example, this occurs when the case status is changed to "In Progress." This field is read-only and cannot be edited manually.

The calculation of the Actual Response Time field on the Case object is performed by the SLM package within the embedded process.

Please see the attached screenshot for reference.

The only way to change this behavior is through additional custom development. Unfortunately, we do not have an example of such an implementation. However, we have registered a request with the responsible R&D team to review the possibility of providing an OOTB option to customize this logic in a future implementation.


Best regards,
Malika

 

Hi Malika,

thanks for the reply,

I cannot see the screen shot for some reason, can you resend it so that I can at least get a clue on a possible implementation alternative?
 

Cheers
Luis

Luis Tinoco Azevedo,

Hello 

 

I am re-attaching screenshot below: 

 

Thanks, 

for some reason me and the rest of the people here in the office still don't see it.

But I guess the question is if it possible to disable the automatic calculation of the actual response time on status change

so that it can be calculated via a custom process?
Thanks

Show all comments
Studio_Creatio
channels
Studio_Creatio

Hi Creatio Community,

I'm currently implementing a custom chat channel provider by following the official documentation, and I have a couple of questions regarding the database setup.

1. Creating the provider settings table

The documentation instructs us to create a database table using a SQL script, for example:

 

CREATE TABLE SomeProviderMsgSettings (
    Id uniqueidentifier NOT NULL DEFAULT (newid()),
    Token nvarchar(250) NOT NULL DEFAULT (''),
    UserName nvarchar(250) NOT NULL DEFAULT (''),
    CONSTRAINT PK_SomeProviderMsgSettings_Id PRIMARY KEY CLUSTERED (Id)
)

 

My understanding is that creating the table directly with SQL only creates the physical database table, but does not create a corresponding Object (Entity) in Creatio.

Is that correct?

If so:

  • Is it completely acceptable for this table to exist only in the database without a Creatio Object?
  • Or is it considered best practice to create a Creatio Object (schema) that maps to this table instead of creating it only with SQL?

2. Registering the custom provider in the Channel table

The documentation says to add a record to the Channel database table.

However, when I look in the Configuration section, I can see several objects related to "Channel", for example:

  • Channel
  • ChannelPerformance
  • ChannelPerformanceAIStatus
  • ChannelPerformanceStatus

My questions are:

  • Which Channel object is the correct one that should contain the record for a custom chat provider?
  • Is this referring to the Channel object with the code name Channel, or another object?
  • What is the recommended way to insert the record?
    • Should it be inserted directly using SQL?
    • Or is there a supported way to create the record through the Creatio UI (for example, by creating a page or using an existing section)?
    • If the UI approach is recommended, could someone explain the proper way to do it?

I'd appreciate any guidance or best practices from anyone who has implemented a custom chat channel before.

 

Thank you!

Like 0

Like

1 comments

Hello Ghifari Zakaria Ramadhan,

1. Yes, the SQL only creates a physical DB table, and that's by design - no Creatio Object is needed.

2. Use the Channel object (title "Chat channel"). You can insert data via SQL script or Data binding.

Show all comments

Hi

Is it possible to sort the favourites folder drop down alphabetically as a default? At the moment the default is based on recently added.

 

Like 0

Like

1 comments

Hello,

Unfortunately, sorting of favorite folders is not yet implemented. However, we have already registered a request with our R&D team to explore the possibility of adding this functionality. You can follow updates in our release notes.
Have a great day!

Show all comments

Greetings,

I am looking to make some edits to the Sales Pipeline. An earlier member posted this on another post I made, but I could not find the file. Does anyone know what the file is called, and maybe where to find it?

 

Like 0

Like

1 comments

Hello Matt,

The configuration in your screenshot is not stored in a separate file, it is part of a Freedom UI page schema (a "Client module" type schema) that defines the pre-configured Sales homepage. Specifically, the "crt.FunnelWidget" block you posted comes from the SalesHome schema in the SalesEnterprise package (verified on a clean 8.3.4 instance). That is why you cannot find it as a file anywhere.

There are two ways to make your edits:

1. No-code (recommended). Open the Sales homepage, click the pencil button in the top right → "Edit page" to open the Freedom UI Designer. Select the pipeline widget and open its settings. There you can adjust what the widget displays, including the column it aggregates (e.g., switching from "Budget" to "Amount" on the Opportunity object). Save the page. Creatio automatically stores your changes as a customization, so you never need to touch the base schema.

2. Source code. If you want to edit the JSON directly, open the same page in the Freedom UI Designer and go to the settings menu → "Source code". You can also find the SalesHome schema in the Configuration section (System Designer → "Advanced settings").

One important note: do not modify the SalesHome schema in the SalesEnterprise package directly, as product updates would overwrite your changes. Make the edits through the Freedom UI Designer or in a replacing schema within your own custom package.

Show all comments

Hi community,

any idea on the best approach to add record permissions to email template object?
Some roles should have access to only some email templates.

It is possible to add the record permissions to the object but then, as the page is completely custom built by creatio, how to update the permissions?

Thanks

Luis

Like 0

Like

0 comments
Show all comments