AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Salesforce
  • 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
Used to authenticate yourself beside a Salesforce platform.
Example
// Connect to Salesforce
Cnt is sfConnection
 
Cnt.Login = "balthazar@gmail.com"
Cnt.Password = "qwerty" + "XXB12VCZ54"
Cnt.LoginServerURL = "https://login.salesforce.com/services/Soap/u/42.0"
 
IF SFConnect(Cnt) = False THEN
Error("The connection failed." + CR + ErrorInfo())
END
Syntax
<Result> = SFConnect(<Salesforce connection>)
<Result>: Boolean
  • True if the authentication was performed,
  • False if a problem occurred. To get the details of the error, use ErrorInfo.
<Salesforce connection>: sfConnection variable
Name of the sfConnection variable to be used.
Remarks

Possible error cases:

  • The Internet connection is not valid.
  • The authentication was not performed properly.
Component: wd290ggl.dll
Versión mínima requerida
  • Versión 14
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local