Hello,

 

I am looking for an Outlook connector that actually works. We have tried all the partner options and they're below satisfactory. I believe that SalesForce has an option that used to be called Lightening that everyone raves about. 

 

I'm wondering if Creatio will make this a priority in their new UI or perhaps have a mobile/tablet app that actually works making this type of product obsolete. At this point I will take either. 

Like 0

Like

1 comments

Hi Megan! How are you? Did you try our latest version of the connector: https://marketplace.creatio.com/app/outlook-connector-creatio? In case you have tried it, it would be very helpful if you share your feedback with us.  I suggest organizing a demo and being able to show you the capabilities of the connector. We also have a Gmail connector and we are working on a new version for Outlook Web.

Thank you!

Show all comments

I created a custom section in Freedom UI. Now I need to create a page in classic UI for this section (I want to use an add-on that doesn't work in Freedom pages). How can I do this?

Like 0

Like

4 comments

Hello Paulina,



You can create a section based on an existing object:

 

Please find more infromation here.

Bogdan,

 

Unfortunately, a section for this object already exists (as I mentioned, it was created in Freedom UI and cannot be created once again in Section Wizard) 

Paulina Ściegienna,

 

Sorry, but there is no such functionality for now.

 

We've registered it in our R&D team backlog for consideration and implementation in future application releases.

 

Thank you for helping us to improve our product. 

Paulina Ściegienna,

You need to completely delete the section made in Freedom UI to create a section in Classic UI. It's a bit risky due to the high probability of mistakes. But it can be made by SQL scripts only. It's unlikely that any major advancements to the Classic UI will happen from now on.

 

Also, could you please share why you need Classic UI section? What limitation in Freedom UI has caused this?

Show all comments

We're looking to use the new Autonumber field feature on Leads to replace an existing custom field that we created to do a similar thing before this feature was available. We want the autonumber to start not at 0000001, but at where the other number left off (which now is 1026579). Hoping there's a setting somewhere I can make this change to utilize this feature. 

Like 1

Like

3 comments
Best reply

Lena Smetnenko,

 

While there is no yet interface that would allow the user to configure this manually, the following steps need to be performed.

Instructions:

  1. Determine the UId of the auto-numbered column.
  2. Using the script, set a new number for the column. In the examples, "4a40180c-61bf-de86-2f08-b05852a5ea6d" is the UId of the auto-numbered column, and "1" is the next value from which the auto-numbering will start.

MSSQL script:

ALTER SEQUENCE [4a40180c-61bf-de86-2f08-b05852a5ea6d] RESTART WITH 1;

 

PostgreSQL script: SELECT setval('4a40180c-61bf-de86-2f08-b05852a5ea6d', 1, false);

 

 

Hello Andriana!

 

In order to reach the goal, you need to find a system setting with the code "CaseLastNumber" and set its default value to the prefered one from which the autonumber shall start.

Kyrylo Iudin,

Hi Kyrylo, what about when we have created a new section in Freedom UI designer and used autonumbering feature there? What system setting is used for that? 

Lena Smetnenko,

 

While there is no yet interface that would allow the user to configure this manually, the following steps need to be performed.

Instructions:

  1. Determine the UId of the auto-numbered column.
  2. Using the script, set a new number for the column. In the examples, "4a40180c-61bf-de86-2f08-b05852a5ea6d" is the UId of the auto-numbered column, and "1" is the next value from which the auto-numbering will start.

MSSQL script:

ALTER SEQUENCE [4a40180c-61bf-de86-2f08-b05852a5ea6d] RESTART WITH 1;

 

PostgreSQL script: SELECT setval('4a40180c-61bf-de86-2f08-b05852a5ea6d', 1, false);

 

 

Show all comments

I have tried to add a business rule in app, when the page is in "freedom UI" mode it does not work, but when i uncheck the freedom UI it works.

Same when adding actions to mobile!

Like 0

Like

2 comments

FreedomUI mobile for now supports business rules for the object job can set it with a business rule designer. Page business rules for mobile FreedomUI can set up only in metadata mode.

Web pages are Classic or Freedom UI? Business rules for object work only if you use Freedom UI in mobile and web versions (if web version pages are classic and only mobile is Freedom it doesn't work).

Show all comments

I want to show column with cdde "UsrCapacite_camion" when field with code "UsrSegmentClient"=Distribution .

This is my code :

and here is my manifest:

Like 0

Like

6 comments

Hello,

 

It seems that the UsrSegmentClient column is a lookup and you need to use an actual Id here, not display value of the lookup (in the value: 'Distribution' part specify an actual Id of the record instead of the 'Distribution' value). That's why the rule doesn't do anything.

Oleg Drobina,

Hello,

Nothing changed unfortunately

!

 

developer,

 

Hello,

 

Indeed, tested the same locally and it didn't work. I've discussed this with our R&D team and in FreedomUI old approach with mobile app business rules won't work anymore, only in old UI. They also have a task to make it possible to develop business rules in Freedom UI using standard wizard in mobile app and they've prioritized this task.

Oleg Drobina,

Hi,



I read in 8.0.8 release, that 'Creatio mobile app now supports the operation of object-level business rules both online and offline.'



But as I've tried to use Object-level business rules, they works in web app, and don't work in mobile app (in both online and offline mode)



What then was mentioned in release note?



Kind regards,

Vladimir

Hi,



Any updates about business rules in mobile application using freedom ui ? as the business rules work only on old UI what approach to follow ?



Thank you in advance for your time and help,

Malek Sghaier,

 

If these are general business rules, it is better to configure them at the object level. In both mobile and web applications, these rules complement each other. Please find more information here

 

Business rules for the page itself can only be configured through metadata development.

 

 

 

 

Show all comments

This is my Tab in Account section, i have been trying to delete "Service" and "Sales"8 tabs but they don't appear in section wizard. 

here is my account tab :

here is in section wizard: 

Like 0

Like

2 comments

That usually means your package doesn’t have a dependency on the packages that add those tabs. Check which dependencies your package has. Adding dependencies to the sales and service package will likely make them show up. 

Ryan

Ryan Farley,

it worked thank you 

 

Show all comments

Hi community,

I have an AutoGeneratedPage element in a Business Process. I want to access its corresponding schema in order to do some frontend validadations.

Does the AutoGeneratedPage has its own schema ? 

Best regards,

Sasori

Like 1

Like

2 comments
Best reply

Hello,

It didn't have its own schema, the whole point of this element is that it generates during a run-time. 

If you want to customize a similar page try using pre-configured. 

Hello,

It didn't have its own schema, the whole point of this element is that it generates during a run-time. 

If you want to customize a similar page try using pre-configured. 

Thank you Dmytro for the clarification! Thats what i did.

Show all comments

Hello,

I have implemented a filter for a section using the getFilters  method which works fine on the Section page, but should not apply to the dashboard page. Is there a way to have the filter apply only to the Section grid but still leave the dashboard unfiltered?

Like 0

Like

1 comments

Not sure if this will work, but you could maybe try checking in the getFilters method which view the user is on, and if it's the dashboard view then don't apply the filter? Never tried this so not sure if it's too late at that point (or if it retrieves the data again when switching views or not)

To check if user is viewing dashboard view:

if (this.getActiveViewName() === "AnalyticsDataView") {
    // user is on dashboard view
}

I think you can override changeDataView to force it to reapply the filter (and retrieve data again). Something like this: 

changeDataView: function() {
    this.callParent(arguments);
    if (this.getActiveViewName() === "AnalyticsDataView") {
        this.sandbox.publish("ReloadDashboard", null, [this.sandbox.id + "SectionDashboardDashboardModule"]);
    }
    else {
        this.updateSection();
    }
}

Ryan

Show all comments

Hey,

I've been searching, but I can't seem to find the function I want to override, it's the function that creates the "Run Process" button on the section page.

 

I want to disable it to users who aren't the Supervisor.

I've done something similar with the getViewOptions function so that only the Supervisor could change the column layout of the different sections.

 

Any help in finding the function I need to override would be appreciated!

 

Thanks in advance! 😁

Like 0

Like

3 comments
Best reply

Hi Edo,

I've not tested this yet, but wanted to mention for you to try. That button does have an attribute that controls its visibility. The attribute is "IsProcessButtonVisible". The attribute, and populating of the menu items is done in the mixin "ProcessEntryPointUtilities". You can override the function "fillRunProcessButtonMenu" on BasePageV2 (or which ever specific page you want to do this on). Something like this: 

fillRunProcessButtonMenu: function() {
    if (UserIsSupervisor) {
        // call base function to populate menu and set visible
        this.mixins.ProcessEntryPointUtilities.fillRunProcessButtonMenu.apply(this, arguments);
    }
    else {
        // do nothing except ensure button not visible
        this.set("IsProcessButtonVisible", false);
    }
}

Again, I've not tested that, but I believe it would work.

Ryan

Hi Edo,

I've not tested this yet, but wanted to mention for you to try. That button does have an attribute that controls its visibility. The attribute is "IsProcessButtonVisible". The attribute, and populating of the menu items is done in the mixin "ProcessEntryPointUtilities". You can override the function "fillRunProcessButtonMenu" on BasePageV2 (or which ever specific page you want to do this on). Something like this: 

fillRunProcessButtonMenu: function() {
    if (UserIsSupervisor) {
        // call base function to populate menu and set visible
        this.mixins.ProcessEntryPointUtilities.fillRunProcessButtonMenu.apply(this, arguments);
    }
    else {
        // do nothing except ensure button not visible
        this.set("IsProcessButtonVisible", false);
    }
}

Again, I've not tested that, but I believe it would work.

Ryan

Ryan Farley,

Thank you very much!

This is exactly what I was looking for and is working great 😁

Thanks Ryan.

@Creatio team. 

Couldn't these buttons "Run Process" and the "+" New, be a system setting?

Show all comments

Hello Community,

 

I need to add some libraries with the "using" statement in the "Script Task". The libraries that I want to add are the following ones:

using System;
using System.Collections.Generic;
using Twilio;
using Twilio.Rest.Api.V2010.Account;
using Twilio.Types;

Is there any way of adding them? 

 

Thank you very much!

Like 0

Like

4 comments
Best reply

Click on any white space in the process to get the blue "Process" plane on the side. On the Methods tab you can add usings.

Ryan

Click on any white space in the process to get the blue "Process" plane on the side. On the Methods tab you can add usings.

Ryan

Ryan Farley,

Thank you for the clarification!

 

I have tried but I need to add previously the libraries to the site. Do you know how to add this library to the configuration for calling it later from the script?

You need to add the assembly to your package, there's an option for "Import" on the add menu.

I have tried and it works, thank you very much Ryan!

Show all comments