Hello community,

 

Can portal users import files?

 

In operation permissions, in 'CanImportFromExcel' where we define the users who can import files, it is possible to add the organizational role 'all portal users,' but users still can't import.

 

 

Is it possible for them to import files?

 

Thank you!

 

Best regards,

Andreia

Like 0

Like

2 comments

Hello,



According to the application logic, the portal user cannot import data. Because the portal functionality is limited, and import is available only for administrators by default.



We will register an idea for our developers to consider the possibility of importing for portal users. Currently, this can only be done by internal users.

Malika,

Thank you, Malika, for the reply.

Show all comments

Hi Everyone,

 

I am using a pre-configured page in my process. But it is not showing. When I start the process with the Start signal along with the save record, it doesn't appear but when I use the button to run the process, it appears. How can I make the page appear with a Start Signal? Thanks!

Like 0

Like

4 comments

Hi Hassan!

 

We recommend checking the configuration of the start signal. If the page appears when you manually start the process, then it is likely that the start signal for record creating wasn't configured correctly.

Please check if the process starts, you can check it in the System designer -> Process log. If the process didn't start, check the start signal configuration and make sure that the record created match the conditions.

 

You can get more information about start signal for creating a record on Academy: https://academy.creatio.com/docs/8.x/no-code-customization/bpm_tools/pr…

 

If you have checked the settings and still need help, please contact our support team for further analysis.

 

Best regards,

Alina

Alina Yakovlieva,

Hi Anna,

 

The process does start and it is in process. When I go to Logs, I can see the process at the Mini page stage. From there I can inspect the mini page and complete the process by clicking on the button.

Hassan Tariq,

In this case, please check the setting of the "Who performs the task?", maybe the page shows to another user. 

 

Also, you can check more information about the Pre-configured page set up on Academy: https://academy.creatio.com/docs/8.x/no-code-customization/bpm_tools/pr…

On the signal, make sure that "Run following elements in the background" is not checked.

Ryan

Show all comments

CAN ANY HELP ME ON Triggering a Client-Side Event When a Field is Changed on a Page in Creatio in Freedom UI?

Like 0

Like

4 comments

I have an article showing how to do this here: 

https://customerfx.com/article/responding-to-an-event-when-a-field-is-c…

Ryan

@Ryan I have to call a method inside field is changed .I have  used this approach but I am getting issue in this. Can you please help how we can call a function inside field value

 handler: async (request, next) => {

        if (request.attributeName === "BooleanAttribute_ddmdb1n") {

              await cfx.fieldChecked(); // 

        }

        return next?.handle(request);

    }

},

            {

                request: "cfx.fieldChecked",               

                handler: async (request, next) => {

                    const okBtn = {

                        key: "OK",

                        config: {

                            color: "primary",

                            caption: "YES"

                        }

                    };

                    const cancelBtn = {

                        key: "CANCEL",

                        config: {

                            color: "default",

                            caption: "Cancel"

                        }

                    };

                    const result = await request.$context.executeRequest({

                        type: "crt.ShowDialogRequest",

                        $context: request.$context,

                        dialogConfig: {

                            data: {

                                message: "Are you sure you would like to proceed? It will wipe out all the information!!!!",

                                actions: [cancelBtn, okBtn]

                            }

                        }

                    });

                    if (result === "OK") {

          request.$context.StringAttribute_uo3a61k = "";

                    }

You cannot put methods inside a Freedom UI page. Either move the code from cfx.fieldChecked into the change request handler, or you can move it to a module

Ryan

okay got it .Thank you for help

Show all comments

Hi,

 

We have a object for Sets in our Main Application. We are thinking of having a Mini page when we are saving a new record in our set object. So when a user adds a new entry to our Sets record page then when he is going to save it, there should be a pop-up to decide which entries they want to add and then when he selects them, then all data should be added to the record. How should I do this? I can make a process for adding a mini page?

Like 0

Like

2 comments

Bump

Hello!

 

Please note that this can be realized through 2 options:

- via business processes

- via development 



Unfortunately, we cannot provide you with specific recommendations on your question at this time, as such a scenario has not been studied and we have no examples of such a realization.

Show all comments

Hi Everyone,

 

We have the following business process in which we check if there are any previous Orders at the same time or even within 11 hours. If yes, then it will assign the Shift as double, if not then it will assign it as a single shift. However, there are 2 issues we are having.

 

  1. When there is an order at 12:00-13:00 and another order at 13:00-14:00 then technically it should be assigned as a double shift. But our current process still assigns a single shift.
  2. We need to add more checks to the previous order. For example: If the same team is assigned to the same location, then it should still be a single set. How can I do that? 

Kindly see the images for the process. Thanks! 

Like 0

Like

2 comments

Bump

Hello,

I suggest you check if the filtering conditions are being met.

  1. Try building the same filter in the Orders object and check if such records exist, and if there are more than 2 records. (We noticed that you have Finish Date < Start Date; we are not familiar with the logic of your object, but we recommend verifying the correctness of this filter.) Reference: How to work with data

  2. Enable process tracing to check the values returned by the process elements: Reference: Trace process

Regarding the second issue, you need to add more filters so that the records found in the Read Data element meet the required condition.



If you encounter further difficulties in configuring the process, please contact our support team at support@creatio.com.



Best regards,

Pavlo!

Show all comments

Can anyone knows HOW TO ADD POP CONFIRMATION MESSAGE for selecting Yes or No in Freedom UI

Like 0

Like

2 comments

Is it possible to change the colours/colour progression used for subsequent sections of a donut chart widget? We currently want to define that one value of a boolean on a lookup should be displayed in green, and the other red, but a generalised way of doing this would be very helpful for future reference - e.g. to specify the set and order of colours used in some way. We're currently on 8.1.0.6820 Any help would be greatly appreciated!

Like 1

Like

1 comments

Hello,



Unfortunately, at the moment it is impossible to customize colors in charts. However, a task has already been registered in our R&D team to add the option to customize colors in charts, in future releases. In case you would like to check  what stage this task is at, I am sending you the task number: PR-6359.

Show all comments

Can anyone tell how I can Navigate to a Page by clicking on button in Freedom UI  by using (customcode)

Like 0

Like

3 comments

You can do that with no code using the actions: 

  • Open new record (to open a page in add mode)
  • Open existing record (to open a page in edit mode)
  • Open specific page (to choose a specific page. This could be a section list page, or a specific page for a record if a record has multiple pages defined for it)

If you want to do this in code, these articles will help: 

Ryan

Thank you @Ryan for answering my question ,Do you have exact example where we are Navigating to Page by clicking on button.

Hello,

 

Please note that this can be set up without custom code using basic functionality of Freedom UI components. You can find the instructions on it in this Academy article. And here are the instructions for the Classic UI.

Show all comments

Hi I would like to export my custom package with all elements in it to deploy to another instance of Creatio. How can I tell if the package I have has all the elements of my custom application.

Like 0

Like

2 comments

Hi Waseem

 

First, create a new package and all the dependencies from custom to this new package.

Then move all schema elements from Custom to the new package.

Compile and make sure everything works as expected.

At this point, you should have everything in the package except for Data values from lookups.

Identify the missing data binding and add them to the new package.

Install the new package in a new Creatio instance, and test it.

Add/Update databinding if you miss anything in the new instance.

 

Hope this helps!

 

Thank you

Mohamed

Show all comments

Hi,



Quick question, does the new feature to be released in 8.1.1 "Attachment search. You can now search for attachments in the Freedom UI component by name using global search. Creatio indexes attachment names automatically." also search in email attachements (when someone annexes an excel or word, etc..)



Thanks,



Damien

Like 1

Like

1 comments
Best reply



Hello,

 

It's important to note that activities are not indexed in the global search. Consequently, searching for such attachments won't be possible in the global search.

 

The issue stems from the fact that even if you enable the option in the section wizard, indexation will not work for the "Activities" section.

 

The complexity arises because activities encompass more than just tasks visible in the section; they also include emails and calls. The Global Search mechanism is currently unable to process these entities given the application's configuration.

 

I've already communicated your request to our Research and Development team. They have a task to address this issue in a future application release.

 

Thank you for reaching out.



Hello,

 

It's important to note that activities are not indexed in the global search. Consequently, searching for such attachments won't be possible in the global search.

 

The issue stems from the fact that even if you enable the option in the section wizard, indexation will not work for the "Activities" section.

 

The complexity arises because activities encompass more than just tasks visible in the section; they also include emails and calls. The Global Search mechanism is currently unable to process these entities given the application's configuration.

 

I've already communicated your request to our Research and Development team. They have a task to address this issue in a future application release.

 

Thank you for reaching out.

Show all comments