Hi Community,

I have a question regarding customization file storage in Creatio. Is it possible to save files directly in the file system instead of the database (default)? 

I came across documentation on "Implementing a custom file storage," but I'm unsure whether these customizations affect...MoreLess

Like 0

Like

1 comments

Hello, 

The "Implementing a custom file storage" documentation you referenced utlines how to achieve this, and it does indeed allow you...MoreLess

Show all comments

Dear,

On Classic UI, we had a preview of files in emails attachments. 
Is it possible to have the same preview on Freedom ?

Classic: 

Freedom : is there a way to see a preview of image files ?

Thank you !
Nicolas

Like 0

Like

4 comments
Best reply

Hello Nicolas,

FYI I do have a marketplace add-on started that does previews for images in Freedom UI file list galleries, inline without needing...MoreLess

Show all comments (3)

After adding records ,How can I reload a detail list in a Freedom UI page from a task script within a business process, without using the live update feature in the object?
Thank you

Like 0

Like

3 comments

Note that i'add this code in the task script in the process 


var userConnection = Get<UserConnection>("UserConnection");
string messageText...MoreLess

Show all comments (2)

Hi Community,

I want to run a function only if the SaveRecordRequest is true. I tried to run await next.handle(request), but it returns undefined even if the record is save is successfully. Here is my code and test result:

			{
				request: "crt.SaveRecordRequest",
				handler: async (request, next...

MoreLess

Like 0

Like

1 comments

Hello everyone,

Could anyone share the link to the self-assessment cases that can help me prepare for the Creatio Analyst Certification Test?

I would really appreciate your help!

Thank you!

Juan Carlos

Like 0

Like

3 comments

The link to the self-assessment alternative answer questions is here, Certification & Tests | Creatio Academy.

There are no practical assignments...MoreLess

Show all comments (2)

Can anybody help me configure Notes and Attachments element in Form Page designer?

Like 0

Like

2 comments

Hello community,

I'm trying to use terrasoft.axd to download an image that is loaded as a system setting.
I am using the following query string /terrasoft.axd?s=nui-binary-syssetting&r=Glbxxx
where Glbxxx is the system setting code.
I don't understand why some calls return the correct image and others return a http error 401 (access denied).

Like 0

Like

2 comments

Hello. 

The 401 Unauthorized error you are encountering is not related to access rights (Access Denied) but rather to session authentication...MoreLess

Show all comments (1)

Hello Everyone,

I want to implement a functionality on a web page where a Phone Number field is used to retrieve customer data. When a phone number is entered and submitted:

  1. If a matching customer record exists in Creatio, the page should automatically populate with the customer’s details.
  2. If no record is found, a new customer record should be created in Creatio.
  3.  

Is this functionality achievable? Any guidance would be appreciated!

Thanks in advance.

Like 0

Like

4 comments

You’d have to create the webpage using Creatio’s OData or DataService API to read/retrieve the data to accomplish this. 
 

Show all comments (3)

How can I capture the newly changed field value before saving a record in a crt.SaveRecordRequest in Creatio Freedom UI? Currently, I am getting the old value instead of the new one.

Like 0

Like

4 comments

You can just retrieve them as below, which will get their current value at the time of the save. 

const val = await request.$context.AttributeName;
Show all comments (3)

Full requirement is 
 


Have 4 widgets and Global Area

Each Widgets calls behind the scene API with one key that is present in the global Area

Present that data in the widget

Now each widget can be consider as Page -- 

Now how easily create Page which invokes API and dispaly -- if API is returning 10 or so parameter do we need to create manually the page and have items and map items to API return value

Like 0

Like

5 comments

In order to display the result of the API call on the widget you will have to create the custom widget and implement the API call for retrieving...MoreLess

Show all comments (4)