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
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Deletes records from a Salesforce database.
Example
// Connect to Salesforce
Cnt is sfConnection
Cnt..Login = "vince@gmail.com"
Cnt..Password = "qwerty" + "XXB12VCZ54"
IF SFConnect(Cnt) = False THEN
	Error("The connection failed")
	RETURN
END

ResQuery is sfExecuteQueryResult
ResQuery = SFExecuteQuery(Cnt, "SELECT Date__c,Miles__c,Contact__c FROM Mileage__c")

MyRecord is sfObject
FOR EVERY ResRequest MyRegistration..Object
	 Trace("---- Type: " + MyRecord..TypeObject + " | ID: " + MyRecord..ID)
	 Trace(MyRecord..Date__c + " / " + MyRecord..Miles__c + ...
			 "/ " + MyRegistration..Contact__c)
END

//Delete an object
arrDel is array of strings
Add(arrDel, ResQuery..Object[1]..ID)

ResDel is array of sfDeleteResult
ResDel = SFDelete(Cnt, arrDel)
FOR EACH res OF ResDel
	Trace("ID: " + res..ID + " - Deletion = " + res..Success)
END
Syntax
<Result> = SFDelete(<Salesforce connection> , <Records to delete>)
<Result>: Array variable
Array of sfDeleteResult variables containing the deleted data.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used.
<Records to delete>: Array variable
Array of character strings containing the Salesforce identifiers of the records to delete.
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 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help