Skip to main content
Nintex Community Menu Bar
Question

Need list of all workflow in environment with latest k2 Version


Forum|alt.badge.img+1

Hello All, 

 

Kindly help me with how I can pull the list of all workflow in my production environment with latest version deployed .

Also I need information which version(K2 4.6 to K2 FIVE) of K2 the respective workflow was created ?

This is urgent request . Any lead will highly appreciated .

 

Thank You,

Ruchi Agarwal

Translate
Did this topic help you find an answer to your question?

4 replies

Forum|alt.badge.img+10
  • Nintex Employee
  • 176 replies
  • March 13, 2024
  1. You can try using the following SmartObjects in the following category to see if it has the data you are looking for:

System > Management > Workflows > SmartObjects > Process

System > Management > Workflows > SmartObjects > Process Set

  1. You can try the following SQL query against the K2 database:

SELECT 
    [PS].[Folder],
    [PS].[Name],
    [Version] = [P].[Ver],
    [Type] = CASE ISNULL([PV].[Name], [LPV].[Name])
        WHEN 'ProcessView' THEN 'Thick Client'
        WHEN 'WebView' THEN 'Silverlight Designer'
        WHEN 'ShapesView' THEN 'HTML5 Designer'
        ELSE ISNULL([PV].[Name], [LPV].[Name])
    END
FROM 
    [Server].[ProcSet] AS [PS]
INNER JOIN 
    [Server].[Proc] AS [P]
    ON [P].[ID] = [PS].[ProcVerID]
LEFT JOIN
    [Server].[ProcView] AS [PV]
    ON [PV].[ProcID] = [P].[ID]
    AND [PV].[Default] = 1
LEFT JOIN
    [ServerLog].[ProcView] AS [LPV]
    ON [LPV].[ProcID] = [P].[ID]
    AND [LPV].[Default] = 1
ORDER BY 1, 2

 

We won’t be able to really tell on which version a workflow was created in, but a 'HTML5 Designer' can only be created after your environment was upgraded to a K2 Five.

Support for 'Silverlight Designer' stopped in K2 5.5, so it would have been created pre-5.5.

'Thick Client' or K2 Studio/K2 for Visual Studio can be created from K2 4.6 to current K2 version as it has not been removed yet.

Translate

MillaZ
Nintex Employee
Forum|alt.badge.img+21
  • Nintex Employee
  • 662 replies
  • March 20, 2024

Hi @ruchiPan 
Did this help solve your question? 

Translate

Forum|alt.badge.img+1
  • Author
  • Novice
  • 1 reply
  • March 27, 2024

Hello @TinTex, Thank you so much for the response .

 

From your query I can get the HTML 5 which is k2 five WF but I'm not able to figure out for 4.6 WF . 

 

Could you please help me on this .

 

Thank You,

Ruchi Agarwal

Translate

Forum|alt.badge.img+10
  • Nintex Employee
  • 176 replies
  • March 27, 2024

Unfortunately, as Silverlight workflow can be created up to version 5.5 and Thick Client workflow can still be created up to the latest version, there isn’t really a way to tell if they were in fact created while your servers was on 4.6 or after it was upgraded to 5.5.

 

You can try looking at the date for the deployed version to see when they were deployed.

https://help.nintex.com/en-US/nintexautomation/userguide/5.7/Content/K2-Management-Site/Workflow_Server/Versions.htm

 

Silverlight and Thick Client workflow are ‘legacy’ and HMTL5 workflow are the newest type of workflow.

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings