Versions Compared

Key

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

Actions are result the results of a Task and redirect  which redirect workflows to the next step.

Depending on the task type, actions can be selected by users or by automated scripting operations. When an action is taken on a task, Emakin process engine continues to the next step in of a workflow.

For a action you You can configure the following ;for an action:

Name (Not visible in on a diagram)
Name of an action. Name information are is not visible to the users and is only used to identify a task.

Caption
Caption The caption of an action. Captions are shown to the users and can be localized when it is needed. 

Is Hidden?
Check this field to hide the action from end-users. Hiding an action may be useful for temporary temporarily disabling an action or selecting as a deadline action to escalate the task.

Follow Action
Check this field to follow the action result. Following The following action result checks if the next step in of a workflow is assigned to the same user, and if the same user is assigned, it automatically opens the next task without redirecting to the user work list.

Validation Group
Name of validation rule groups. Use the semicolon ";" to specify multiple groups. If any rule in this group fails, action cannot be selected.

Comment Policy
Manages the comment feature on taking an action. In some cases, like rejecting a form, you can force the user for specifying to specify a reject rejection reason.

Three options are provided for the comment policy:

  • Optional lets the user decide whether to enter a comment.
  • Required forces the user to enter a comment..
  • Hidden hides the comment panel.

Order
A number value is used for ordering actions within other actions. Higher values put an action to last.

For a an action, you can also configure also the following properties to change the appearance from the context menu: 

Click the right mouse button on the action, and action design pop-up will openbe opened. Click on the appearance title, and start to change changing the action properties. 

Icon
Select an icon to show to the user. 

ColorColour
Select the text color colour of an action caption.

Background Color
Select the background color colour of an action caption.

Confirmation Message
Enter a confirmation message to show to the user when action is selected. If not specified, "Are you sure you want to select the action <action caption> ?" text is displayed.

Auto Select Rule

Auto The auto select rule specifies the action is to be automatically select selected without any user action if the condition is met. Rule condition can be specified as as a Decision Table or as a scripting expression.

Auto selecting action with a decision table

Following The following decision table specifies the select selected action without asking the user if the form field "Department" is set to a "Sales" or an "Accounting" value. All of the other values are invalidates invalidate the rule.

Auto selecting action with

...

an expression

If FEEL expression is preferred, expression can be specified as;:

Same The same expression can also can be written as a javascript expression, as following;follows:

User Select Script

Script to execute just after the action is selected. This script is useful for performing operations after the action is selected.

This script is different from postwork because it runs on the client side and it has a user context. For example, applying a digital signature on the file attachment.

 


Code Block
languagejs
titleSign File Attachment
var format = 'X'; // X value is is default. BES, T, C, X, A values also can be used.
var placeHolder = 'Signature\\d'; // try to find this regex format in signed document and place a visual signature in document position.

AltiKare.Signature.signFiles($Xml.SelectAll('Files/File'), format, placeHolder).then(function(result) {
    
	if (result) {
	    // result.certificateName contains the name of signer
    	// result.certificateIssuer contains the issuer of signer certificate
    	// result.certificateSerialNumber contains the serial number of signer
    	// result.files.forEach(function(file) {
    		// file.sourceId contains source file id.
    	// });
	}
   
    $Complete(!!result);
});

 


Signing basic plain text and fetching the signature file. 


Code Block
languagejs
AltiKare.Signature.signText('Hello !', true, 'BES').then(function(result) {
    
	if (result) {
	    // result.certificateName contains the name of signer
    	// result.certificateIssuer contains the issuer of signer certificate
    	// result.certificateSerialNumber contains the serial number of signer
    	// result.files.forEach(function(file) {
            // file.id contains the signature file id.
    	// });
	}
   
    $Complete(!!result);
});

...