...
The following functions are used for debugging APL code, or logging user defined messages and events.
debug
Prints the supplied argument to the output target specified in the Execution tab of the Workflow Properties dialog. Valid options are Event or File . If File is selected, the debug is saved in the temporary directory as stated in the system property pico.tmpdir
. The file is to be called debug/<workflow name>
. Each time the workflow is activated resulting in new debug information being written, the existing file is overwritten. If Event is selected, the output is shown in the Workflow Monitor.
...
Parameter | Description |
---|---|
| Argument to write to debug output. Could be any type. Note that printing a UDR type will dump all the field values, which may be a large amount of data. Similarly, the debug output for a table or list type may be very large. There is a special case if For all other variable types, the output is the direct string conversion, meaning |
Returns | Nothing |
dispatchAlarmValue
The function makes it possible to detect alarm situations based on workflow behavior. It dispatches a user defined <value>
with a user defined valueName from the workflow. The valueName used must be defined using Alarm Detection. For further information, see Alarm Detection(3.0) in the Desktop user's guide.
...
Info | ||
---|---|---|
| ||
The following code example displays a situation and syntax useful for the
|
dispatchEvent
A user can define a customized event type. This is done using an event UDR, optionally extended with user defined fields. This event UDR can be populated with any information by utilizing APL code, and then be sent on, using the dispatchEvent
function, to be caught by the Event Notification. For further information about Event Notification, see Event Notifications(3.0).
Code Block |
---|
void dispatchEvent( UltraEvent eventUDR ) |
...
Parameter | Description |
---|---|
| The name of the event UDR |
Returns | Nothing |
dispatchMessage
This method is used to produce user defined messages associated to predefined Event Categories. For further information about the Event Notification editor, see Event Notifications(3.0). For instance, an Event Category could be named 'DISASTER', and be configured to send an email to the System Administrator. Then an APL agent could send a detailed description with the dispatchMessage
function whenever this error situation is detected.
...
Parameter | Description |
---|---|
| Value/message to append to the Event Category |
| Name of a user defined event as declared in the Event Notification Editor. This event must be defined in the Event Notification Editor in order for the APL code to compile. |
Returns | Nothing |
log*
Logs a message string to the System Log of type error, warning or information. The entry will fall under the Workflow category where workflow name will be the name of the current workflow and agent name will be the name of the agent logging the message.
...
Info | ||
---|---|---|
| ||
The following code example logs a warning message, which when displayed in the System Log will look like the following figure:
System Log inspection |
mailNotify
Sends an email to a configured recipient. In order to operate, the system must have an email remitter and an SMTP mail server defined. For further information,see Platform Properties[hide](3.0[/hide]).
Warning | ||
---|---|---|
| ||
If used within the |
...