Время создания
Filters
8.2
Formpage
FreedomUI
client code
Sales_Creatio_enterprise_edition
8.0

Is there any way to mark a field/set of fields as being unchanged on a form page from code? We have some parameter fields which do not link to the page's data source, and have a separate button for managing saving this data (we are on 8.2.0, so cannot use multiple data sources for the same page) but at the moment when saving this data the fields will remain "dirty" and so the regular Save button will be shown & a warning will show if the user tries to navigate away from the page. What we would like is for the custom parameter saving button to clear those fields when it's finished and then mark them as unchanged/non-dirty so that this is avoided.

Like 0

Like

0 comments
Show all comments
Sales_Creatio_enterprise_edition
8.0

Hi,

Context : on the Account page I have:

  • A detail “Buildings” (object: UsrBuilding) linked to Account via the lookup UsrBuildingToAcc.
  • Inside Buildings, there is another detail “Apartments” (object: UsrApartments) linked to Building via the lookup UsrApartmentToBuil .

Need : 

  • I need to generate a printable for the Account that contains the Apartments grouped by Building, similar to what is shown in the screenshot.

    If someone has idea about this issue, please let me know.

Thanks in advance.
 

Like 1

Like

2 comments

Greetings,

Thank you for your question. 

Unfortunately, this is not possible by default. On my side, I have added your case to the task for our development team to increase its priority.

However, perhaps you could find some suitable additions for your business task. For example:

https://marketplace.creatio.com/app/excel-reports-builder-creatio

+1 For more advanced functionalities using printables. Useful to have reports with text (not just Excel). but also for offers, etc... Example being able to add images on your opportunity which are then added to the template offer (construction designs for example). 

Show all comments
UserTask
Business Process
ManagerRole
8.0

First of all, I've already set the Manager User using the Organization Roles Relation Manager, as shown in the image. In the Perform Task business process, it should be assigned to the Manager User. How can I do that?

Like 1

Like

1 comments

Hello,

In Creatio, the “Perform task” process element does not provide an out-of-the-box option to set the assignee dynamically based on a parameter like “manager of the current user / manager of a role relation”. The Assignee field in that element expects either a fixed user/role or a value that is already available in a process parameter.

That said, it is technically possible to implement this logic in the process:

Read the user you are starting from (e.g., the record owner, the current user, or another user stored in a process parameter).

Identify that user’s manager by querying the system tables, then store the manager in a process parameter (e.g., a “Manager user” parameter of type Contact/User).

Use that parameter as the assignee for the “Perform task” element.

To determine the manager based on the “Organization Roles Relation Manager” setup, you’ll need to query the SysAdminUnitInRole table and apply the correct filter:

The manager assignment is stored as a record where Source = 32 (this value indicates the “manager of the role relation” type of linkage).

The query logic should filter by the relevant user/role relationship and then select the corresponding manager user.

Once the manager user is retrieved and stored in a process parameter, you can assign the task to that parameter in the Perform task → Assignee field.

Show all comments
bi
Sales_Creatio
8.0

Hello community,

does anybody know if there is a solution to enable Power BI like functionality for Creatio reports? I mean the similar filtering directly on a report's page, tree-like filters, multichoice, percent calculation and etc. 

 I know about Power BI connector for Creatio, but our users request to have these capabilities directly in Creatio, because they want to analyze live data in real time. 

 

 

 

Like 2

Like

1 comments

+1 - Reporting / Dashboard  upgrade live capabilities (non AI related) above and beyond what could be done with classic UI are more than welcome 

Show all comments
Studio_Creatio
8.0

Organization roles


I already set Manager User in Organizational roles, but how to get that manager in business process? Cases: I want to give Perform Task for that manager based on user as you can see in the image (Nama RM) is user with Relation Manager Role, but I want to give that task to the manager. How to do that? Thanks
Business Process

Like 0

Like

3 comments

Hello,

Currently there is not possibility in the system to read a user's manager using a business process this way. However, we will register this idea for our R&D team so they could review the possibility of implementing such functionality in future releases.

Mira Dmitruk,

Thanks for the answer, are there any other solutions for my case instead of using a business process?

You have to read the sysadminunit object and find the hiearchy there.

It is a bit tricky but something like this should work:

"Nama RM"  will have a role in sysadminunit 

this role will have a management role in sysadminunit 

this management role will have users in sysadminunit 

Show all comments