|
|
|
|
|
SFEmptyRecycleBin (Function) In french: SFVideCorbeille Clears the specified records from the Salesforce recycle bin. Remark: After 30 days, items in the Salesforce recycle garbage can are automatically deleted.
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
tabSuppr is array of strings
Add(tabSuppr, ResRequête.Object[1].ID)
tabResSuppr is array of sfDeleteResult
tabResSuppr = SFDelete(Cnx, tabSuppr)
FOR EACH res OF tabResSuppr
Trace("ID : " + res..ID + " - Suppression = " + res..Success)
END
tabResVideCorb is array of sfEmptyRecycleBinResult
tabResVideCorb = SFEmptyRecycleBin(Cnx, tabSuppr)
FOR EACH res OF tabResVideCorb
Trace("ID : " + res..ID + "- VideCorbeille = " + 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 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 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|