FT_TTSSTAT()
Verify if TTS transaction has been written to disk
Syntax
FT_TTSSTAT( <nTransNumber> ) -> nResult
Arguments
<nTransNumber> is the transaction number, returned from FT_TTSEND().
Returns
0 - Success, transaction written to disk
255 - Transaction not yet written to disk
Description
For further information on NetWare's Transaction Tracking System (TTS),
consult Novell's documentation.
Examples
nResult := FT_TTSSTAT()
DO CASE
CASE nResult == 0
? "Transaction wrttten to disk"
CASE nResult == 255
? "Transaction not yet written to disk"
OTHERWISE
? "Unknown result code"
ENDCASE
Source: NWTTS5.ASM
Author: James R. Zack
See Also: FT_TTSABORT() FT_TTSAVAIL() FT_TTSBEGIN() FT_TTSEND()