Description
Returns error status information from a stored procedure. Use after calling any system stored procedure (SSP).
Syntax
status = Get_Status (status_code)
Parameters
The Get_Status subroutine has the following parameter.
Parameter | Description |
---|---|
status_code | Returns any error or status codes that have been generated by the previous stored procedure. Multiple codes are @FM-delimited. Optional arguments for each code are values (@VM-delimited) in that field. |
See also
Set_Status() function, RevError.Dat, FsMsg routine, Set_FSError()
Example
Set_Status (0) ;*make sure status is clear RList (" ", ...) If Get_Status(status_code) Then *RList failed End