Question

Hey!

 

Anyone experienced that with update to .netcore 7.0 (comes with VS 2022), Creatio "compile" button doesnt work. .nethost goes to 100% cpu and continues working for hours (i kicked it after 6 hrs)

 

If you uninstall VS and SDK and keep only 2.2 (comes with VS 2019) - it compiles well.

 

Any ideas?

Like 2

Like

1 comments

Hello,

 

You need to move(if you don't have please create it) the 'global.json' file to the root of the disk and then restart the pool. In the 'global.json' file, replace the version '3.1.0' with '6.0.413'.



Then, move the 'global.json' file from 'C:\inetpub\wwwroot\website' to 'C:', restart the pool, and initiate the compilation. After doing this, the issue should be resolved.

Show all comments

Hi Community,

 

I have successfully installed the new available version of Creatio 8.0.8.4805 on my Linux server. I'm trying to do some tests to validate the .NET 6.0 migration. However, I couldn't force the application to run with .NET 6.0.

 

It should be pretty straight forward according to the development guide (https://academy.creatio.com/docs/user/on_site_deployment/application_se…).

 

I've tried to change the "TargetFramework" of the file "Terrasoft.Configuration.Dev.csproj" and build the solution but got 8 warnings and 3469 errors.

 

Is there any other way to force this or should I wait for 8.1.0?

 

Thank you in advance.

 

Best Regards,

Pedro Pinheiro

Like 2

Like

2 comments

Also looking for some info for migrating windows hosted Creatio to .Net 6 with IIS



Fresh installation .Net 6 documentation seems clear.



1) We are missing documentation on how to migrate an existing Creatio instance to .Net 6  (vs fresh install) which has been updated at minimum to Creatio 8.0.8 and running on .net framework 4.x



2) and which bundles are compatible with .Net 6 ? ( 8.0.8 release notes seem to specify that only specific bundles are compatible with .Net 6 ---  https://academy.creatio.com/docs/release/release-notes/808-atlas-releas…)

Hi, Pedro!



To investigate this behavior, we ask you to submit a request to our team via support@creatio.com or the Success Portal. 



As for your questions, Damien Collot,

 

1)  Please look through the documentation here and let us know if you have any questions: https://academy.creatio.com/docs/user/on_site_deployment/application_se…

2) .NET 6 support. Studio Creatio as well as Sales Enterprise, Marketing, Service Enterprise bundle in Freedom UI are now available on .NET 6. 

 

We will be glad to help with any other questions.

 

Show all comments

How can we create new package with Clio for .Net Core 3.1?

Like 0

Like

3 comments

Hello Ensar, 



To create new package project, use the next command:

 

 clio new-pkg <PACKAGE_NAME>



Best regards,

Bogdan

This command creates .NET Framework solution, not .NET Standard or Core. Is there any way to select this?

Ensar,

 

This article applies to NET Core 3.1 SDK and later versions. 



Please feel free to check the required information. 



Best regards,

Bogdan

Show all comments

Hi All,

 

We are doing a feasibility study to export Products that were linked with Lead. As per current available feature, we could get the Products count that were added to a Lead but we are looking for the products list for each Lead exported to excel. 

Appreciate your valuable input.

 

Thanks

Anupama

Like 0

Like

4 comments

Hi Anupama, 

 

As far as I understand you need to export a list of leads with a list of products for each lead there as well all in one file? Or do you just need to export a list of products for one particular lead?

 

Best regards,

Max.

Hi Max,

 

Thanks for the reply. 

 

Yes the first one is what we are looking for. Export a list of leads with a list of products for each lead and all in one file.

 

Thanks

Anupama

Anupama,

Unfortunately, Creatio does not provide such functionality. However, you can install SQL Executor for Creatio (SQL scripts console) from the marketplace. There you can write SQL requests to the database and then save the results as a CSV file. It will require some basic SQL knowledge.

 

The request would look something like this for the Orders with products:

 

SELECT * from "Order" JOIN "OrderProduct" ON "Order"."Id" = "OrderProduct"."OrderId"

 

You can choose which columns to select, and how to join the tables. 

 

Best regards,

Max.

Max,

We wanted this feature as a functionality for client where as an end user at specific time interval, they could generate the products list by exporting from Lead.

Show all comments