In Classic UI there was a section at the top of Account and Contact pages where new Activities, Calls, Emails, etc. could be created and automatically connected to the current object.  Where are these tools hidden in Freedom UI??

Like 1

Like

2 comments

Hello,
To enable this section in Freedom UI, go to the Page Designer and add the "Next Steps" component to the page.

Hi John, 

1) Yes these were removed by default in Freedom UI, not sure why, especially on contacts. You need to add the next steps manually. 

2) The automatic linking surprisingly does not exist yet : https://community.creatio.com/questions/bewildered 

Cheers, 

Damien

Show all comments

Hi Creatio Community,

 

I hope you're all doing well. I have question with managing app updates and would appreciate your insights.

 

Scenario: I have developed an app and released version 1.0 on the Creatio Marketplace. Some clients have installed this version and made custom changes to the app. 

Now, I am preparing to release version 1.1 with new features and bug fixes. My concern is that when clients update to version 1.1, their custom changes overwritten or not?

 

1] What are the best practices to ensure client-specific changes are not lost during the update?

 

2] Are there any tools or features within Creatio that can help manage and merge client customizations with new updates?

 

Thank you in advance for your assistance and suggestions.

 

Best Regards,

Ajay Kuthe

Like 3

Like

1 comments

Hi Ajay,

 

Let's look at how the customization process works in general. 

 

When a customer makes any changes to the installed application, your core logic remains unchanged. Instead, the app is extended with a new package where replaced schemas are created, inheriting your core schemas. When you make new changes to the app and customize these core schemas, after delivering a new version to the client, only those core schemas will be updated. The customer's inherited schemas will remain unchanged.

 

Therefore, custom changes will not be overwritten. However, we recommend supporting backward compatibility to avoid breaking custom changes after delivery.
 

If you are going through the update process together with the client, we suggest using the delivery process article to build a safe delivery process.

Show all comments

Hello community, 

I want to test sending an email function in Trial site

Can it possible?

Thanks 

Like 0

Like

4 comments

Hello,

 

It is possible to send the emails from the trial version of the site.

However, you have to set up the app password on the Google side.

 

Detailed information can be found here: https://support.google.com/accounts/answer/185833?hl=en

 

Happy to help!

Hi Hanna Skalko,

According to the two pictures I posted above, I turned off feature 2-Step Verification, then entered my email and password (I went to Google and login Email to confirm that both are corrected). However, Trial reports an incorrect email or password error.

It is not possible, is it?

Đặng Văn Chức,

Many email services no longer allow basic auth ad instead require OAuth. To use gmail in a trial you must:

  1. Turn on 2-step verification
  2. Set up an app password (only allows you to do this if 2-step verification is on)
  3. Use the app password for the password when adding the account to the trial

Ryan

Show all comments

Hi,

I have created a button in ActivitySectionV2.
This button appears on all entries in this section.

But when you click on this button, nothing happens.
Please let me know how to fix the error.

Code:

define("ActivitySectionV2", ["ProcessModuleUtilities"], function (ProcessModuleUtilities) {
  return {
    entitySchemaName: "Activity",
    details: /**SCHEMA_DETAILS*/ {} /**SCHEMA_DETAILS*/,
    diff: /**SCHEMA_DIFF*/ [{
      "operation": "insert",
      "parentName": "DataGrid",
      "propertyName": "activeRowActions",
      "name": "runProcessButtonOpenOpportunity",
      "values": {
        "className": "Terrasoft.Button",
        /*"itemType": Terrasoft.ViewItemType.BUTTON,*/
        "caption": "Відкрити угоду",
       "click": {
          bindTo: "runProcessButtonOpenOpportunity"
        },
        "style": Terrasoft.controls.ButtonEnums.style.GREEN
      }
    }] /**SCHEMA_DIFF*/,
    methods: {
      runProcessButtonOpenOpportunity: function () {
        var activeRowId = this.get("Id");
        var args = {
          sysProcessName: "UsrProcessOpenOpportunityInActivity",
          parameters: {
            OppID: activeRowId
          }
        };
        ProcessModuleUtilities.executeProcess(args);
      }
    },
    rules: {}
  };
});

Error:

Like 0

Like

1 comments

Hello,
If you want to add a button to an action menu for the active row, the regular approach will result in the error you received.
Here you can find an example of how to configure such a button properly.

Show all comments

Hello community,



Is it possible to add several independent DCM case in Opportunity?

Are there alternatives on the marketplace?

Like 1

Like

2 comments

Hi!



Unfortunately, there is no such possibility now. We have registered a request for the development team to consider adding this option in future updates. 



Best regards, 

Anton

Hello!

Unfortunately, there are no approximate timelines for implementing the functionality. 
However, you might be interested to know that we have the functionality to change DCM conditions on the pages.

We would also appreciate it if you could provide more details about the business task you plan to implement.

Show all comments

Hello, community,

 

How to move a user from one role to another by using a business process?

For example, we have 2 branches: branch A and branch B.

The users for Branch A are Alex and Bobby

The users for Branch B are Charlie and Drake

Every month there is a rotation, so Alex will be in Branch B, and Charlie will go to Branch A.

How to do it in the business process?

 

Thank you.

Like 0

Like

1 comments

Hello,

 

 

We have previously discussed a similar task in this post: https://community.creatio.com/questions/create-role-programatically

 

You can simply start by adding a 'delete data' element from the 'user in roles' object and then add an 'add data' element to the same object, filling only the role and user columns.

 

Show all comments

Hello,

 

I want to prevent users from deleting details once the status is not DRAFT anymore.

So, I'm thinking to remove the all of the buttons.

Does anyone know how to do this?

 

Thank you.

Like 1

Like

2 comments

Dear David,

 

This can be achieved by code implementation or by business rule.

 

For the business rule, you can turn on Object permissions for this object. Then the business process will be triggered by changing the record for example, and it will be removing right for editing and deleting this record.

 

Hope this helps.

 

Have a great day!

Dear Alina,

 

I notice about this method. 

Actually, I want to keep this method as a last resort.

 

Thank you for your reply.

 

Show all comments

Hi All, 

Are we able to change this text to our company brand please?

 

Thanks

Like 1

Like

3 comments

Hello,



Unfortunately, in Freedom UI there is no possibility to customize the logo on the loading screen. 



However, a task has already been registered in our R&D team to consider and implement such a feature in future releases. In case you would like to check what stage this task is at, I am sending you the task number: PR-28347. Please don't hesitate to share this number with us at any time and ask your questions.

FREEDOM UI LOGIN LOGO (CURRENTLY CREATIO- Any Article for this issue

Bala Koteswarareddy,


Hello, 

The request to implement this functionality on Freedom UI has been submitted to our Developer Team. 

Regards,
Orkhan

Show all comments

Hi all,

 

We are trying to send an email from a business process, but we notice that we have to set Mailbox first. When we tried to enter the email, we encountered this error.

 

What should we do?

 

Regards,

David.

Like 0

Like

4 comments
Best reply

David Chandra,

 

Please contact support team to get credentials to the repository.

Hi David,

 

If it's a local website you should deploy an Email Listener synchronization service.

Bogdan,

I'm trying to follow your suggestion.

However, I encountered an error when trying to deploy the docker-compose.

 

root@server03:~/downloads/docker-compose# docker-compose up -d

Building with native build. Learn about native build in Compose here: https://docs.docker.com/go/compose-native-build/

Pulling ListenerAPI (registry.creatio.com/emaillistener:1.0.17)...

ERROR: Head "https://registry.creatio.com/v2/emaillistener/manifests/1.0.17": no basic auth credentials

 

It seems that the image cannot be downloaded.

David Chandra,

 

Please contact support team to get credentials to the repository.

Bogdan,

I managed to make the EmailListener work by using docker.

Thank you for your help.

Show all comments

Hello all,

 

Once we log into the Creatio, there is no name of the current user on the page.

I need to show the current user's name at the top of the page.

Does anyone know how to do it?

 

Thank you.

David.

 

Like 0

Like

2 comments
Best reply

Hi David,

 

User name of the current user can be reviewed in the user profile located at the top of the page:

and

If you still need this on the top of the page and the app version you have is greater than 7.18.0 you need to enable AllowCreateAngularSchema system feature for all employees, override MainShell, add container and string field inside it and create a hanler that will read Terrasoft.SysValue.CURRENT_USER.displayValue property and set this value to the string field.

Hi David,

 

User name of the current user can be reviewed in the user profile located at the top of the page:

and

If you still need this on the top of the page and the app version you have is greater than 7.18.0 you need to enable AllowCreateAngularSchema system feature for all employees, override MainShell, add container and string field inside it and create a hanler that will read Terrasoft.SysValue.CURRENT_USER.displayValue property and set this value to the string field.

Oleg Drobina,

Thank you, it works.

Show all comments