OnCommit 

Purpose

The function is called when local transaction starts.

Syntax

virtual void OnCommit(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 commit the local transaction, if necessary. If this functions has access to a SQL database, it should perform a operation like Commit work;

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

Related Information

OnCheckID

OnRollBack

OnConfirm