ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Salesforce functions
  • Possible error cases:
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
SFSeekModified (Function)
In french: SFRechercheModifié
Seeks and retrieves the records (Salesforce objects) modified during the specified period.
Example
// Connexion à Salesforce
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
Syntax
<Result> = SFSeekModified(<Salesforce connection> , <Salesforce file> , <Start date> , <End date>)
<Result>: sfSeekUpdatedResult variable
Name of the sfSeekUpdatedResult variable containing the result data.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Salesforce file>: Character string
Name of Salesforce file to process. This name must correspond to the name defined in the Salesforce interface as the "API name". For a custom file, this name corresponds to the file name followed by 2 underscore characters then by the letter "C". For example: "MyAccount__C".
<Start date>: DateTime
Start date of period for which the number of modified objects is requested. This parameter must be in UTC format (use DateTimeLocalToUTC if necessary to perform the conversion).
<End date>: DateTime
End date of period for which the number of modified objects is requested. This parameter must be in UTC format (use DateTimeLocalToUTC if necessary to perform the conversion).
Remarks

Possible error cases:

  • The Internet connection is not valid.
  • The authentication was not performed properly.
  • The XML response of the server cannot be read.
To find out whether an error occurred, use the ErrorOccurred variable.
Component: wd300ggl.dll
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help