Время создания
Filters

Hi Team,

When we are doing the transferring of packages and trying to bind data for all the lookups. There are some lookups having parent child relationship so, binding the lookups we are getting the following error. 

This lookup has parent child relationship

Is there any way to bind lookup data for parent child relationship.

 

Platform: Creatio Energy (Freedom UI)

Like 1

Like

1 comments

For dependent lookups, typically you'll need to bind them in order. First, bind the parent lookup values, then bind the child lookup values that reference the parent.

Ryan

Show all comments

Hi, we have performance issues after upgrading to 7.18.5
When users act in the system, a lot of queries of the type are generated:

SELECT
[SubjectSchemaUId],
[CanRead],
[CanAppend],
[CanEdit],
[CanDelete]
FROM
[dbo].[SysEntitySchemaOperationRight] WITH(NOLOCK)
WHERE
EXISTS (
SELECT
1
FROM
[dbo].[SysAdminUnitInRole] WITH(NOLOCK)
WHERE
[SysAdminUnitInRole].[SysAdminUnitId] = @P1
AND [SysAdminUnitInRole].[SysAdminUnitRoleId] = [SysEntitySchemaOperationRight].[SysAdminUnitId])
AND [SysEntitySchemaOperationRight].[Position] = (
SELECT
MIN([Position])
FROM
[dbo].[SysEntitySchemaOperationRight] [MinRightPosition] WITH(NOLOCK)
WHERE
EXISTS (
SELECT
1
FROM
[dbo].[SysAdminUnitInRole] WITH(NOLOCK)
WHERE
[SysAdminUnitInRole].[SysAdminUnitId] = @P2
AND [SysAdminUnitInRole].[SysAdminUnitRoleId] = [MinRightPosition].[SysAdminUnitId])
AND [MinRightPosition].[SubjectSchemaUId] = [SysEntitySchemaOperationRight].[SubjectSchemaUId])
ORDER BY
[SysEntitySchemaOperationRight].[ModifiedOn] DESC


A similar problem occurred during the update last time, when we updated to the system version 7.17.2.
Then they gave us additional dlls and told us to add the key key="UseOptimizedSchemaOperationRightLevelSelect" value="true"
Do you have a solution for the problem for version 7.18.5?

Like 0

Like

0 comments
Show all comments

Hello community,

I have developed the form page "A" that uses the default Crt.MinLength validator.

I have created a replacement form for form page "A", is it possible to override the inherited Crt.MinLength validator rule?
I need to change the length parameter.

Like 0

Like

0 comments
Show all comments

Hello,

I have configured the DCM to change states after executing the steps of a process. According to my observations, the state does change, but it does not do so automatically (I have to manually refresh the page to see this change). When I check the process logs, I can see that the process changes to a canceled state. I am not sure what else to review apart from the process, as everything seems to be fine.

Additionally, I am including reference images of the process and the process logs to help illustrate the issue.

 

 

Any suggestions on what might be causing this issue?

Thank you!

 

Like 0

Like

1 comments

Hello, 

This is the standard (OOTB) behavior of Cases.
If you change the stage of a record that initiated a business process — whether from within the business process itself, its subprocesses, or the record — all tasks, processes (including subprocesses), open pages, etc., will be canceled.

More detailed information can be found here:
Case Designer workflows

If the issue is more complex, please create a support request by emailing support@creatio.com.

Regards,
Orkhan

Show all comments

While configuring OAuth authentication to call external web services, I cannot find a way to set grant_type=client_credentials. Is there a way to make configuration use client_credentials instead of authorization_code grant_type?

I also tried to configure a web service to directly call the IdP access token endpoint passing the grant_type I need, but I was not able to find a way to send the body content-type in application/x-www-form-urlencoded format.

Do you have any suggestions to get the OAuth token using client_credentials?

Like 1

Like

0 comments
Show all comments