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

I am currently experiencing an issue after performing a fresh installation of Creatio Studio version 8.3.0.3031_Studio_Softkey_MSSQL_ENU on my local environment.

Issue:
I am unable to access the application locally. The site returns a server error related to SQLite native library loading.

Error summary:

  • Library: e_sqlite3 not found
  • Platform: Windows (win-x64)
  • Exception: System.ComponentModel.Win32Exception (0x80004005): The specified module could not be found
  • The system attempts to load e_sqlite3.dll from multiple locations, including the Terrasoft.WebApp/bin folder.

    here is sc https://prnt.sc/3YVykbJDXpNb
Like 0

Like

1 comments

Hello,

Based on the error on startup (“Library e_sqlite3 not found” / Win32Exception: “The specified module could not be found”), the issue is most commonly related to missing or incompatible prerequisites on the workstation, or a damaged/incomplete deployment package where the required native runtime libraries were not copied correctly. Please verify that the machine has all required system components installed (including the .NET 8 SDK and .NET Framework 4.7.2 Developer Pack/SDK as per the prerequisites), and also ensure that the application is running in the correct bitness (x64) so native dependencies can be loaded. In parallel, please re-check the deployment archive integrity (re-download/re-pack if needed) and confirm that the extracted folder contains the required runtime/native files (e.g., the runtimes\win-x64\native\e_sqlite3.dll path under the web application) and that the archive extraction completed without errors.

You can find the full list of required system components in the documentation here.

Show all comments
custom
column
or
parametres
in
ML
Models

Dear Creatio team,

i'm trying to improve the ML models results for  recommendations.
Is it possible to use custom columns or parameters in training the ML models?
how to use it in the ML recommendation model ?
 

Like 0

Like

0 comments
Show all comments

Hi everyone,

I have a question regarding live update in Creatio.

I have an object with Enable Live Update activated. However, when records from this object are deleted through a business process, the list page does not update automatically.

Users still see the deleted records until they manually refresh the page.

Does anyone know if there is a way to force the list to refresh automatically when records are deleted by a process?

Any suggestions or best practices would be greatly appreciated.

Like 0

Like

1 comments

Hello.

Please note that the Live Update mechanism is triggered only when the author of the changes is the current user. This means that if a user modifies data, the update notification is sent only to that user’s active session. Other users will not receive an automatic update for those changes. This limitation is intentional and is designed to minimize additional resource consumption, especially on high-load environments.

There are plans to extend this functionality to support updates for all users; however, due to the complexity of such an implementation, it is not expected in the near future.

Additionally, at the moment, the Live Update feature supports automatic refresh only for record creation and record updates. Record deletion, including deletions performed via business processes, is not currently supported. Therefore, when records are deleted, the list page does not refresh automatically, and users need to manually refresh the page to see the updated data.

Best regards,
Antonii.

Show all comments

Hi Community,

 

In Creatio Freedom UI, any idea how to remove the OOTB copy option on detail grid? I wanted to retain only open and delete.

{
                "operation": "merge",
                "name": "ProductsList",
                "values": {
                    "features": {
                        "editable": {
                            "enable": true,
                            "itemsCreation": false
                        },
                        "rows": {
                            "selection": {
                                "enable": true,
                                "multiple": true
                            }
                        }
                    },
                    "columns": [
                        {
                            "id": "b2a9f446-9fe2-62dc-5ae7-6d310c8f377c",
                            "code": "ProductsListDS_Product",
                            "caption": "#ResourceString(ProductsListDS_Product)#",
                            "dataValueType": 10,
                            "width": 155.99737548828125
                        },
                        {
                            "id": "fbdc88c3-1804-4bd7-bcf4-d780f3266db7",
                            "code": "ProductsListDS_Quantity",
                            "caption": "#ResourceString(ProductsListDS_Quantity)#",
                            "dataValueType": 32,
                            "width": 122
                        },
                        {
                            "id": "92e6557b-0230-186b-843d-d49d84d1f0d3",
                            "code": "ProductsListDS_Price",
                            "caption": "#ResourceString(ProductsListDS_Price)#",
                            "dataValueType": 32,
                            "width": 114
                        },
                        {
                            "id": "7e24ec9a-fe25-b670-83e8-4b894cc28fb5",
                            "code": "ProductsListDS_Amount",
                            "caption": "#ResourceString(ProductsListDS_Amount)#",
                            "dataValueType": 32,
                            "width": 126
                        },
                        {
                            "id": "9e6cf8c7-3907-e7bb-fc7b-ab577187879c",
                            "code": "ProductsListDS_Comment",
                            "caption": "#ResourceString(ProductsListDS_Comment)#",
                            "dataValueType": 29,
                            "width": 325
                        }
                    ]
                }
            },

Like 0

Like

1 comments

You can see an article on that topic here: https://customerfx.com/article/adding-row-action-menu-items-to-a-creatio-freedom-ui-list/

Basically, you can't just remove the copy only. Instead, you need to replace the entire rowToolbarItems property for the List with a new array of items, adding back in the Open and Delete and exclude the Copy. 

To remove just the copy, you'd add this to the List (in the values part):

{
    "operation": "merge",
    "name": "ProductsList",
    "values": {
        "rowToolbarItems": [
            // default open action
            {
                type: "crt.MenuItem",
                caption: "DataGrid.RowToolbar.Open",
                icon: "edit-row-action",
                disabled: "$ProductsList.PrimaryModelMode | crt.IsEqual : 'create'",
                clicked: {
                    request: "crt.UpdateRecordRequest",
                    params: {
                        "itemsAttributeName": "ProductsList",
                        "recordId": "$ProductsList.ProductsListDS_Id",
                    }
                }
            },
            // default delete action
            {
                type: "crt.MenuItem",
                caption: "DataGrid.RowToolbar.Delete",
                icon: "delete-row-action",
                clicked: {
                    request: "crt.DeleteRecordRequest",
                    params: {
                        "itemsAttributeName": "ProductsList",
                        "recordId": "$ProductsList.ProductsListDS_Id",
                    }
                }
            }
        ]
    }
}

Ryan

Show all comments
How_to_make_editable_List_Column_Read-Only_in_Freedom_UI_?

Hi Community,

I am working in Creatio Freedom UI (8.x).

On the Case page, I have a detail grid: 

This grid is connected to a separate object (related to Case).

In the modal page of that object, I have set the Status field as Read-only, and it works correctly there.

However, when I enable inline editing in the editable list on the Case page, the Status column is still editable.

My requirement:

I want the Status column to be read-only in inline editing mode of the editable list.

What I tried:

  • Setting Read-only on the field in the modal page
  • Checking editability in object column settings

But inline editing still allows changes.

What is the recommended approach in Freedom UI?

Thank you!

Like 0

Like

3 comments

Hello, you can add a property "readonly": true for a specific column in your page source code. With this inline editing will still work for other columns.

{
	"id": "51005482-f2ec-6c7f-ebda-af341428b8d9",
	"code": "ProductsListDS_Quantity",
	"path": "Quantity",
	"caption": "#ResourceString(ProductsListDS_Quantity)#",
	"dataValueType": 33,
	"width": 114,
	"readonly": true
}

Hubert Pacia,

Hi Hubert,

Thank you for your response.

I have tried adding "readonly": true in the column configuration inside the DataGrid (as you suggested). However, it is still allowing inline editing for that column.

Here is what I have currently in my page source code:

 

{
    "id": "042e9406-096b-6133-2a3e-36330535a278",
    "code": "DataGrid_5pkutnDS_UsrSalesStatus",
    "caption": "#ResourceString(DataGrid_5pkutnDS_UsrSalesStatus)#",
    "dataValueType": 10,
    "readonly": true
}

 

The field is correctly read-only on the modal page, but when I enable inline editing in the editable list on the Case page, the column is still editable.

Is there anything additional that needs to be configured for inline editing mode specifically in Freedom UI (8.x)?

Thank you for your guidance.

Please try reseting to default list settings from UI if changes are not displayed immediately.

Show all comments