This workflow was created by a 'Thick Client Workflow Designer (K2 for Visual Studio, K2 Studio)' that is not supported on the target environment

  • 15 February 2022
  • 1 reply
  • 95 views

Userlevel 5
Badge +20
 

This workflow was created by a 'Thick Client Workflow Designer (K2 for Visual Studio, K2 Studio)' that is not supported on the target environment

kbt161252

PRODUCT
K2 Five
BASED ON
K2 Five (all)
TAGS
Deployment
Workflow Designer
Package and Deploy
Workflow
This article was created in response to a support issue logged with K2. The content may include typographical errors and may be revised at any time without notice. This article is not considered official documentation for K2 software and is provided "as is" with no warranties.

Issue

When deploying a package created on K2 5.0 to a K2 5.1 environment, the legacy workflows encounter an error:

This workflow was created by a 'Thick Client Workflow Designer (K2 for Visual Studio, K2 Studio)' that is not supported on the target environment.

Image

Symptoms

The environment was upgraded from K2 4.7 to K2 Five so it does have the legacy workflow designers (K2 Studio, K2 for Visual Studio) installed.

 

Troubleshooting Steps

The 'ThickClientDesignTools' feature needs to be enabled to allow deployment of thick client artifacts.

Please run the following query to enable ThickClientDesignTools in the K2 Database:
 

UPDATE [K2].[HostServer].[Feature] SET [IsActive] = 1 WHERE Featurename = 'ThickClientDesignTools'

 

 


1 reply

If the ThickClientDesignTools record does not exist in the table then it must be inserted.


 


The recommendation is to log a support case to confirm that the resolution below is applicable to your version of K2.


 


Resolution:
1. Manually insert the record:
INSERT INTO [HostServer].[Feature]
([FeatureName]
,[DisplayName]
,[Description]
,[IsActive])
VALUES
('ThickClientDesignTools'
,'Thick Client Design Tools'
,'This feature allows deployment of thick client artifacts.'
,1)

2. Restart the K2 service.


 

Reply