|
|
|
|
|
- Properties specific to sfSeekUpdatedResult variables
- Functions that use the sfSeekUpdatedResult type
sfSeekUpdatedResult (Variable type) In french: sfRésultatRechercheModifié
The sfSeekUpdatedResult type is used to find out the result of SFSeekModified. 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
ResRecupModif is sfSeekUpdatedResult
ResRecupModif = SFSeekModified(Cnx, "Mileage__c", "20090101", "20090131")
Identifiant is string
FOR EACH STRING Identifiant OF ResRecupModif.ID SEPARATED BY CR
Trace("--- ID : " + Identifiant)
END
Properties Properties specific to sfSeekUpdatedResult variables The following properties can be used to handle the result of SFSeekModified: | | | Name | Type used | Effect |
---|
LatestDateCovered | DateTime | Date of most recent record that is returned by SFSeekModified. This date is in UTC format. This property is read-only. | ID | Character string | List of Salesforce identifiers of modified records (Salesforce objects). The identifiers are separated by CR characters (Carriage Return). |
Remarks Functions that use the sfSeekUpdatedResult type | | SFSeekModified | Seeks and retrieves the records (Salesforce objects) modified during the specified period. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|