hi guys i have an error in ssms when i add user as a local then add a log in user then when i execute in iis its appear an error say's that user id error?? any help 

Like 0

Like

1 comments

Hello,

 

Please contact our support team directly at support@creatio.com and describe the issue in detail there so we could help you resolve this.

Show all comments

Hey, everyone! 
I've been trying to mass update a property (Column) from a table in a Demo envoyrement. 

I've asked Gemini and gpt. Bolth returned me that there should be a "Quick Update" button, but it's nowhere to be found... 

Asked a coleague and he sent me this app (https://marketplace.creatio.com/app/mass-updating-creatio)... still.. nothing. 
I don't want to create a Business Process to do it ...

Does anyone have a solution for this?

Thanks ! 

Like 0

Like

1 comments

Hello,

 

Please note that there is no basic functionality to mass update the records in the system. The "Mass updating for Creatio" marketplace addon or a business process are the best choices to achieve your goal. Alternatively, you can create an SQL script to update the values directly in the database. 

If you are having issues with the addon, you can contact the developer of the solution directly at support@inforce.kz and describe the issue to them.

Show all comments

Hi, 

 

Any ideas why the code below is not working? I get an 'Object reference not set to an instance of an object.' here /0/DataService/json/SyncReply/SelectQuery 

I checked that the getUsersInRole function that I wrote is working. It returns an array of Contact Ids.

Thanks in advance,
Jose

{
    request: 'crt.LoadDataRequest',
    handler: async (request, next) => {
        if (request.dataSourceName === 'PageParameters_UsrLookupParameter1_13p73tg_List_DS') {
            var roleId = request.$context.attributes.PageParameters_UsrLookupParameter1_atde2dj?.value;
            var users = await UsrC2CUtilitiesV2.getUsersInRole(roleId);
            const usersFilter = new sdk.FilterGroup();
            await usersFilter.addSchemaColumnInFilterWithParameters(sdk.ComparisonType.Equal, "Id", users);                            
            request.parameters.push({
                type: "filter",
                value: usersFilter
            });
        }
        return await next?.handle(request);
    }
}

Like 0

Like

0 comments
Show all comments

Hello,

I want to color rows in a list page whose date has passed (Freedom UI).

I tried to add a css file to my list page. I followed this article, but I still have a problem. When I look at the page's inspect, I see that a line has been added with a link to the file I added (
I would appreciate help.

Thanks, Smadar

Like 0

Like

0 comments
Show all comments

I have encountered an unusual problem.

Task: On the main page, create a button that opens a custom module with a detail. There are entries in the details and a help field that takes the user to the "Case" page.

I created a custom module, extend from "Terrasoft.BaseSchemaModule" and "schemaName" and "entitySchemaName" to my schema and entity.

There are no problems with the display, but when I go from my module to the "Case" page and want to return:

1. The "Close" button is triggered only the second time

2. It returns me to the main page and not to my module.

I tried to open my custom module through the "sandbox.LoadModule" - the "Close" button started working immediately, but I still returned to the main page

 

 

Like 1

Like

0 comments
Show all comments

On a form or a list, I would like to display a link to a document stored in the system (the user selects the document manually). The name of the document would appear on the screen and if you click on it, the document will open. I couldn't find a "document link" field type. How can I implement this in Creatio?

 

Best regards,

Tamas

Like 0

Like

1 comments

Create the attachment detail (within the section you want to display document links) as a new section. Then create a new string field and a business process which updates this field each time an attachment is created. Like below:

 

"https://my.creatio.com/0/rest/FileService/GetFile/36262394-3837-46a6-ba…"+[#Read PI Attachment.First item of resulting collection.Id#]

 

The first part is constant for each record with the ID appended on each record created.

 

This will then create the link you need to automatically open the document within the section list.

 

The ID (highlighted in yellow) relates to the specific UId of the object (which you can locate within advanced settings). The ID highlighted in Green is the unique attachment ID which is appended during BP update.

 

Show all comments

Hi;

I try to find out which processes in productuction environment has checkes tracing enabled.

I found IsTracing record in sysSchemaProperty but it has value False but in GUI checkbox is set.

is there any easy way to find tracing processes



Regards

Tomek Branicki

Like 0

Like

2 comments

Hello,

You can filter the Trace enabled processes you need in the Process Library. Example below:





Best regards,

Malika 

 

Malika,

Tkanks Malika

Show all comments

Hello,

 

Suppose we have the following code:



var fundId = this.get("FundId");



                    var esq = Ext.create("Terrasoft.EntitySchemaQuery", { rootSchemaName: "FundSchema" });

                    esq.addColumn("FundAmount");

                    esq.getEntity(fundId, function (result) {

                        if (result.success) {

                            var currentamount = result.entity.get("FundAmount");

// empty result.entity for some roles

    }

}

 

And we have two roles A and B.



When I tried with role A, the result.entity is empty.

When I tried with role B, the result.entity has object value inside.



Both has fundId loaded in value and should be getting the same result.entity object.



I am trying to find where might be the root cause that results to this.

 

May I know is there any place in creatio that configures only certain role is able to get the result.entity or is there any other way to find the solution or root cause of this like code sample etc?

 

Thanks for the help!

Like 0

Like

1 comments

Hello,

 

EntitySchemaQuery checks for access rights when retrieving data, so the issue is in the entity's set of access rights for roles A and B. You need to check if users from both roles have access to the object (object permissions) and the record (record permissions) for the record that is returned for one role but doesn't return for another.

Show all comments

Hello,

Is there a way to design radio buttons in a detail columns in freedom UI?

I wanted to implement a functionality  such that user can only select option from two columns (exists, not exists)

Any suggestions are really helpful.

 

Thanks

Gargeyi

Like 0

Like

1 comments

Hello,



As a workaround, you can use the Checkbox fields:  https://academy.creatio.com/docs/8.x/no-code-customization/customizatio…

Show all comments

I installed an application(Freedom UI) from the other instance. Prior to installation, I ensured that the data binding was correctly set up to ensure the lookup is connected to the export application.



After installing the application on the new instance, the lookups are functioning properly. However, I am unable to make any changes, such as adding a color column or other columns in the lookups (Data model objects).



Please assist in this matter.

Like 1

Like

1 comments
Best reply

Hello,

 

After installing a package on another environment, it gets locked, and you cannot make changes there.

Currently, this is the expected behavior, as a delivery management process for packages exists.

 

Here's the article:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

 

In version 8.1.2, you can unlock the package to apply a hotfix:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

Hello,

 

After installing a package on another environment, it gets locked, and you cannot make changes there.

Currently, this is the expected behavior, as a delivery management process for packages exists.

 

Here's the article:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

 

In version 8.1.2, you can unlock the package to apply a hotfix:

https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platfor…

Show all comments