XBase.Recall

Syntax:

Recall()

Description:

Removes the deletion mark from the current record.

Availability:

Thin client, server, thick client, external connection.

Note:

Method for records unmarked for deletion is not applied to any changes.

Example:

// Recall all deleted records
xB.ShowDeleted = true;
xB.First();
While 
Not xB.EOF() Do
    xB.Recall();
    xB.Next();
EndDo
;


    

1C:Enterprise Developer's Community