Business Process
#BusinessProcess
FreedomUI
Freedom_UI
Studio_Creatio_free_edition

Hello.

I have a freedom UI FormPage, which may be opened from Business process (Open edit page element). I want to override Cancel button handler in such way that to cancel current business process. I need to know process id (SysProcessLog table) or process element id (SysProcessElementLog table). How...MoreLess

Like 0

Like

2 comments

Hello!

To find information, you can read the data from SysProcessData, more information which contains the interrelationship between the process...MoreLess

Show all comments (1)
Run Process
Business Process
Sales_Creatio
8.0

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

2 comments
Best reply

Greetings,
 

Unfortunately, we do not have this functionality at the moment. We have registered this request for our R&D team to ensure...MoreLess

Show all comments (1)
toast
Business Process
Studio_Creatio_enterprise_edition
8.0

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...MoreLess
Show all comments (2)
Button
Business Process
custom button
Sales_Creatio_team_edition
8.0

Hi,

I have created a button in ActivitySectionV2.
This button appears on all entries in this section.

But when you click on this button, nothing happens.
Please let me know how to fix the error.

Code:

define("ActivitySectionV2", ["ProcessModuleUtilities"], function (ProcessModuleUtilities) {
  return...

MoreLess

Like 0

Like

1 comments

Hello,
If you want to add a button to an action menu for the active row, the regular approach will result in the error you received.
Here you...MoreLess

Show all comments
Business Process
webservice
8.1
Sales_Creatio_enterprise_edition
8.0

In a Business Process, we are calling a Web Service using the Web Service Call element, but sometimes we will get a failure that we need to log to a custom table for action later. We really could do with as much information about the failure as possible, including being able to log out the parameters...MoreLess

Like 2

Like

2 comments

Hi Harvey, we have similar needs, but no result, unfortunately. 

So, we log all parameters manualy before calling web service :(

Show all comments (1)
Business Process
formulas
string text field
Sales_Creatio_enterprise_edition
8.0

I have a string field that is being populated in this format, "myfielddata-data". I need to parse the data after the "-" to use in a business process.

Like 0

Like

1 comments

Hello Justin,

string myString="myfielddata-data";

int indexRetrieved=myString.LastIndexOf("-");

string result= myString.SubString(indexRetrieved)...MoreLess

Show all comments
Business Process
Sales_Creatio
8.0

Hi! Is it possible to handle exception in a process? For example if there is an error on "delete something" step occur we proceed to next step without stoping all process.

Like 0

Like

3 comments
Best reply

Dear Andrii,

Unfortunately, we cannot handle exceptions with standard tools in actual versions of applications. Thank you for bringing this...MoreLess

Show all comments (2)
field
Business Process
odata4
update
Sales_Creatio_enterprise_edition
8.0

Hi Community,

We have a simple string field in one of our Creatio instances that is not being updated (tested with a Supervisor user).

Field is NOT being updated in the following scenarios

1- Frontend: When we save the record page.

2- Application Layer : The field is not being update from Bussines Processes...MoreLess

Like 0

Like

1 comments

Hello!

This means that there can be logic at the event layer level that changes the value of this field when saving a record. It can be...MoreLess

Show all comments
Business Process
Add Data
modify data
API
Sales_Creatio
8.0

I have a subprocess that loops the returned records from an API call and adds a new record in a data object. I want to modify the process to check if the record already exists and if so, modify the existing record with the data changes.

Like 0

Like

1 comments

First read the record using whatever Identifier you have on it from the source data. If the record exists the Id value will be a Guid and i...MoreLess

Show all comments
Business Process
cancelling
Studio_Creatio_enterprise_edition
8.0

Hi colleagues,

Is there any way to stop the process when processing multiple records, in this case the service returns more than 16000 elements/records and I want just process the first 20 or 30, I tried to use all of this process properties to stop it, without results:

  • Number of completed instances
  • Number of terminated instances
  • Total number of instances

Any Idea, in the image goes to 95 completed, I want to stop at 20, but no idea how to do...

Thanks in advance, 

Julio Falcón

Like 1

Like

2 comments

Hello, some ideas, please?

Show all comments (1)