OnRollBack 

Purpose

This function is called when a local transaction ends with failure.

Syntax

virtual void OnRollBack(RFC_TID TransID);

Parameters

transID: The transaction ID for the local transaction.

Description

This function is a pure virtual function to be implemented by derived classes. It is to be used to roll back the local transaction, if necessary. If this functions has access to a SQL database, it should perform a operation like Rollback work;

Do not call this function yourself, it is automatically invoked during Run.

Related Information

OnCheckID

OnCommit

OnConfirm