Hi,

I performed a test load of 30 records into the Account addresses object, the first 30 records were imported but when attempting to re-import those records, the wizard returns this error: 

Column CountryName value cannot be obtained because it has not been loaded.

When i checked the values in the Country lookup, the values its rejecting are already loaded in the lookup, so it doesn't make sense that its saying its not loaded. There maybe something i'm missing here and i would love to know if anyone has experienced this issue in the past. 

Thanks!

Like 0

Like

1 comments

Hello,

 

In order to fix this issue, turn on (or add) feature  "LoadAllColumnValuesInDuplicateSearch" and clear browser cache, then import should load all columns and work as expected.

Show all comments

I am using creatio API to get the object collection data from Creatio, in which lookup values have Ids. I want to replace those Ids with their Name saved in look ups. 

 

@Community, My question is, how can I get data of specific look up from Creatio using creatio API Odata4

Like 0

Like

1 comments

Hello!

 

To get the data of a specific lookup you need to use the following request:

https://sitename.creatio.com/0/odata/Lookup(lookup_id)

 

If you want to get the content of such lookup, then you should make a request directly to the object which the lookup is connected to. For example:
https://110032169-demo.creatio.com/0/odata/Account(record_id)

 

Have a nice day!

Show all comments

Hi All,

 

I need to create a web service to integrate with an ERP. I have a list with all endpoints, methods and parameters.

 

Is there a way where I can import the data from an Excel file into the web service in Creatio or any other way where I don´t have to create one by one?

Like 2

Like

1 comments

Hello!


Unfortunately, this option is not available. We will register the idea with our development team so they can implement the option to import services.


Thank you for helping make Creatio better!

Best regards, 
Orkhan

Show all comments

Hello.

Do you know if there is a way to search for multiple records?
For example, can I enter the name of a record and separate it with a comma or a semicolon from another so that the platform brings me both records in the search or several if I use the same sequence.

It would be something like Record1; Record2; Record3

Or do you know of any other way I can search for multiple records by name?

Like 0

Like

1 comments

Hello,

Basically, you can use advanced filter, where you can search for records using multiple keywords. As for the search component or global search, unfortunately the multiple search logic has not been implemented in there.

However, a task has already been registered in our R&D team to consider and implement such a feature in future releases.


Best regards,
Malika

Show all comments

Dear community!

 

Does someone thinks about such a feature?

To let operator user work with chat channel from mobile application?

Maybe, Creatio team have it in the backlog?

Like 0

Like

1 comments

Hello,

 

Currently, there is no possibility to work with chats in the mobile application. However, we have already registered a task for our R&D team to explore the possibility of implementing this functionality in future.

 

Thank you for your question!

Show all comments

Hi Community,

On change of a specific field's value, the case should be updated automatically without any user interaction or confirmation needed to replace the case.

I want the case to be automatically replaced based on its condition.

Like 1

Like

2 comments

Hello,

Any updates on the issue I'm currently facing?

 

Thanks

Hello!
 


This is basic system functionality—if a DCM has previously been used in requests (or other areas) and work has already been done in it, the system does not update it, as it may not be necessary for the user. Therefore, on the left side, you’ll see an icon that first prompts for confirmation to apply changes for the current request.

Regards,
Orkhan

Show all comments

Good afternoon,

 

I'm looking for a no-code solation that would prevent a user from adding a new "active" contract to an account if one already exists.

 

Example,

"Account A" has "Contract X" which is currently active. We would like to prevent a user from adding "Contract Y" to "Account A" since it already has an active contract. Is this possible without code? Currently on 8.1.5.2177 if that makes a difference . 

 

Regards,

Michael

Like 0

Like

1 comments

Hello,

You can create a business process, using no-code tools that, when creating a contract, will check if a contract exists for that account and, if so, will notify the user. To do this, you may need elements such as:
Signal start, Read data, Modify data, Delete data and Pre-configured page
 

You can also configure a duplicate search process using the Find and merge duplicates element and a pre-configured deduplication rule.  Before setting up the element, ensure bulk duplicate search and global search features are configured, and the relevant section has active duplicate search rules.

Best regards,
Antonii.

Show all comments

I want to attach a pdf to an email template. I tried an add on from the market place but it is not helping as it is the same as adding an attachment to a record. How do I do it? 

Like 0

Like

3 comments

Dear Prachi,

 

You don't need any Marketplace to this task. In a process Email task you can add attachments, see the image

Julio.Falcon_Nodos,

This is not a process. I want it to attach it to a template. 

Prachi Bhelkar,

No, an email template is a ‘template’ you cannot attach files to templates.

 

When you need to instantiate, at runtime, a template to be ‘populated’ with the data from the registry that the mail connects to, in a process or DCM, you can attach a file.

 

Julio

Show all comments

Hello @Community,

 

I am using Creatio API OData4 to get the data from Creatio Object Collection.

I wanted to filter the data base on date and time. Is there a way to get only last 3 months data with Odata4?

Like 0

Like

1 comments

Hello Community,

 

I would like to filter data in my dashboard (Freedom UI) from Approval object based on the role of the currently logged in user in the Approver field. However I could not find a way to achieve this at design time (possible way was to use a macro but it does not allow this). Please see attached screen shot. I have used a View to fetch data from the Approval object. Is there a way to filter the data possibly through code or from the View itself?

Like 0

Like

1 comments

Hello,
 

Unfortunately, it is not yet possible to build a filter with Approvals object when using the new Approval mechanism with the basic tools of our application.
 

As a workaround, you can try to develop a filter for your needs, but even using development methods, it is unlikely that you will be able to use the Approvals object for filtering.

You can try to develop filtering as follows:

1) Change the dashboard filter logic before loading data using the filter. This should be done by manipulating with the _Data_PredefinedFilter property of the dashboard. See example below:

 

Code example

 

Here we used the HandleViewModelInitRequest (page is opened) and we have access to the filter of the dashboard using request.$context.IndicatorWidget_5jpo3v5_Data_PredefinedFilter (IndicatorWidget_5jpo3v5 should be changed to the code of the dashboard we are interested in). To get the filter use the code:

let dashboardFilter = await request.$context.IndicatorWidget_5jpo3v5_Data_PredefinedFilter;

Then you can manipulate with the filter and set the value back as

request.$context.IndicatorWidget_5jpo3v5_Data_PredefinedFilter = dashboardFilter (or any other variable name that is used to manipulate the filter)

2) Manipulate with the already received response and set the value to the dashboard. This is easy with dashboards of the metrics type, but more complex with dashboards of the list type, and it cannot be done on the HandleViewModelInitRequest event. In this case you need to use sdk.Model to get some data for comparison (something like below):

const ceoFilter = new sdk.CompareFilter(sdk.ComparisonType.Equal, new sdk.ColumnExpression({
                       columnPath: "JobTitle"
                   }), new sdk.ParameterExpression({
                       value: "CEO"
                   }));
                   const contactModel = await sdk.Model.create("Contact");
                   const contacts = await contactModel.load({
                       attributes: ["Id", "Name", "JobTitle"],
                       parameters: [{
                           type: sdk.ModelParameterType.Filter,
                           value: ceoFilter
                       }]
                   });

And then modify the received data set from the dashboard (this dataset can be retreived from the dashboard.

End of problem not decided


However, we understand that this is not ideal for your specific needs.

 

We want to assure you that we have created a request for our development team to implement this functionality in future versions of our application. We understand the importance of providing our clients with the best possible experience and will work hard to implement the changes you have suggested.

 

Thank you again for bringing this to our attention, and please do not hesitate to reach out if you have any further questions or concerns.
 

Show all comments