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
  • Properties specific to sfEmptyRecycleBinResult variables
  • Functions that use the sfEmptyRecycleBinResult type
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
sfEmptyRecycleBinResult (Variable type)
In french: sfResultatVideCorbeille
The sfEmptyRecycleBinResult type is used to find out the result of SFEmptyRecycleBin. The characteristics of this result can be known via several properties
Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
// Connexion à Salesforce
Cnx is sfConnection
Cnx.Login = "balthazar@gmail.com"
Cnx.Password = "azerty" + "XXB12VCZ54"
IF SFConnect(Cnx) = False THEN
	Error("La connexion a échoué")
	RETURN
END
ResRequête is sfExecuteQueryResult 
ResRequête = SFExecuteQuery(Cnx, "SELECT Date__c,Miles__c,Contact__c FROM Mileage__c")

MonEnregistrement is sfObject
FOR EACH MonEnregistrement OF ResRequête.Object
	Trace("---- Type : " + MonEnregistrement.Type+" | ID : " + MonEnregistrement.ID)
	Trace(MonEnregistrement.Date__c + " / " + MonEnregistrement.Miles__c + " / " + ...
		MonEnregistrement.Contact__c)
END

// Suppression d'un objet
tabSuppr is array of strings
Add(tabSuppr, ResRequête.Object[1].ID)

ResSuppr is array of sfDeleteResult
ResSuppr = SFDelete(Cnx, tabSuppr)
FOR EACH res OF ResSuppr
	Trace("ID : " + res.ID + " - Suppression = " + res.Succès)
END

ResVideCorb is array of sfEmptyRecycleBinResult
ResVideCorb = SFEmptyRecycleBin(Cnx, tabSuppr)
FOR EACH res OF ResVideCorb
	Trace("ID : " + res.ID + "- VideCorbeille  = " + res.Succès)
END
Properties

Properties specific to sfEmptyRecycleBinResult variables

The following properties can be used to handle the result of SFEmptyRecycleBin:
Property nameType usedEffect
ErrorArray of sfErrorStatus report of errors.
IDCharacter stringSalesforce identifier of the record deleted from the recycle bin.
This property is read-only.
SuccessBoolean
  • True if the recycle bin was deleted,
  • False otherwise.
This property is read-only.
Remarks

Functions that use the sfEmptyRecycleBinResult type

SFEmptyRecycleBinClears the specified records from the Salesforce recycle bin.
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