|
|
|
|
|
- Properties specific to sfSeekDeletedResult variables
- Functions that use the sfSeekDeletedResult type
sfSeekDeletedResult (Variable type) In french: sfRésultatRechercheSupprimé
The sfSeekDeletedResult type is used to find out the result of SFSeekDeleted. The characteristics of this result are returned by several WLanguage properties. 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 sfSeekDeletedResult variables The following properties can be used to handle the result of SFSeekDeleted: | | | Name | Type used | Effect |
---|
LatestDateCovered | DateTime | Date of most recent record that is returned by SFSeekDeleted. This property is read-only. | DeletedRecord | Array of sfDeletedRecord | Data of the deleted records. | EarliestDateAvailable | DateTime | Date of the oldest record that is returned by SFSeekDeleted |
Remarks Functions that use the sfSeekDeletedResult type | | SFSeekDeleted | Seeks and retrieves the records (Salesforce objects) deleted during the specified period. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|