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
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
<sfConnection variable>.Add (Function)
In french: <Variable sfConnexion>.Ajoute
Creates a record in a file of a Salesforce database. This file can be a preset file or a custom file.
Remark: A "Salesforce record" is also called a "Salesforce object".
Example
// Connexion Ã  Salesforce
Cnx is sfConnection
Cnx..Login = "balthazar@gmail.com"
Cnx..Password = "azerty" + "XXB12VCZ54"
IF Cnx.Connected() = False THEN
Error("La connexion a Ã©choué")
RETURN
END

// Définition des enregistrements
MesEnregistrements is array of sfObject
UnEnregistrement is sfObject
UnEnregistrement..ObjectType = "Mileage__c"
UnEnregistrement..Date__c = "2009-02-14"
UnEnregistrement..Miles__c = 333
Add(MesEnregistrements, UnEnregistrement)

UnEnregistrement..Date__c = "2009-02-15"
UnEnregistrement..Miles__c = 222
Add(MesEnregistrements, UnEnregistrement)

// Ajout des enregistrements
tabRes is array of sfSaveResult
tabRes = Cnx.Ajoute(MesEnregistrements)

// Lecture du résultat
res is sfSaveResult
err is sfError
FOR EACH res OF tabRes
Trace("---------- " + res..ID + ": " + res..Success + " ----------")
FOR EACH err OF res..Error
Trace("Erreur: " + err..ErrorCode + " -> " + err..Message + "(" + err..Item + ")")
END
END
Syntax
<Result> = <Salesforce connection>.Add(<Records to create>)
<Result>: Array variable
Array of sfSaveResult variables containing the result data, especially the identifiers of records actually created.
<Salesforce connection>: sfConnection variable
Name of the Variable type sfConnection to be used.
<Records to create>: Array variable
Array of sfObject variables corresponding to the records (Salesforce objects) to create.
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: wd290ggl.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help