ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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
<sfConnection variable>.Search (Function)
In french: <Variable sfConnexion>.Recherche
Performs a search among the records found in a Salesforce database. The search is performed via SOSL (Salesforce Object Search Language).
Example
// Connexion à Salesforce
Cnx is sfConnection
Cnx.Login = "balthazar@gmail.com"
Cnx.Password = "azerty" + "XXB12VCZ54"
IF Cnx.Connect() = False THEN
	Error("La connexion a échoué")
	RETURN
END

Res is sfSearchResult
Res = Cnx.Search("FIND {John Smith} IN NAME FIELDS")
MonEnregistrement is sfObject
FOR EACH MonEnregistrement OF Res.Object
	Trace(MonEnregistrement.ID)
END
Syntax
<Result> = <Salesforce connection>.Search(<Search conditions>)
<Result>: sfSearchResult variable
Name of the sfSearchResult variable containing the result data.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Search conditions>: Character string
Code corresponding to the search condition. This search condition is written in SOSL (Salesforce Object Search Language). For more details, see the Salesforce documentation.
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 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/25/2024

Send a report | Local help