Revert Record/Request

Returns the current record or find request to the way it was before editing began.

Options 

With dialog displays a dialog box when the script step is performed, asking users to confirm the revert action.

Compatibility 

Product Supported
FileMaker Pro Yes
FileMaker Go Yes
FileMaker WebDirect Yes
FileMaker Server Partial
FileMaker Cloud Partial
FileMaker Data API Partial
Custom Web Publishing Partial

Originated in version 

6.0 or earlier

Example 1 

Displays a dialog box if the current record has been modified but not committed. Gives the user the option of reverting the record.

Copy
If [Get ( RecordOpenState ) = 2]
    Show Custom Dialog ["This record has been modified since it was last entered."]
    #Button 1 is Commit. Button 2 is Revert.
    If [Get ( LastMessageChoice ) = 2]
        Revert Record/Request [With dialog: Off]
    End If
End If