|
|
|
|
<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). // Connect to Salesforce Cnt is sfConnection Cnt.Login = "balthazar@gmail.com" Cnt.Password = "qwerty" + "XXB12VCZ54" IF Cnt.Connect() =False THEN Error("The connection failed") RETURN END Res is sfSearchResult Res = Cnt.Search("FIND {John Smith} IN NAME FIELDS") MyRecord is sfObject FOR EACH MyRecord OF Res..Object Trace(MyRecord..ID) END
Syntax
<Result> = <Salesforce connection>.Search(<Search conditions>)
<Result>: sfSearchResult variable Name of 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|