Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When displaying cases and tasks in the AQ_CaseList and AQ_WorklistWorkList containers, the Runtime uses the following rules to decide which part of the application Id should be ignored in an application A:

...

UI Expand
titleJava configuration

The configuration for the Java Runtime is done in 

Include Page
_PropertiesFileJava
_PropertiesFileJava
:

 

Code Block
#global setting for the process engine, accepted values = none, project, version, all
blueriq.processengine.app-id-ignore=none

#per-application setting for the process engine;  format = blueriq.processengine.app-id_ignore.<application name> = none | project | version | all
blueriq.processengine.app-id-ignore.studio-RepositoryName1-ProjectName1=project
blueriq.processengine.app-id-ignore.studio-RepositoryName2-ProjectName2=version
blueriq.processengine.app-id-ignore.studio-RepositoryName3-ProjectName3=all

 
#global setting for process lists, accepted values = none, project, version, all
blueriq.processlist.app-id-ignore=none
 
#per-application setting for process lists; format = processlist.appid_ignore.<application name> = none | project | version | all
blueriq.processlist.app-id-ignore.studio-RepositoryName1-ProjectName1=project
blueriq.processlist.app-id-ignore.studio-RepositoryName2-ProjectName2=version
blueriq.processlist.app-id-ignore.studio-RepositoryName3-ProjectName3=all
UI Expand
title.Net configuration

To configure ignore process version globally, add the blueriq.processengine.app-id-ignore and blueriq.processlist.app-id-ignore parameters to the aquima section as below:

 

 

 

Code Block
<aquima>
<properties>
<!-- Optional property to override the default value for ignoring the process version  -->
<property name="processengine.appid_ignore" value="none" />
<property name="processlist.appid_ignore" value="none" />
</properties>
</aquima>

 

To configure ignore process version per application, specify the application name and ignore mode as below in the webapplication section:

 

 

Code Block
<applicationSettings>
<application name = "studio-RepositoryName1-ProjectName1" processEngineIgnoreMode="project" processListIgnoreMode="project" />
<application name = "studio-RepositoryName2-ProjectName2" processEngineIgnoreMode="version" processListIgnoreMode="version" />
<application name = "studio-RepositoryName3-ProjectName3" processEngineIgnoreMode="all" processListIgnoreMode="all" />
</applicationSettings>

 

 

 

 

Work list and case list

The default behavior for building a work list or a case list is a query on the database which uses an application Id. If the version Id and the project name of the current model definition do not match the stored version Id and project name, no tasks and cases will be shown in the corresponding lists. With the new settings it is possible to get the required behavior.

...