|
|
|
|
|
- Properties specific to sfDeletedRecord variables
sfDeletedRecord (Variable type) In french: sfEnregistrementSupprimé
The sfSeekDeletedResult type is used to find out the characteristics of a deleted record that was retrieved by SFSeekDeleted. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Cnx is sfConnection
Cnx.Login = "balthazar@gmail.com"
Cnx.Password = "azerty" + "XXB12VCZ54"
IF SFConnect(Cnx) = False THEN
Error("La connexion a échoué")
RETURN
END
ResRecupSuppr is sfSeekDeletedResult
ResRecupSuppr = SFSeekDeleted(Cnx, "Mileage__c", "20090101", "20090131")
MonEnregistrement is sfDeletedRecord
FOR EACH MonEnregistrement OF ResRecupSuppr.DeletedRecord
Trace("--- ID : " + MonEnregistrement.ID)
END
Properties Properties specific to sfDeletedRecord variables The following properties can be used to handle a deleted record that was retrieved by SFSeekDeleted: | | | Property name | Type used | Effect |
---|
DeletionDate | DateTime | Date and time of record deletion (in UTC format). This property is read-only. | ID | Character string | Identifier of the deleted record. This property is read-only. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|