REPORT instruction
This instruction allows a user, while executing an action, to send messages to an agent residing outside of SMI world. This agent can then do what it likes, for example display these messages on some kind of REPORT panel. The various actors in play and their interaction is outlined in fig 1 below.
Syntax:
REPORT( severity , msg)
where
- severity
- one of the following: INFO, WARNING, ERROR, FATAL
- msg
- has format: indiVal1+indiVal2+...indiValn
where indiVali is a reference to the actual value to be transmitted. Described in detail in indiValue
Example
Object : O
....
Action: A(runno)
...
REPORT(INFO,"Object:"+_OBJECT_+"is reporting Run number:"+runno)
...
