Hi community,

I designed a process like following Images in dev site. In Send Email element, I checked "Ignore errors on sending". But Creatio threw error end terminate this process. What is wrong with this? 

Thanks

Like 0

Like

1 comments

Error

 

 

 

 

 

 

 

 

Show all comments

Dear,

 

I m trying to send to a source code object a guid converted to string format

I allready do this in an other process with the orderId using: 

var orderId = Get("OrderId").ToString();

 

 

When i save and compile my process, i get no error, but when i start the process, i get the following error:

 

My AccountAddressId parameter is an Id:

 

And i set it with the Read Primary Account Address First collection element:

 

 

What wrong m i doing ?

 

Thank you

Nicolas

Like 0

Like

2 comments

Hello Nicolas,

 

The very same process in my local app didn't return the error. Are you sure that the issue is in the accountId parameter, but not in the two other parameters? 

Oleg Drobina,

if i comment the line with the accountAddressId parameter, the process doesn't return me any error, so the problem seems coming from this line.

Show all comments

Hello everyone,

In our invitation e-mail, we have set the font color to "black" and the background to "light blue".
If the invitation is now opened in Outlook with Office Design "black", the font is automatically changed to "white".

However, the font color should still remain "black".


Can anyone help me with this problem?

 

 

Like 0

Like

4 comments

Hello, 

Does this issue occur only when the  Outlook Office Design is  "black"?

I have the Outlook Office Design color "dark grey". There is no problem with the font color here.

 

Only the Office Design color "black" and "Apply system settings" are changed.

Franziska Tiefengraber,


Possibly,hen O wutlook's "Black" Office Design is applied, it prioritizes high contrast between text and background for better readability. Since your background is "light blue," the default behavior is automatically changing the font color to "white" for optimal contrast.


Please try the following solution: 
Disable Automatic Color Adjustment:

  • In Outlook, go to File > Options.
  • Click on the General tab.
  • Under Personalize your copy of Microsoft Office, select the Office Theme as desired (e.g., Colorful, White).
  • Crucially, check the box next to "Never change the message background color."
  • Click OK.
     

This setting prevents Outlook from automatically adjusting the font color based on the background, ensuring your black font remains.

Thank you very much for your help!

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, all!

 

Could anyone clarify, do user's access rights depend on the order in which organizational roles are added on the detail of the user's form? I mean is it important if I add organizational roles for one user in the order

Role1

Role2

Role 3

and for another user in the order 

Role 2

Role 1

Role 3

 

And give them the same functional role (only one)?

 

I'm asking because now those two users can see different amount of the records of the same object and the only difference in their rights is that order.

Like 0

Like

1 comments

Hello!

 

Please note that order of organizational roles in the details does not affect anything. So do not pay attention to it.

In case users see different amount of the records, please recheck object permissions and make sure that they are granted for both users.

Show all comments

Inside the Contact object, I need to show data from a related object: New Custom object.

How can I show this related data on the "Additionnal information" custom tab?

Like 0

Like

4 comments

This was not yet resolved
 

Hello,

 

You can add an Expansion Panel. Link

 

After that, add a List component by specifying the necessary object in the 'Object' field in the settings. Link.

 

All information about configuring in Freedom UI is available here.

 

Hello Anastasia, I followed your steps but when I run the Client 360 page to see the result, the new tab does not appear.

How can the IDeas ID = Contact ID? It does not make sense , but it seems like the only choice available...

Show all comments

I created new App "NewIdeas"

I am putting a business rule based on a "Status" criteria in place but it will not work correctly: In all cases , the Tab "Completion" remains hidden.

Tab hidden rules (see below)

 

 

 

Tab show rules (see below)

Like 0

Like

5 comments
Best reply

Issue was resolved by chaging the logic to: Equal to Other statuses, Save, Save, exit - Login and restart the app.
Solution to Show/Hide problem

Hello,

 

We see that you have already created a case regarding this issue directly for our support team and we will process the request in that case.

Good!

Where is the boundary between official Support ticket and the end-user community?

Issue was resolved by chaging the logic to: Equal to Other statuses, Save, Save, exit - Login and restart the app.
Solution to Show/Hide problem

This issue is resolved.

Show all comments

Hi, I tried to make a grid caption in two lines, first I added a
tag to the title of the header

 

 

but the second line was hidden somewhere behind the table elements.
Then I added my own CSS (a copy of InnerListedGridHtmlGeneratorCSS.css)

added padding-bottom: 60px to the fixed-captions-wrap class and it made it two-line, but
now it overlaps the first lines of the list.

 


Can you advise me on how to fix this or any other way to make the labels span two lines?

 

 

.fixed-captions-wrap-width(@scrollWidth) {
    .fixed-captions-wrap {
        width: calc(~"100% - @{scrollWidth}");
    }
}
.grid.grid-listed.inner {
    @fixed-header-height: 37px;
    padding-top: @fixed-header-height;
    .listed-grid-line:not(:last-child) {
        border-bottom: 1px solid #e5e5e5;
    }
    .fixed-captions-wrap .grid-captions {
        box-shadow: 0 1px 1.9px 0.1px rgba(0, 0, 0, 0.28);
    }
    .listed-grid-line {
        display: flex;
    }
    .grid-listed-row {
        margin: 0;
        padding-top: 6px;
        padding-bottom: 6px;
    }
    .fixed-captions-wrap {
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        height: @fixed-header-height;
        overflow: visible;
        background-color: white;
        width: 100%;
        padding-bottom: 60px;
    }
    .grid-captions.fixed-header {
        position: absolute;
        padding-top: 9px;
        padding-bottom: 5px;
        font-size: 13px;
    }
    label {
        font-size: 1em;
    }
    .grid-scroll {
        overflow: auto;
    }
    .grid-bottom-spinner-space {
        position: relative;
    }
}
Like 0

Like

1 comments

Hello Andrii,

 

Basic capabilities don't allow the column to multiline properly. Yes, the <br> tag can be added, but this will make the title overlap the top border of the detail that is between the records and column titles. The only possible way is to play with CSS, but unfortunately we don't have any specific example for it.

Show all comments

Hi Everyone,

We have a table in our application that stores the assigned employees for different projects. And we want to create a report for them. We have created a report but when we download it, it downloads the files of each employee separately. But we want them all in a single file which we can then send to other employees as well. Is there anything wrong that we are doing?

Like 1

Like

1 comments

Hello, 

Unfortunately, we do not have the ability to generate a report for all records, since the template is configured for individual records. 

  

But as a workaround, you can implement the following: 

  

1. Create a new object, for example “Report”. 

2. Add a lookup column to the “Employee” object, which is sent to this “Report” table; for convenience, let’s call it “Report Column”. 

3. Create a record in the “Report” object. 

4. Set for all Employee in the “Report Column” column the value of this entry from point “3”. 

5. Thus, all Employee are sent to this entry, you can set this entry to the default value so that entries are always sent to this entry. 

6. Create a report on the “Report” object and add the “Employee” table to it, where the relationship will be: 

Report.Id = Employee.ReportId. 

7. For this table, create the filtering we need and configure the report template. 

  

As a result of what we did, we created an object and a record, the details of which will display ALL Employee in the system. 

  

Thus, when making a report, all Employee that fall under the required filtering set in the settings of the tabular part of the report will be displayed in the report. 

  

Or as another workaround, you can export the detail to Excel and attach a table to the report, but this approach requires manual editing of the printed form. 
 
But we understand that this solution is not ideal for your needs, and we want to inform you that we already have a registered idea for the development of this functionality. This functionality will be implemented in future versions of Creatio. 

Show all comments

Hello Everyone,

 

I'm currently exploring security options within creatio, to secure the process with Password. Specifically, My goal is to restrict access to certain process by requiring user to enter password before any modifications.

 

Could anyone share insights or best practice to implement password protection for Process in Creatio? Are there any built-in features or recommended approces to achieve this?

 

Your guidance would be greatly appreciated. Thank You!

Like 0

Like

2 comments
Best reply

Greetings,
 

Unfortunately, we do not have this functionality at the moment. We have registered this request for our R&D team to ensure that the developers consider this request and implement it in future updates.


Thank you for helping us make the product better!

Greetings,
 

Unfortunately, we do not have this functionality at the moment. We have registered this request for our R&D team to ensure that the developers consider this request and implement it in future updates.


Thank you for helping us make the product better!

Orkhan,

Thank you for your kind reply.

Show all comments