Writes a message to the following files:
.ERR file (if severity is SEVERITY_ERROR, SEVERITY_TRANS_EXIT, or SEVERITY_PROCESS_EXIT)
.LOG file
.RPT file
The message will be counted as an error if SEVERITY_ERROR is the selected severity.
Kernel.bdh
RepMessage( in sMessage : string,
in nSeverity : number optional := SEVERITY_ERROR );
| Parameter | Description |
|---|---|
| sMessage | Message that will be written to the file. |
| nSeverity |
Optional: Severity of the error that is raised if the verification fails. Can be one of the following values:
|
transaction TMain
begin
...
RepMessage("Data successfully transferred", SEVERITY_SUCCESS);
end TMain;