ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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
SFEmptyRecycleBin (Function)
In french: SFVideCorbeille
Clears the specified records from the Salesforce recycle bin.
Remark: After 30 days, the elements found in the Salesforce recycle bin are automatically deleted from the bin.
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 EACH MyRecord OF ResQuery..Object
Trace("---- Type: " + MyRecord..Type + " | ID: " + MyRecord..ID)
Trace(MyRecord..Date__c + " / " + MyRecord..Miles__c + " / " + ...
MyRecord..Contact__c)
END
 
// Delete an object
arrDel is array of strings
Add(arrDel, ResQuery..Object[1]..ID)
 
arrResDel is array of sfDeleteResult
arrResDel = SFDelete(Cnt, arrDel)
FOR EACH res OF arrResDel
Trace("ID: " + res..ID + " - Deletion = " + res..Success)
END
 
arrResEmptyBin is array of sfEmptyRecycleBinResult
arrResEmptyBin = SFEmptyRecycleBin(Cnt, arrDel)
FOR EACH res OF arrResEmptyBin
Trace("ID: " + res..ID + "-  EmptyRecycleBin = " + res..Success)
END
Syntax
<Result> = SFEmptyRecycleBin(<Salesforce connection> , <Records to delete>)
<Result>: Array of sfEmptyRecycleBinResult
Array of sfEmptyRecycleBinResult variables that contains the records deleted from the recycle bin.
<Salesforce connection>: sfConnection variable
Name of the sfConnection variable to use.
<Records to delete>: Array variable
Array of character strings containing the Salesforce identifiers of the records to delete from the recycle bin.
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 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help