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>.Read (Function)
In french: <Variable sfConnexion>.Lit
Retrieves the Salesforce records from their identifiers. These records can come from a preset Salesforce file or from a custom file.
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

Identifiants is array of strings
Add(Identifiants, "123546789")
Add(Identifiants, "987654321")
Res is array of sfObject 
Res = Cnx.Read("Date__c,Miles__c,Contact__c", "Mileage__c", Identifiants)

MonEnregistrement is sfObject
FOR EACH MonEnregistrement OF Res
	Trace("---- Type : " + MonEnregistrement.ObjectType + ...
			" | ID : " + MonEnregistrement.ID)
	Trace(MonEnregistrement..Date__c + " / " + MonEnregistrement..Miles__c + ...
			" / "+  MonEnregistrement..Contact__c)
END
Syntax
<Result> = <Salesforce connection>.Reads(<List of items> , <Salesforce file> , <Identifiers>)
<Result>: Array variable
Array of sfObject variables corresponding to the Salesforce records to retrieve.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<List of items>: Character string
List of items whose value must be retrieved. The names of the items are separated by commas.
<Salesforce file>: Character string
Name of the Salesforce file to read. 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".
<Identifiers>: Array variable
Array of character strings containing the Salesforce identifiers of the records to retrieve.
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