Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The 1st and 2nd parameters of the function are the same. If the 1st parameter exists the function will return the errText and errDetail for the 1st parameter. If the second parameter is valued the function will return the err text and errdeatil for the 2nd parameter. If both the 1st and 2nd parameters are valued the function will return the errText and errDetail for the 2nd parameter.

See also

U2 Routines

Example

 
Code Block
declare function errCode
 
errCode = "11001"
 
error = U2_Error(errCode, "", errText, errDetail)
 
* errTExt will contain "IE_NOSUPPORT"
 
* errDesc will contain "Function not supported on this system"

...