...
Field | Description | |||||||
---|---|---|---|---|---|---|---|---|
Basic Settings | ||||||||
Name | The name of the Stream Action. | |||||||
Display Name | The name that will be used to display this action on a Stream View | |||||||
Stream Name | The name of the parent Stream that this action belongs to | |||||||
Show progress indicator after (ms) | A number of milliseconds which need to pass after the Action is submitted before the progress indicator is shown . | |||||||
Context Parameters | ||||||||
A list of the context parameters for this action. For each context parameter, define the following fields: | ||||||||
Name | The name of the context parameter | |||||||
Expression | An expression for the context parameter. The Context Parameter expressions can refer to any values entered on the Form View using the notation
The Context Parameters can also refer to any attributes of any records selected on the view or dashboard from which the action was initiated using the notation
It is not possible to refer to one context parameter from another. The values returned by the context parameter expressions can be referenced by the Validation expression, the Filter, the Maximum and Minimum Items expressions, any Stream Action Attribute expressions and any dashboard opened by this action. The context values are referenced using the syntax
Example
Unlike stream action attribute expressions, context parameter expressions can evaluate to a list of values as well as single values. The usual message functions debug(message), info(message), warning(message), and error(message) are all available to be used in these expressions and will result in messages being written to the system console logs. Be careful when using the error(message) function - this will stop the action from being completed. | |||||||
Confirmation Message | ||||||||
Ask for Confirmation | If this flag is ticked, a message will pop up asking the user if they want to proceed with the action. By default (i.e. if you do not enter a value in the field Confirmation Message), the message will have the format: HELPDEVTODO - what is default message format? | |||||||
Confirmation Message | The message you want to display to users when asking them to confirm whether they want to complete the action. | |||||||
File Upload | ||||||||
File Upload | If this flag is ticked, users will be prompted to browse to a file and select it for upload when they run this action. | |||||||
Tag Expr. | An expression that sets the value of the tag for the file. You can use this tag in a file collector to read into PhixFlow files that the action has uploaded. The tag expression can refer to:
List of names of uploaded files can be accessed through | |||||||
Action Validation | ||||||||
Validation Expression | The validation expression is evaluated at the start of any stream item Insert or Update actions. If the validation expression generates any error messages (using the error function) then the action is abandoned. The validation expression is not used to decide whether or not to run the selected Task Plan. The validation expression can include multiple statements by wrapping them in a do() clause. A number of internal variables are available in these expressions:
The usual message functions debug(message), info(message), warning(message), and error(message) are all available to be used in these expressions and will result in messages being written to the system console logs. Be careful when using the error(message) function - this will stop the action from being completed. Example 1 Validate that the sum of the selected record amounts equate to zero before allowing the action to be executed.
Example 2 Validate that the user entered comment is at least 10 characters long, else write a warning to the log.
Using values from other views You can also refer to records selected in other dashboard views by using their dashboard element names. E.g. if the dashboard also contains a view with database element name
| Form View | This dropdown list shows all Form Views associated with this stream. If a Form View is selected then it will be presented prior to this action being run to allow the user to enter values to be used in Context Parameter, Validation, Filter or Action Attribute expressions. These values are referenced in those expressions by preceding the field name from the form with '_prompt'. For example if there is a field on the form with the label "Name" then the value entered in that field by the user can be referenced in subsequent expressions as _prompt.Name.||||||
Run Selected TaskPlan | A Check box to determine whether a combo box is displayed which is then used to allow the user to choose a task plan to be run. Any expression evaluated during this task plan can reference any Context Parameter. | |||||||
Open Post Dashboard | A Check box to determine whether a combo box is displayed which is then used to allow the user to choose a dashboard to be opened once the action has completed. Any filter of any view on that dashboard can reference any Context Parameters set on this action. If the specified dashboard is already open it will be brought to the front and refreshed rather than a second instance of the dashboard opening. | |||||||
Close Parent Dashboard | A Check box to determine whether the Parent Dashboard should be closed after the Action is finished. | |||||||
Prevent Parallel Processing | A Check box to determine whether the Action can be submitted again before the previous run is finished. | |||||||
All Users Can Run Action | If checked, this specifies that all users can run this Action provided they have the basic privilege to run stream actions. If this field is not checked, then access to the stream action is controlled by adding user groups onto the stream's "User Groups" tab. | |||||||
URL Expression | A URL which will be open when the Action has completed. This may be provided as a fixed URL or as an expression evaluating to a plain text string. The expression can reference the Form fields, Context Parameters or attributes of Records selected on the view or dashboard from which the action was initiated. |
...
The Result Message is displayed when the Action has completed and may be used to provide a summary of the Action.
The message can contain multiple expressions inside {} brackets - these expressions are evaluated in turn before the message is displayed.
E.g.
Action {_action} failed with {_errors} errors and {_warnings} warnings.
A number of internal variables are available in these expressions:
- _error: Details of the error messages generated.
- _errors: The number of error messages generated.
- _warning: Details of the warning messages generated.
- _warnings: The number of warning messages generated.
- _messages: The number of warning messages generated.
- _taskPlan: The name of the Task Plan that the Action ran (may be null)
- _runId: The runId of any Stream data generated by this Action (may be null).
- _action: The name of the Action.
- _file: Details of files processed (imported or exported) by the Action.
- _fileCount: The number of files processed by the Action.
The following fields are configured on the Item Updates tab:
Field | Description | |
---|---|---|
Stream Item Action | This drop down has four options:
Please be aware that a Deletion action is non-reversible. In some circumstances it may therefore be better to select an Update action to simply mark the records as 'deleted' and then configure an Archive Task to remove records marked as deleted after a certain period of time. This will provide a window of opportunity for these 'deletions' to be reversed manually if they are made by mistake. | |
Filter Type | This drop down has three options:
| |
Maximum Items Expression | This field appears if the update action selected is Update or Delete. The expressions entered here must evaluate to a positive whole number. The expression can reference any fields entered on the Form View associated with this action, any attributes of any records selected on the view or dashboard from which the action was initiated and any of the Context Parameters configured for this action.Update StreamItems | |
Stream Item Action | This drop down has four options:
Please be aware that deleting records with an action is non-reversible. In some circumstances it may therefore be better to select an Update action to simply mark the records as 'deleted' and then configure an Archive Task to remove records marked as deleted after a certain period of time. This will provide a window of opportunity for these 'deletions' to be reversed manually if they are made by mistake. If you don't want your users to see these deleted records, simply filter them from any views. | |
Filter Type | This drop down has three options:
| |
Condition | This is only available if you have selected Filter Type = Action Filter. Create a filter to specify the records that an Update or Delete will apply to. Any expressions on this filter can reference the Form View fields, Context Parameters and any attributes from any record selected on the view or dashboard from which this action was initiated. Configure this filter in the same way that you would a pipe filter. | |
Form View | This dropdown list shows all Form Views associated with this stream. If a Form View is selected then it will be presented prior to this action being run to allow the user to enter values to be used in Context Parameter, Validation, Filter or Action Attribute expressions. These values are referenced in those expressions by preceding the field name from the form with '_prompt'. For example if there is a field on the form with the label "Name" then the value entered in that field by the user can be referenced in subsequent expressions as _prompt.Name. | |
Run Selected TaskPlan | A Check box to determine whether a combo box is displayed which is then used to allow the user to choose a task plan to be run. Any expression evaluated during this task plan can reference any Context Parameter. | |
Open Post Dashboard | A Check box to determine whether a combo box is displayed which is then used to allow the user to choose a dashboard to be opened once the action has completed. Any filter of any view on that dashboard can reference any Context Parameters set on this action. If the specified dashboard is already open it will be brought to the front and refreshed rather than a second instance of the dashboard opening. | |
Close Parent Dashboard | A Check box to determine whether the Parent Dashboard should be closed after the Action is finished. | |
Prevent Parallel Processing | A Check box to determine whether the Action can be submitted again before the previous run is finished. | |
All Users Can Run Action | If checked, this specifies that all users can run this Action provided they have the basic privilege to run stream actions. If this field is not checked, then access to the stream action is controlled by adding user groups onto the stream's "User Groups" tab. | |
URL Expression | A URL which will be open when the Action has completed. This may be provided as a fixed URL or as an expression evaluating to a plain text string. The expression can reference the Form fields, Context Parameters or attributes of Records selected on the view or dashboard from which the action was initiated. |
The following field is configured on the Result tab:
Field | Description |
---|---|
Result includes Warnings | If ticked, warning messages generated by the Action in the Console log will be displayed as part of the result message. |
Result includes Errors | If ticked, error messages generated by the Action in the Console log will be displayed as part of the result message. |
Result Message | The Result Message is displayed when the Action has completed and may be used to provide a summary of the Action. The message can contain multiple expressions inside {} brackets - these expressions are evaluated in turn before the message is displayed. E.g. Action {_action} failed with {_errors} errors and {_warnings} warnings. A number of internal variables are available in these expressions:
|
The following fields are configured on the Item Updates tab:
Field | Description |
---|---|
Maximum Items Expression | This field appears if the update action selected is Update or Delete. The expression expressions entered here must evaluate to a positive whole number. The expression can reference any fields entered on the Form View associated with this action, any attributes of any records selected on the view or dashboard from which the action was initiated and any of the Context Parameters configured for this action. If the number of items selected on the view from which this action is initiated, or retrieved by the filter configured on this action, is less greater than this number then an error message will be generated and no updates or deletes will take place. |
Action Attributes | A Grid showing all the associated Stream Action Attributes that form part of this stream action. See the Stream Action Attribute form. This grid only appears if the Stream Item Action selected is Update or Delete. |
...
Minimum Items Expression | This field appears if the update action selected is Update or Delete. The expression entered here must evaluate to a positive whole number. The expression can reference any fields entered on the Form View associated with this action, any attributes of any records selected on the view or dashboard from which the action was initiated and any of the Context Parameters configured for this action. If the number of items selected on the view from which this action is initiated, or retrieved by the filter configured on this action, is less than this number then an error message will be generated and no updates or deletes will take place. |
Action Attributes | A Grid showing all the associated Stream Action Attributes that form part of this stream action. See the Stream Action Attribute form. This grid only appears if the Stream Item Action selected is Update or Delete. |
The following field is configured on the User Groups tab:
...