Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Painel
titleStay tuned!

For more information on the other widget settings, go to the Configure Process and task chart widget page and see our user documentation.

Deck of Cards
id1
Card
labelNew status field

Image Added



New widget for graphics filters

...

Painel
titleStay in!

For more information on setting up the widget, visit our user documentation on the Configure Filter widget page for process and task graphs.

Deck of Cards
id1
Card
labelGlobal filter

Image Added




New layout for the Convert requests screen

...

Painel

For more information, go to Convert Requests and see our documentation.

Deck of Cards
id1
Card
labelNew screen to convert requests

Image Added



New fields in the request details

...

Painel
titleLearn more...

For more information, go to View request details and My requests and see our documentation.

Deck of Cards
id1
Card
labelNew form field and show more

Image Added




New notification receipt settings

Receiving notifications of delayed or expired tasks out of your working hours is past history.  Now you can use the Task scheduler to configure and define whether or not to receive notifications of Delayed tasks and Task expiration only within your working hours. When you select the new “Notify only within working hours only” option, notifications are configured to be received only during working hours, so that you do not receive numerous e-mails when it is not your working hours.
For example, if your working hours are from 8 a.m. to 6 p.m., Monday through Friday, that means that you can only receive notifications during this time.

...

Painel
titleStay tuned!

For more information, go to Task scheduler and Working hours and see our online help documentation.

A new parameter to validate task transfer

Deck of Cards
id1
Card
labelNew task notification setting

Image Added



A new parameter to validate task transfer

Cannot transfer Cannot transfer your workflow pending issues because of customized mechanisms? The new WKIsTransfer parameter allows you to know whether it is a regular transfer or it is transferring pending issues. It checks if the user is transferring a task, enabling better customization and better management of their process.

Painel
titleLearn more...

For more information, go to Parameters and Custom assignment mechanism and see our technical documentation.

Deck of Cards
idExemplo de verificação de transferência de uma tarefa
Card
labelTransfer verification of a task - Example 1
  • Example to block the user from downloading an activity:


Bloco de código
linenumberstrue
function beforeTaskCreate(colleagueId) {
	var isTransfer = getValue("WKIsTransfer");

	if (isTransfer !== null) {
		if (JSON.parse(isTransfer)) {
			throw "Não é permitido transferir a atividade!";
		}
	}
}
Card
labelTransfer verification of a task - Example 2
  • Example to swap the responsible user in a custom mechanism:


Bloco de código
linenumberstrue
function resolve(process, colleague) {
	var userList = new java.util.ArrayList();
	var isTransfer = getValue("WKIsTransfer");

	if (isTransfer !== null) {
		if (JSON.parse(isTransfer)) {
			userList.add("gestor");
		} else {
			userList.add("user");
		}
	} else {
		userList.add("gestor");
		userList.add("user");
	}

	return userList;
}



Identity

Multifactor security with the safe id application

...