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

For a customer, we have a custom object <strong>UsrCandidate</strong> which is initially populated from an external system.
At that point, we already know the candidate’s full name and email address.

We want to send the candidate an email with a Marketing Landing Page link, where they can complete additional information (via a web form).

Our challenge is the following:

  • When the candidate submits the landing page, Creatio creates a new <strong>UsrCandidate</strong> record
  • We want the submission to update the existing <strong>UsrCandidate</strong> record instead, so that there is only one record per candidate

Is there a supported way to:

  • Pass the existing Candidate record ID (or another identifier) into the landing page (e.g. via URL parameters), and
  • Configure the landing page so that it updates the existing record instead of creating a new one?

If possible, we would prefer a Creatio-native approach (Marketing landing pages, matching logic, hidden fields, etc.), rather than post-submission merging via a business process.

Any guidance or best practices would be much appreciated.

Thanks in advance!

Like 20

Like

0 comments
Show all comments

Hello. As part of our reporting, we include Comments and Emails that our agents include in Contact and Lead records. For example, if an agent notes in the Feed that they stopped by a client's home and spoke to them, we want to count that as a touchpoint/activity. 

Currently in the activity dashboard we can easily calculate the OOB activity such as calls, appointments, tasks, but we cannot connect to the comments and emails directly for the dashboard. 

Is there a way to do so without a developer stepping in? 

Thanks very much, Susan

PS We are still in Classic UI on v 8.3.1.4498

Like 0

Like

0 comments
Show all comments
Sales_Creatio
8.0

Hi,

I am wanting to send an email as part of an automated process, where a quote is provided. The quote data will come from the Opportunity and the Products within that, but the issue I need to solve is; how can I create an email which will allow multiple dynamic rows to be included in the email body.

Say I have 5 products in the opportunity, I need those 5 products to be displayed in a table form. Is this possible? If not, could I automatically create a printable, which I can then attach as an attachment to the email? Note - I am using the cloud version, which may impact things.

Thanks for any help!

Mark

Like 0

Like

1 comments

One approach is to create your own HTML table in the process by looping through the records. A sample of that approach is outlined here: https://customerfx.com/article/emailing-a-list-of-multiple-records-from-a-process-in-creatio/

Alternatively, you could create it as a printable, which can have tables of related data, and attach that to the email (using Process File element in a process to generate the printable to attach to the email)

Ryan

Show all comments
Configured_the_Forgot_Password_/_Password_Recovery_functionality_in_Creatio
but__still_not_receiving_the_password_recovery_email.
Service_Creatio
8.0

I have configured the Forgot Password / Password Recovery functionality in Creatio, but still not receiving the password recovery email.

I have Password recovery for users is enabled

  • Registration and password recovery mailbox (SSPRegistrationMailbox) is configured and active
  • SMTP settings are complete and test email works
  • Website URL system setting is configured
  • Password recovery email template is active
  • User is active and has a valid email address

After clicking Forgot password, the confirmation message is shown, but no email is received.

Could you please suggest additional settings, logs, or backend checks required to troubleshoot this issue?

Thank you.

Like 0

Like

1 comments

Hello,

First, please check the Audit log section for any entries related to password recovery attempts. This may help identify whether the request is being registered correctly and whether any delivery errors are recorded.

If the Audit log does not provide enough details, we also recommend reviewing the application logs on the server side. Please look for any errors or exceptions related to password recovery and email dispatch, for example: PasswordRecovery, SSPRegistrationMailbox, PortalRecoveryPasswordEmailTemplate, SMTP, or SysEmail.

Additionally, please ensure once again that the “Mailbox for registration and password recovery” (SSPRegistrationMailbox) system setting points to the correct authorized mailbox, as described in the official documentation:
https://academy.creatio.com/docs/8.x/setup-and-administration/administr…

Finally, it may be useful to check the Email messages section to confirm whether the recovery email is being generated and what status it receives (Sent, Pending, or Error).

Show all comments
We_have_a_custom_text_field_Display_Quote_Number_on_the_Quotation_object_that_should_show_QuoteNumber-Version_(e.g.
QN-00045-V2)._A_business_process_is_triggered_on_Quote_modified
reads_Quote_Number_and_Version
and_updates_the_field_via_Modify_Data_with_conditions_(Quote_Number_is_filled_in
Version_>_0)._The_process_executes_successfully
but_the_field_either_remains_blank_or_shows_partial/incorrect_values_(e.g.
-V0)
even_after_refresh._Formula_functions_like_AND
string
ISNULL_are_not_supported
and_delays_do_not_resolve_the_issue._Looking_for_a_supported
reliable_pattern_in_Freedom_UI_to_populate_and_display_a_concatenated_text_field_without_custom_code.
Studio_Creatio
8.0

We have a custom text field Display Quote Number on the Quotation object that should show QuoteNumber-Version (e.g., QN-00045-V2).
A business process is triggered on Quote modified, reads Quote Number and Version, and updates the field via Modify Data with conditions (Quote Number is filled in, Version > 0).
The process executes successfully, but the field either remains blank or shows partial/incorrect values (e.g., -V0), even after refresh.
Formula functions like AND, STRING, ISNULL are not supported, and delays do not resolve the issue.
Looking for a supported, reliable pattern in Freedom UI to populate and display a concatenated text field without custom code.

Like 0

Like

1 comments

Hello,

In Freedom UI there is no out-of-the-box "calculated/formula text field" on the page that would concatenate multiple columns into a single string. The built-in formula capabilities in business rules are intended for calculating dates and numeric values, not composing formatted text.

For this scenario, the supported approach is to store the composed value in a dedicated text column on the Quotation object (e.g., UsrQuoteDisplayNumber) and populate it either via a business process (as you attempted), or via custom logic (client/UI handler) if you need the value to be calculated and displayed immediately without waiting for a save/refresh.

Given your requirements, we recommend continuing with the business process that performs the concatenation and writes it to the Quotation record (Modify data). To address why the value didn’t appear on the form, please verify was the value actually saved to the record? (Confirm in the DB / in the record after reopening). If it was saved, it should appear after a page refresh / reopening the record. Is the page field bound to the same object column you update in the process? (i.e., the UI control must be mapped to UsrQuoteDisplayNumber from the page’s data source). 

If you need the value to appear immediately on an already-open page after the process updates the record, enable "Enable live data update" for the Quotation object so the UI can receive server-side updates without manual refresh.

Creatio Academy reference (object setting): https://academy.creatio.com/docs/8.x/dev/development-on-creatio-platform/development-tools/creatio-ide/configuration-elements/object#title-2314-1

Best regards.

Show all comments