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

Hi community,

 

I'm trying to activate a business rule - manadatory field - from a page parameter but I'm not able to do it.

 

I have a "Service" object to enable the system administrator to do some parametrization, in this example it has a boolean "Is Type of Cut Input?"

 

When this is set to true in the "Product Development" object if I create a "product development" of with a Service that has the "Is Type of Cut Input?" then the type of cut should be mandatory.

 

I've passed the "Is Type of Cut Input?" as a parameter into the page:

but then, when I build the business rule, it is not applied on the page:

 

Am I missing something? is there a way yo get this to work without code?

 

Thanks

Luis

 

 

Like 0

Like

1 comments

Hello,
 

Please create a separate ticket for the Creatio support team so that we can analyze this issue in more detail and on the environment where this is happening.
According to the screenshots provided, the settings look correct, however, there may be other business rules that are configured for these columns and may block the execution of this rule.
 

Thank you!

Show all comments

Hi community, 

We've come across the system setting ContactLastNumber  (SysSettings_ContactNumeration) in our configuration and would like to understand

where it's applied in our configuration, and whether it's possible to safely deactivate this setting without negative consequences for our system's functionality.

Like 0

Like

2 comments

Hi Igor,

 

this was a very tricky issue. Contract number is generated in the ContractPageV2 in onEntityInitialized method:

 

So, it is not so easy to override this method.

That's why we use following workaround:

 

Kind regards,

Vladimir

Vladimir Sokolov, thank you for the answer

Show all comments

Clio release version 6.1.0.15 allows you to save package states from your Creatio environment to the manifest file. You can use the following command to save settings to a file. 

clio save-manifest "C:\GitOps\production-manifest.yaml" -e production

 

Clio stores packages' Names and hash, which are based on ModifiedOn, Checksum, and Names of relative Schemas. For example

Also in the manifest file, Clio store feature states and addresses 

And web services addresses

If the manifest file does not exist, this command will create it. if the file already exists, Clio rewrites it. This behavior was created to organize the flow to store and monitor changes using Git.

 

 

0 comments
Show all comments

Hello,

 

Is anyone aware of a direct integration to Azure AD for OU and User setup? Or is it on the product roadmap?

 

The current LDAP solution will not work.

Like 0

Like

1 comments

Hello,

As for now, there is no such functionality. We have already registered the idea for our R&D team to implement this functionality in further releases.
We will assign your case to this project to increase its priority.

Thank you for choosing Creatio!

Show all comments

Hello community,

I'm interested in utilizing the Script element within Creatio. Where can I find reference materials or code samples for C#?

 

Additionally, is there a platform available to compile C# code snippets before directly uploading them to the Creatio Platform (in the Script Task Element)?

Like 0

Like

6 comments

Hello,

 

All available examples of using the code in the script task element can be found here. As for checking the C# code - there is no such platform for business processes script tasks. You can create a code in Visual Studio and check if it works. Then, using the provided article, implement the same functionality in the business process script task.

Is it also possible to create your Standard source code and call those from a script task?  Similar to Process to calculate actual working time in projects on schedule?  

Oleg Drobina,

Thanks for your response. Is it feasible to import Terrasoft packages into Visual Studio? If yes, could you provide the steps to do so ?

keith schmitt,

 

as in OOP you can create an instance of a class and use its methods in the logic of a business process. Use Terrasoft.Configuration in the business process (add it to the process usings in the process settings) and create an instance of your class as SomeClass nameOfTheInstance = new SomeClass().

Ajay,

 

You can enable development in the file system as described here and there won't be a need to manually import packages in the Visual Studio. You will be able to review the code and apply changes to it.

Oleg Drobina,

Is there any video reference available?

Show all comments