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

0 comments
Show all comments

Hi,

 

I would like to set up a few notifications:

First one - when the below workflow is changed that a notification is sent:Second one - when feed's are updated that a notification is sent

 

What is the best way to approach this?

Like 1

Like

1 comments

Hello!

You can configure business processes to listen for changes on the specified objects:
1. The first process will listen for changes in the object's stage.
2. The second process will check if a message has been added to the related feed channel ((determining the necessary ID code of the feed object).

You can create the notification using the following parameters:

Show all comments

Hi, 

 

Please help, I need to notify final user some task he trigger is working.

 

For example, on a page, a user clicks on a button to do something, the button executes a process and I want to inform the client that it is processing what the process does.... 

 

Some ideas?

 

Thanks in advance

 

Kind regards

Julio

Like 0

Like

3 comments
Best reply

I do this often and it works great. You'd need to:

  1. Send a message from the process to the front end. See https://customerfx.com/article/how-to-refresh-a-page-from-a-process-in-…
  2. Have some code somewhere that listens for the message. See https://customerfx.com/article/receiving-server-side-messages-in-a-crea…
  3. Then display the toast message. See https://customerfx.com/article/displaying-toast-message-popups-from-cre…

 

I've typically done this by making a generic process I can use as a subprocess. It sends the message to the client. Then I make a generic script loaded from MainShell or MainHeaderSchema that listens for the message and displays the toast. It makes it simple and generic to use and works on any page.

 

Ryan

I do this often and it works great. You'd need to:

  1. Send a message from the process to the front end. See https://customerfx.com/article/how-to-refresh-a-page-from-a-process-in-…
  2. Have some code somewhere that listens for the message. See https://customerfx.com/article/receiving-server-side-messages-in-a-crea…
  3. Then display the toast message. See https://customerfx.com/article/displaying-toast-message-popups-from-cre…

 

I've typically done this by making a generic process I can use as a subprocess. It sends the message to the client. Then I make a generic script loaded from MainShell or MainHeaderSchema that listens for the message and displays the toast. It makes it simple and generic to use and works on any page.

 

Ryan

Ryan Farley,

 

How do you go about creating a generic script that loads in the MainShell or MainHeaderSchema in Freedom UI? It hasn't seemed to work when I've tried it.

Harvey Adcock,

You need to add a feature to enable creating replacing schemas for angular modules such as MainShell. See this thread: https://community.creatio.com/questions/how-create-replacing-schema-freedom-ui-basepagetemplate

Ryan

Show all comments

Hello,

 

is it possible to configure Homepage (in Freedom UI style) on Portal instead of "Portal Main page" (Dashboard in Classic UI style)

 

Thank you!

Vladimir

Like 0

Like

1 comments
Best reply

Yes. The selection of the homepage is hidden for portal workspaces but you can still add it manually to the SysWorkplace record. Create a Freedom UI homepage, then you'll have to update the SysWorkplace for the portal to add the HomePageUId of the dashboard page.

Ryan

Yes. The selection of the homepage is hidden for portal workspaces but you can still add it manually to the SysWorkplace record. Create a Freedom UI homepage, then you'll have to update the SysWorkplace for the portal to add the HomePageUId of the dashboard page.

Ryan

Show all comments

Dear colleagues

 

Hi all, I wanted to know if anyone knows of a way to have a "drawable" field in the mobile app, so I can get the "drawn" signature of the customer in the app.

 

Thanks in advance

 

Best regards

Julio Falcón

Like 1

Like

3 comments

Hello!

The idea to implement e-signature as basic functionality in further releases is already registered for our R&D team. We will add your case to it's backlog so to increase it's priority.
As f​​​​or now, this issue has already been discussed in another post, this may help you:

https://community.creatio.com/questions/capture-signature-mobile-applic…
 

Thank you for contacting the Creatio technical support team. 

Anton Starikov,

Thanks Anton, I'm Already see this post, but it's not clear to me the solution, not too much detail where to introduce the code and so in..

Show all comments

Hello, 

is there a way to get the product selection grid in Freedom UI mode, please ? 
The current way of selecting products in order is much more tedious when you need lot of products.

Regards

Patrice

Like 1

Like

1 comments

I guess the answer is no.
ProductSelectionSchema massively use the sandbox, which is not available in freedom UI.

I played a bit with BroadcastChannel to handle communication between pages but it seems to be a difficult way to do it.

 

Any suggestion ?

 

Regards

Patrice

Show all comments

Hi,

 

Is there an option to replace the default fields titled 'Select results' and 'Enter detailed results' in the activities calendar, which is located in the 'complete activity' mini form? 

I'd like to replace these fields with ones I've created, which are available in the full-page form.

Like 2

Like

4 comments

+1

Hello,

Unfortunately, it is not possible to change this popup window using the basic application tools, at this point. This can only be done through a specific development process. The code of the page on the ActivityMiniPage of the UIv2 package: 

The development team already considering the possibility of changing this window with basic tools in future versions of the system.

Malika,

Yes please, the more we have nocode possibilities on a nocode platform, the better ;)

Malika,

Thank you so much for your reply. That would be great if I could modify this popup's fields easier. :)

Show all comments

Hi there,

I'd like to add a custom filter to the activities calendar:

There are two filters needed - "+1 day" and "-1 day". My filters should calculate the selected day plus or minus 1 day.

The question is how to add that and where can I find the logic of the current filters listed above?

Like 1

Like

3 comments

It's also missing the basic : 

Previous Year
Current Year
Next Year



Especially that we have these options in advanced filters 🤨

Just need to make this filter customizable. We could set a name and formulas for start and end dates

Vladimir Sokolov,

Could you provide a code snippet? Honestly, I'm not sure how to start the code. I think it should be created in the same file as the current filters, but I'm unable to find them...

 

Show all comments

Hi Comunity,

 

I am wondering if there is any way to make a detail inactive/non-editable in the mobile application,

 

Thank you :)

Like 0

Like

1 comments

Hello!

This issue has already been discussed in another post, you can find it here:
https://community.creatio.com/questions/how-make-fields-read-only-mobile-application-0
 

That should help, have a nice day. 

Regards,
Anton

Show all comments

Hi everyone,

in the OLD UI I used to create a separate module that stored all the constant values used in the code of the pages, such as a specific AccountTypeId or a SysAdminUnitId. I also used to add this module in the edit pages to access those values.

Now I need to do the same thing in the Freedom UI and I haven't figured out how to do it yet. I tried using the same approach by adding the Module in the SCHEMA DEPS and ARGS of the page definition, but I can't access the properties of the custom module.

Can anyone help me?
Let me know.

Thanks in advance.

BR,

 

Luca

Like 0

Like

1 comments
Best reply

I did additional tests and found that referencing the module in the SCHEMA DEPS and ARGS is correct, even though while debugging it's not possible to see the page constants "clearly". However, using "await" allows you to access to those values.

For example, like this:

var customerType = await UsrTestConfigurationEnum.AccountTypes.Customer;

I did additional tests and found that referencing the module in the SCHEMA DEPS and ARGS is correct, even though while debugging it's not possible to see the page constants "clearly". However, using "await" allows you to access to those values.

For example, like this:

var customerType = await UsrTestConfigurationEnum.AccountTypes.Customer;
Show all comments