Excerpt | ||
---|---|---|
| ||
stop(message) Will stop the analysis for the recordset, producing a warning message in the log. |
Function: stop()
Will cause The purpose of this function is to stop the processing of data.
It will cause the analysis for the Stream Set recordset to stop , producing a and add the defined warning message in the log trace.
Warning |
---|
Analysis Modelling All tables in an Analysis Model preceding the table where stop() function is called will be marked as complete. Actionflows When updating existing records using an Actionflow the tables preceding the action node where the stop() function is called will be complete. When inserting new records using an Actionflow, when the stop() function is called all recordssets will be marked as incomplete. |
Syntax
stop(message)
Argument | Type | Description |
---|---|---|
message | String | Message to be output to the log |
. |
The message can be an |
expression but must evaluate to a string. |
Examples
...
In
...
this example, if the rate value is not found then there is no point continuing so a warning message is added to the log file and analysis for this
...
recordset stops. No records are written to the database for
...
this recordset.
Code Block |
---|
ifNull(in.rate,stop("Missing rate value")) |
In this example, an error() message is recorded in the log directly before the processing of records is stopped. This is useful where an error message is required in the logs.
Code Block |
---|
ifNull(in.rate,
do(
error("Missing rate value")
stop("Processing being stopped")
)
) |
Excerpt | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||
Process Functions
|