I have a detail "OrderProductDetailV2" (editable registry), in which I added my totals to "summaryItemsContainer". When changing a record in the detail, quantity, price, etc., I need to update my signatures, since the standard ones are updated (number of records, total amount). I've read many articles. I've figured out how the standard modules work. Everything is clear. I've tried different options through messages, with "onDataChanged" I get a cycle, in another option my signatures are updated, but the standard ones stop updating. Can anyone help?

Like 0

Like

0 comments
Show all comments

I want to add contact object and the dropdown values should be the contact object column value. suppose I have a column name full name. its value i don't want as my lookup value. i want the full name column as my lookup value. is it possbile automatically?

Like 1

Like

1 comments

Hello,

 

The search field in the lookup column displays the object parameter — displayedColumnValue, which is usually the name column.
You can change this column to any other object field, but it will apply to the entire system — meaning this column will act as a link to the record. It will be used in filters and during selection. I suggest setting up quick filters and adding the contact value link there.

Show all comments

Hi, 

I have some hard times trying to iterate an array of object and insert/display the values one by one on this object detail named Product in Receive

 

and here is a chunk of the code:

var splitResult = decodedText
          .split("*")
          .filter((item) => item.trim() !== "");
        var doNumber = splitResult[0];
        var prodDataObj = [];
        var slocCode = doNumber.split("/")[1];
 
        for (let i = 1; i < splitResult.length; i++) {
          var prodDataSplit = splitResult[i].split("/");
          var productName = "";
          var materialcode = prodDataSplit[1] || "";
 
          if (materialcode) {
            productName = await new Promise((resolve) => {
              Terrasoft.productByMaterialCode(materialcode, (productData) => {
                if (productData && productData.Name) {
                  resolve(productData?.Name || "");
                }
              });
            });
          }
          prodDataObj.push({
            Line: prodDataSplit[0] || 0, //line number
            MaterialCode: prodDataSplit[1] || "", //mat code
            ProductName: productName,
            Quantity: prodDataSplit[2] || 0, //quantity
            UoM: prodDataSplit[3] || "", //uom
          });
        }
prodDataObj.forEach((data) => {
          const newRecord = Ext.create("Terrasoft.BaseModel", {
            modelName: "UsrEntity_93626c0",
          });
 
          newRecord.set("UsrSKUName", data.ProductName, true);
          newRecord.set("UsrQty", data.Quantity, true);
 
          Terrasoft.getUom(data.UoM, (record) => {
            newRecord.set("UsrUoM", record, true);
          });
 
          newRecord.save({
            isCancelable: false, 
            success: function (savedRecord) {
 
              const pageController = Terrasoft.PageNavigator.getLastPageController();
              pageController.refreshDirtyData();
            },
            failure: function (error) {
              console.error("Failed to create record:", error);
            },
          });
        });

i tried to iterate using forEach but when i use newRecord.save, some weird error appears, this is one of them: 

Error in Success callbackId: TSQueryExecutorPlugin1965367711 : TypeError: Cannot read properties of undefined (reading 'rule')

 

I would greatly appreciate any assistance or guidance in resolving this issue.
Thank you.

 

Like 0

Like

0 comments
Show all comments

I'm trying to set a text field (to use as a title of sorts) that includes a Date type field.

 

When setting this field, the Date comes through with both the Date and Time.

Is there a no-code way to prevent the Time from also coming through in the text field when it is being set?

 

Thanks!

Like 0

Like

2 comments
Best reply

Are you setting this in a process? If so, you can set it using .ToShortDateString() as follows: 

[#The date col or value here #].ToShortDateString()

Ryan

Are you setting this in a process? If so, you can set it using .ToShortDateString() as follows: 

[#The date col or value here #].ToShortDateString()

Ryan

Hi Ryan

 

This is exactly what I was hoping for.

 

Thanks for the help!

 

Raymond

Show all comments

Hello,

 

how is it possible to get Columns selection page for the object in Freedom UI? We need to get list of selected columns and save it for further usage



 

Kind regards,

Vladimir

Like 2

Like

2 comments

Hello,

 

Could you please describe your request in more detail so we could better understand your business need?

Mira Dmitruk,

We want to make configurable export tool. That's why we want to select columns for export

 

Kind regards,

Vladimir

Show all comments

Hello support,

 

The dashboard on my mobile is showed with classic UI on some 8.2 creatio instance and in other instance is showed with freedom UI

 

Could you help me to understand what is the problem?

 

Freedom mobile UI

Classic mobile UI

Like 2

Like

0 comments
Show all comments

Hello Everyone, 

Is there Steps how to Configure emails like xyz@outlook.com. This email is personal email and does not belong to any organization but want to connect it in Creatio. I did revied the guides but there is nothing related this "@outlook.com". 
i have already Create the app pasword but still not Configuring. Please find attach some of the Screenshots.

Like 0

Like

1 comments

Hi,
 

The issue is that Outlook no longer supports Basic authorization.
 

For more details, please refer to:
Deprecation of Basic Authentication in Exchange Online.
 

Therefore, without using the Azure portal, it is not possible to add an Outlook mailbox using a password or app password.
 

It is necessary to register an OAuth 2.0 application as outlined in this article:
Set Up OAuth Authentication for MS Office 365.
 

Thank you for reaching out!
 

Best regards,
Pavlo

Show all comments

Like 0

Like

0 comments
Show all comments

Hi Community,
I can't log in through Supervisor after deploying the stand.What to do in this case

Like 0

Like

4 comments
Best reply

First, you're sure you're using the correct password for Supervisor? If you need to reset the password for Supervisor, you can use the following SQL which will reset it back to "Supervisor" (upper case S)

update "SysAdminUnit" set "UserPassword" = 'JSDCg18tavKu1PPRqdP6t.AgqDORMm2cT7oDjw66hML64avIF/Qa2'
where "Name" = 'Supervisor'

Second, it could be that it is failing due to other reasons, for example, using HTTPS but the local Creatio is only configured for HTTP. If that is the case, see the Academy docs here: https://academy.creatio.com/docs/8.x/setup-and-administration/on-site-deployment/application-server-on-windows/switch-creatio-website-from-http-to-https

Lastly, if neither of those are the issue, also look in dev tools console and network tabs to see if it gives any clues about the issue.

Ryan

First, you're sure you're using the correct password for Supervisor? If you need to reset the password for Supervisor, you can use the following SQL which will reset it back to "Supervisor" (upper case S)

update "SysAdminUnit" set "UserPassword" = 'JSDCg18tavKu1PPRqdP6t.AgqDORMm2cT7oDjw66hML64avIF/Qa2'
where "Name" = 'Supervisor'

Second, it could be that it is failing due to other reasons, for example, using HTTPS but the local Creatio is only configured for HTTP. If that is the case, see the Academy docs here: https://academy.creatio.com/docs/8.x/setup-and-administration/on-site-deployment/application-server-on-windows/switch-creatio-website-from-http-to-https

Lastly, if neither of those are the issue, also look in dev tools console and network tabs to see if it gives any clues about the issue.

Ryan

Also, if your instance is Cloud, you must ask to support to reset it

 

Regards

Julio

Ryan Farley, Thank you

 

Show all comments

Hi community,

 

We have just received question from client if they can create email template in Creatio for Marketing purposes and if they can lock/secure the content of the email with password or design it in the way that it can't be forwarded. 

 

They are interested in simple solution. Thank you in advance.

Like 0

Like

2 comments

Hello,
 

Unfortunately, no OOTB functionality allows locking or securing the content of an email. However, we suggest the following alternatives that could address your requirements:
 

Dynamic Content Rules:
You can configure dynamic content rules within Email Designer. These rules allow you to define conditions for displaying specific blocks of content to different recipient segments. While this does not directly secure the content, it provides controlled visibility based on set criteria.
 

Link with Validation:
Another option is to send a link within the email that redirects recipients to a secure content page. You can add a password validation mechanism on that page to restrict access to the content.
 

Additionally, we have created a task for our R&D team to evaluate this functionality and consider adding a feature for securing email content in future releases. Your request to prioritize this task has been linked to this task.

Best regards,
Antonii.

Hi Antonii,

 

Thank you for the answer and providing possible alternative solutions.

 

Best regards,

Jelena

Show all comments