FT_TTSABORT()
Abort explicit and implicit NetWare TTS transactions
──────────────────────────────────────────────────────────────────────────────

Syntax

FT_TTSABORT() -> nResult

Arguments

None

Returns

0 - Abort Successful (backout completed)
253 - Transaction Tracking disabled (no backout performed)
254 - Transaction ended, records locked (No backout performed)
255 - No explicit transactions active

Description

Consult your NetWare documentation for details on the NetWare
Transaction Tracking System.

Examples

nResult := FT_TTSABORT()
DO CASE
CASE nResult == 0
? "TTS aborted"
CASE nResult == 253
? "Transction tracking, no backout performed"
CASE nResult == 254
? "Transaction ended, records locked, no backout performed"
CASE nResult == 255
? "No transactions active"
OTHERWISE
? "Unknown result"
ENDCASE

Source: NWTTS2.ASM

Author: James R. Zack