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

Dear,

In Creatio Classic mode, we had an order history table.

Order History Classic

if i click on Detail settings: The detail is not recorded in the details of the reference table.

I would like to display this detail in Freedom mode, but I don't see any information in the ChangesHistoryTab. 

How can I display it in Freedom mode?

Thank you !
Nicolas

Like 0

Like

0 comments
Show all comments
Marketing_Creatio
email templates
bulk emails
8.0

Hi everyone,

I'd like to upload ready-made HTML-templates from our old system to the Content Designer so that I can use and edit them as they were created in the designer.

It's not enough to copy the entire HTML-Code into the HTML-Element in the Designer.

This article (https://academy.creatio.com/docs/user/marketing_tools/email_marketing/e…) links to a page (https://academy.creatio.com/node/1542/) that is unfortunately not available.

Thanks a lot,

Philipp

Like 0

Like

0 comments
Show all comments
Sales_Creatio
8.0

We are currently importing accounts in bulk using the Excel Data Import, and would like to add one or more tags to the accounts imported. 

  1. Is it possible to assign a tag directly to an eccount during the Excel data import process?
  2. If yes, which object should be used to map the tag?
  3. If not, is there another way to mass update tags for accounts that are not identified by criterias / filters in Creatio, but an Excel list to be imported? 

Thanks in advance. 

Anette

Like 2

Like

1 comments

Hello,

Your business requirement can be achieved in two steps:

1) Create a text field in the object where you plan to import the tag.
This field will define which tag should be assigned to the imported record. During the Excel import, map this field to the corresponding column in your file.

2) Create a business process that is triggered when a record is added or when the “Tag” field is changed.
The business process should:
 

  • Check whether the specified tag already exists.
  • If the tag does not exist, create it.
  • If it does exist, link the record to the existing tag.


This approach ensures that tags are automatically created (if needed) and properly assigned during the import process.

Show all comments
printables
report
MS_Word_report_in_Creatio
FreedomUI
Studio_Creatio
8.0

Hi,
I would like to know whether there is a way to both download a printable report and attach it to a record simultaneously in Creatio Freedom UI.

Currently, I am aware of two separate approaches:

  1. Using the default functionality to generate and download the printable report.
  2. Using a business process to generate the report and attach it to the record's Attachments section.

However, my requirement is to perform both actions at the same time—when the user generates the report, it should be automatically attached to the record while also being downloaded to the user's machine.

Has anyone implemented a similar solution or can suggest an approach to achieve this?

Any guidance would be greatly appreciated.

Thank you,

Like 0

Like

2 comments

Hi Satyam,

Yes, this can be achieved, but you need to handle both actions in one custom flow.

The recommended approach would be:

  1. Generate the printable report using a business process or custom backend service.
  2. Save/attach the generated report to the record’s attachment object, for example ContactFile, AccountFile, or the relevant {Object}File schema.
  3. After the file is created and you have the generated file record Id, trigger the browser download using FileService/Download/{EntityFileSchemaName}/{fileId}.

For uploading/attaching a file manually, Creatio provides POST /FileApiService/UploadFile, where you need to pass parameters such as entitySchemaName, parentColumnName, and parentColumnValue.

So the key point is: do not only call the download service directly. First generate/save the report as a file attachment, then use the generated file Id to download it for the user.

If this needs to happen from a Freedom UI button, the button can call a custom service or process, wait for the generated attachment file Id, and then open the download URL in the browser.

smit suthar,

Hi,

Thank you for the detailed explanation.

I understand the overall approach, but I'm still a bit unclear on some of the implementation details in Creatio.

Would it be possible for you to elaborate on the following points:

  1. In the case of a Freedom UI button, what would be the recommended way to wait for the file creation and then trigger the download automatically?
  2. If possible, could you provide a simple end-to-end example (Business Process or Freedom UI implementation) demonstrating the complete flow?

A more detailed example would help me understand how these pieces fit together in practice.

Thank you for your help.

Show all comments
Selfregistration

I would like to know whether Creatio supports the following scenario out of the box:

  • An applicant (external/public user) accesses a registration page.
  • The applicant self-registers without intervention from an administrator.
  • After registration, the applicant receives or creates their own username and password.
  • The applicant can then log in to Creatio (portal/external user area) and submit applications or requests.
Like 0

Like

1 comments

Hello,

Yes, Creatio supports this scenario out of the box through the Portal functionality and the built-in portal user self-registration mechanism.

A public user can access the portal registration page and create an account independently without administrator involvement. After completing the registration process, the user receives access credentials and can authenticate as a portal user. Once logged in, the user can work with the records, applications, requests, and other portal functionality that has been made available to their portal role.

Please note that self-registration requires initial configuration, including:

  • Setting up a dedicated portal system user.
  • Configuring portal user licensing.
  • Configuring registration and password recovery notifications.
  • Optionally customizing the registration and password recovery email templates.

Detailed setup instructions are available in the following Academy article:

https://academy.creatio.com/docs/8.x/creatio-apps/products/more-apps/po…

Show all comments