Hi;

I try to find out which processes in productuction environment has checkes tracing enabled.

I found IsTracing record in sysSchemaProperty but it has value False but in GUI checkbox is set.

is there any easy way to find tracing processes



Regards

Tomek Branicki

Like 0

Like

2 comments

Hello,

You can filter the Trace enabled processes you need in the Process Library. Example below:





Best regards,

Malika 

 

Malika,

Tkanks Malika

Show all comments

Is it possible to add an Account section in the same workplace. So there will be 2 Account sections in 1 workplace.

Like 0

Like

3 comments
Best reply

Hello,

 

In order to add the same section to a workplace you ned to run the following script in the database, since it's not possible to do so from a Workplace setup:

 

insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")

values ('_inser_ID_here_', '_inser_ID_here_')

 

So you need to find the ID of the needed section in the SysModuleId table + an ID of the workplace where you want to put add it in the SysWorkplaceId table.

 

It should look like this once you paste the needed IDs (please note that this is only an example):

 

insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")

values ('f4cd2a9b-1312-4d26-9205-c09e8ba56218', '005063c9-8180-e011-afbc-00155d04320c')

 

We would like to warn you, that though it is possible to add the same section to a workplace, we do not recommend doing so as this behavior wasn't tested and may result in unexpected issues. Also, we highly recommend testing it on a dev/test environment first to make sure it works as you need it.

 

Kind regards,

Mira

Hello,

 

In order to add the same section to a workplace you ned to run the following script in the database, since it's not possible to do so from a Workplace setup:

 

insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")

values ('_inser_ID_here_', '_inser_ID_here_')

 

So you need to find the ID of the needed section in the SysModuleId table + an ID of the workplace where you want to put add it in the SysWorkplaceId table.

 

It should look like this once you paste the needed IDs (please note that this is only an example):

 

insert into "SysModuleInWorkplace" ("SysWorkplaceId", "SysModuleId")

values ('f4cd2a9b-1312-4d26-9205-c09e8ba56218', '005063c9-8180-e011-afbc-00155d04320c')

 

We would like to warn you, that though it is possible to add the same section to a workplace, we do not recommend doing so as this behavior wasn't tested and may result in unexpected issues. Also, we highly recommend testing it on a dev/test environment first to make sure it works as you need it.

 

Kind regards,

Mira

Mira Dmitruk,

Thank you. It works..

I have already put the same section in 1 Workpalce. So there will be 2 section in 1 Workplace. Next question is, can we change on of section Account to another name?

Ahmad Bagus Ariyanto,

 

Please note that it is not possible to change the name only for one of them since this is the same object shown twice and if you change the name of one of them, the other one will change too.

 

Kind regards,

Mira 

 

Show all comments

Hi,

I have installed the BPM'online word plugin and the tab appears in word application, but on connect the printable appears empty and the printable items don't appear, also any fake data in username and pwd are accepted 

Like 0

Like

1 comments

Hello Ali, 

 

Please contact us at support@creatio.com with a detailed description of the issue, as we'll need more details and what is more important access to your instance where the issue occurs in order to proceed with investigation and provide you with a solution. 

 

We'll be waiting for your email. 

Thank you in advance!



Best regards,

Anastasiia

Show all comments
Question

Hello,

 

is there a way such as operation permission to prevent user from editing his profile such as change password?

 

Thanks,

Like 0

Like

1 comments

Hello Ayman,

 

Unfortunately, there is no out-of-the-box functionality to restrict users from changing their own passwords.

This task can only be achieved by the means of development.

 

Thank you,

Artem.

Show all comments

Hello, 

 

we are not able to compile the application after installing our package to a new dev environment, however it is working well on other dev environments.

 

knowing that, we tried to generate all items and got hte following error :Error

Unable to generate source codes for the following schemas:

 

then compile all items and got the following error : Error

Dependency 'StProcess3ST_Package4' of package 'ST_Package' was not found. Search path: C:\CRM\Dev\Terrasoft.WebApp\Terrasoft.Configuration\Autogenerated\Src\StProcess3ST_Package4.ST_Package_Entity.cs

Like 0

Like

1 comments

Hello!

 

Please, execute the UpdateWorkspaceSolution operation and try to perform the compilation once again.

More detailed information about the parameters of the WorkspaceConsole utility can be found in the Deployment - WorkspaceConsole parameters Academy article. 

 

Best regards, 

Olga.

Show all comments

Im trying to localize a Button on a grid but it is not working out. Ive tried the following:



{

                    "operation": "insert",

                    "name": "DataGridActiveRowSomeButton",

                    "parentName": "DataGrid",

                    "propertyName": "activeRowActions",

                    "values": {

                        "className": "Terrasoft.Button",

                        "style": Terrasoft.controls.ButtonEnums.style.GREEN,

                        "tag": "someButton",

                        "caption": {"bindTo":"Resources.Strings.DetailsCaption"},

                    }

                },



Notes:

-The DetailsCaption is added in the localizable strings

-The logic works on any other button which is not within the Grid

-When binding the button it is not appearing but when setting caption to "caption":"Details" it is appearing

-Im working on version 12

Like 0

Like

2 comments
Best reply

Hello Mohammad, 

 

Please, try to set up the title for the button by using the code:

"caption": resources.localizableStrings.DetailsCaption

 

Let us know in case any additional information is required. 

 

Best regards,

Olga. 

Hello Mohammad, 

 

Please, try to set up the title for the button by using the code:

"caption": resources.localizableStrings.DetailsCaption

 

Let us know in case any additional information is required. 

 

Best regards,

Olga. 

Olga Avis,

Thank you so much. It worked perfectly

Show all comments