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
<sfConnection variable>.SeekDeleted (Function)
In french: <Variable sfConnexion>.RechercheSupprimé
Seeks and retrieves the records (Salesforce objects) deleted during the specified period.
Example
// Connect to Salesforce
Cnt is sfConnection
Cnt.Login = "balthazar@gmail.com"
Cnt.Password = "qwerty" + "XXB12VCZ54"
IF SFConnect(Cnt) = False THEN
Error("The connection failed")
RETURN
END
 
ResGetDel is sfSeekDeletedResult
ResGetDel = SFSeekDeleted(Cnt, "Mileage__c", "20090101", "20090131")
 
MyRecord is sfDeletedRecord
FOR EACH MyRecord OF ResGetDel.DeletedRecord
Trace("--- ID: " + MyRecord.ID)
END
Syntax
<Result> = <Salesforce connection>.SeekDeleted(<Salesforce file> , <Start date> , <End date>)
<Result>: sfSeekDeletedResult variable
sfSeekDeletedResult variable that contains the result data.
<Salesforce connection>: sfConnection variable
Name of the variable of type sfConnection to be used
<Salesforce file>: Character string
Name of Salesforce file to process. 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".
<Start date>: DateTime
Start date of period for which the number of deleted objects is requested. This date cannot be more than 30 days before the current date. Indeed, the deleted elements are only kept for 30 days in the recycle bin. Then, they are permanently deleted by Salesforce.
This parameter must be in UTC format (use DateTimeLocalToUTC if necessary to perform the conversion).
<End date>: DateTime
End date of period for which the number of deleted objects is requested. This parameter must be in UTC format (use DateTimeLocalToUTC if necessary to perform the conversion).
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.
Business / UI classification: Business Logic
Component: wd290ggl.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help