how do i make it so that anything under 250m requires 2 approvals from 2 different roles? all i got so far are these

should i use the stages case? or should i use the business rules? 

here's how i want to make it, 

if the limit amount recommendation is 250mil or higher then it requires the approval from 3 different roles to pass, if it is 50mil-250mil it requires the approval of 2 different roles to pass, and if it is under 50mil it requires the approval of only 1 role to pass,

 

can anyone provide me with a way to implement this into creatio, with images if possible or detailed instructions

 

i am using creatio version 8.2.2

Like 1

Like

2 comments
Best reply

Hello.


A more reliable and flexible solution for your task would be to implement a business process that triggers upon the creation or modification of a record. This process can check the value of the "Limit Amount" field, and if it meets or exceeds the specified threshold, initiate an Approval workflow using the "Approval" process element.
 

The Approval element provides extensive functionality:

  • It allows you to define one or multiple approvers (users, roles, or dynamically set participants).
  • You can customize the approval conditions and logic, including escalation or repeated approvals.
  • The process can branch based on the outcome (approved/rejected), enabling you to build comprehensive approval flows.
     

You can learn more about the capabilities of this element in the Academy article:  Approval process element – Creatio Academy.

This approach ensures greater flexibility, maintainability, and future-proofing for your use case.

Best regards.
Antonii.

Hello.


A more reliable and flexible solution for your task would be to implement a business process that triggers upon the creation or modification of a record. This process can check the value of the "Limit Amount" field, and if it meets or exceeds the specified threshold, initiate an Approval workflow using the "Approval" process element.
 

The Approval element provides extensive functionality:

  • It allows you to define one or multiple approvers (users, roles, or dynamically set participants).
  • You can customize the approval conditions and logic, including escalation or repeated approvals.
  • The process can branch based on the outcome (approved/rejected), enabling you to build comprehensive approval flows.
     

You can learn more about the capabilities of this element in the Academy article:  Approval process element – Creatio Academy.

This approach ensures greater flexibility, maintainability, and future-proofing for your use case.

Best regards.
Antonii.

Antonii Viazovskyi,

thank you, i'll try and implement this method, i thought that this method could only be done through business rules, i hadn't even considered business process

 

Show all comments

Hi community,

Is there any Low-Code possibilty to navigate directlty to Form Page of the created record?

Chain of events

1 - Mini Page is opened and data is entered

2- Mini Page Save evend is performed

3- After the record is created we navigate directly to the created record Form Page

 

Basically we need the symetric operation of this articel but for FreedomUI

https://customerfx.com/article/automatically-navigating-to-the-new-record-created-by-an-add-mini-page-in-creatio/

 

If there is no-code possibility, can you provide a code snippet how to achieve  it?

Sasor

Like 0

Like

1 comments
Best reply

For a no code approach - there really isn't an exact match, the closest possibility is the action "Continue in other page" which will open it in the default page for the entity type (assuming the mini page is set up as the "Add" page). However, that doesn't actually save the record first (just validates it).

For a code approach, you'd need to add a save request handler see here, then use: 

const saveResult = await next.handle(request);
if (saveRequest) {
	// navigate here
}
return saveRequest;

The navigate here part would use this and open the record in edit mode. 

Also, it likely would not be a good idea to do this in the base page for all mini pages, since dialogs can be used for different purposes, not like how it was for mini pages in classic (although I suppose you could check if the current mini page is in add mode).

Ryan 

For a no code approach - there really isn't an exact match, the closest possibility is the action "Continue in other page" which will open it in the default page for the entity type (assuming the mini page is set up as the "Add" page). However, that doesn't actually save the record first (just validates it).

For a code approach, you'd need to add a save request handler see here, then use: 

const saveResult = await next.handle(request);
if (saveRequest) {
	// navigate here
}
return saveRequest;

The navigate here part would use this and open the record in edit mode. 

Also, it likely would not be a good idea to do this in the base page for all mini pages, since dialogs can be used for different purposes, not like how it was for mini pages in classic (although I suppose you could check if the current mini page is in add mode).

Ryan 

Show all comments

Hello community

I am encountering an issue when using the Clio utility to create a custom Angular module. When attempting to configure the workspace, I am facing errors, and I would appreciate your assistance in resolving them.

The errors I receive are as follows:

 

When running the command clio dconf -e dev-env:

[WAR] - Downloading of cor libraries requires cliogate version 2.0.0.0 or higher.

 

When running the command clio restorew -e dev-env:

[ERR] - To use this command, you need to install the cliogate package version 2.0.0.0 or higher.

However, when I run the command clio ver, the output shows:

 

clio:   8.0.1.21

[INF] - gate:   2.0.0.29

dotnet:   8.0.14

 

My connection to dev-env is stable, and I can see the list of packages

It appears that I have the correct version of the cliogate package installed (2.0.0.29), but I am still facing issues. 

Has anyone encountered a similar situation?

What could be causing this behavior in Clio?

Are there perhaps some configuration nuances that I'm missing?

Unfortunately, I haven’t been able to find any solutions or descriptions of similar errors online. Thank you in advance for any ideas or recommendations!

Like 0

Like

4 comments
Best reply

The command "clio ver" shows the version of the Clio command line itself. The error is mentioning the version of cliogate, which is a package installed on the Creatio system. 

To check the version of cliogate, use: 

clio ver --gate -e dev-env

To install or update the cliogate on the system, use: 

clio install-gate -e dev-env

Ryan

The command "clio ver" shows the version of the Clio command line itself. The error is mentioning the version of cliogate, which is a package installed on the Creatio system. 

To check the version of cliogate, use: 

clio ver --gate -e dev-env

To install or update the cliogate on the system, use: 

clio install-gate -e dev-env

Ryan

Sorry, missed that you mentioned the version of cliogate is up to date already. I've not experienced that issue. 

It seems there might be an issue with the connection between a clio and your dev. Try installing the gate again:

clio install-gate some_application_name

And then restart the dev:
clio restart some_application_name

 

This message only appears when dev-env does not have cliogate package installed,m  you can validate it with  `clio packages -f cliogate`. 

You should see something like this. If nothing comes back, then you need to reinstall cliogate. 

Use `clio gate -e dev-env` to reinstall cliogate

Show all comments

Hi community!

 

I'm importing a file with Leads and needing to assign them to a user. Is there a way for seeking a user by email, not by full name? Because we have a lot of contacts with the same name in the database.

Like 0

Like

2 comments

Hi,

Yes, it is possible to perform the mapping this way. You need to map the Email field from excel file to the Owner.Email field, which means you need to "drill down" into the column of the object referenced by the Owner column.
 

Here’s a guide on how to achieve this:





I hope this helps!

 

Pavlo Sokil,

Thanks a lot!

Show all comments

I have two attachment pages, but when I attach a file on the first page, it also appears on the second page. How can I implement a filter so that the attachment only shows on the page where it was uploaded? i'm using FreedomUI.

 

Like 0

Like

2 comments
Best reply

You can use tags. The File objects have a Tag field, you can set up each file list to have a different tag, then the tag will get added to the file based on which list the file was added to, and the lists will also filter by this tag.

To do this, you simply need to enter a tag name for each of the file lists, just type in a value in the File tag property: 

Ryan

You can use tags. The File objects have a Tag field, you can set up each file list to have a different tag, then the tag will get added to the file based on which list the file was added to, and the lists will also filter by this tag.

To do this, you simply need to enter a tag name for each of the file lists, just type in a value in the File tag property: 

Ryan

Ryan Farley,

Thank you Ryan

Show all comments

Building a new set of application and need to create 50 tables -- 
1. 20 of them are going to hold permanent records

2. 30 of them are going to hold just transient data just enough to show in the screen (by API calls data will be retrieved -- Creatio does not have easy way to show API data without storing)

Have the DDLs -- so how we can create these in Creatio one shot  instead of going through one by one 

 

Thanks and Regards

Sarang

Like 0

Like

1 comments

Hello, 

Thank you for your question. Currently, unfortunately, there is no built-in functionality to create multiple tables at once.

However, if you are working with a large number of tables, an alternative approach could be using Development tools or Data Import via scripts/API, depending on your requirements.

Show all comments

Hi, is this possible to have scroll bar appear for a Multi-Line Notes field where the multiple lines of content do not fit into the available display window.

Like 0

Like

2 comments

Hello,

Unfortunately, with basic tools, its impossible to add the scroll bar to the notes field.

 

However, a task has already been registered in our R&D team to consider and implement such a feature in future releases.

 

Thank you!

Valeriia Hromova,

Thanks Valeriia.

Show all comments

Hi ,

I have created new fields in section wizard,however when I tried to change the field code from Usr to my initials.It wouldn't allow me to do it .As,I  don't have system designer section or prefix for schema section where I can change it.I was wondering if there is any workaround to do it.Also,this is studio enterprise demo account.I would appreciate if some one can help me out on this asap.

Like 0

Like

1 comments

The prefix is stored in a system setting. Search in system settings for prefix. 

Show all comments

How to automatically create an OAuth 2 integrated application record during the installation process of the marketplace app which we are developing. 

After creating this entry, how do we read the generated client id and secret from this record in a business process? Help with code is appreciated. Thanks.

Like 0

Like

2 comments

Even if you execute SQL script during the the marketplace app package installation that will perform the direct INSERT into OAuthClientApp you won't be able to call

 

/0/rest/AdministrationService/UpdateOrCreateTechnicalUser - to create a technical user for this OAuth application if needed

 

/0/rest/OAuthConfigService/GetClientSecret - to generate the client secret for the created OAuth app

 

So this part can be specified in the manuall on how to work with the marketplace app so that users could create the OAuth application on their own and then specify it as a value of the custom system setting (of a lookup type referencing the "OAuth client application" object). The system setting can be bound as data to the package and it will be created in the app to which the package is installed. Then you can use this system setting to get the ID of the record in the OAuthClientApp entity and then read client Id and secret using either server ESQ or SelectQuery class or simple read data element.

Thanks for the reply Oleg!

Show all comments

Hello Community,

 

I would like to switch tabs based on a user action using code in a handler. Is it possible to write code that opens a custom tab on the same page, as shown in the figure below?

 

On button click, I have implemented below code in the handler, but it is not working.

{
        request: "crt.OpenTab",
        handler: async (request) => {
            request.$context.set("SelectedTab", "CustomTab");
            request.$context.set("ActiveTab", "CustomTab");
            request.$context.profile.set("Tabs_SelectedTabIndex_Profile", 2);
        return true;
     }

}

 

Best regards,

Ajay Kuthe

 

 

Like 2

Like

4 comments
Best reply

The attribute you need to set is the [TabControlName]_SelectrdTabIndex_Profile. If you tab control is named "TabPanel_fb0xrup", then the attribute you would set would be:

// select first tab
request.$context.TabPanel_fb0xrup_SelectedTabIndex_Profile = 0;

Note, the indexes are zero based.

Ryan

The attribute you need to set is the [TabControlName]_SelectrdTabIndex_Profile. If you tab control is named "TabPanel_fb0xrup", then the attribute you would set would be:

// select first tab
request.$context.TabPanel_fb0xrup_SelectedTabIndex_Profile = 0;

Note, the indexes are zero based.

Ryan

Also, to clarify, there is no "set" method in Freedom UI pages like there was in classic pages. You will just set and read values from the attributes directly as normal variables.

Ryan Farley,

Yes, it works fine.

 

However, how can I get the index of a particular tab using the Element code in the context? #FreedomUI

 

Ajay,

I am not sure there's a way to get the index at runtime, if there is I've not seen anything yet, but it's possible it's buried somewhere in the $context.

Show all comments