|
|
|
|
|
- Properties specific to sfDeleteResult variables
- Functions that use the sfDeleteResult type
sfDeleteResult (Variable type) In french: sfResultatSupprime
The sfDeleteResult type is used to find out the result of SFDelete. The characteristics of this result are returned by several WLanguage properties. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
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.Subject
Trace("---- Type : " + MonEnregistrement.ObjectType + " | ID : " + MonEnregistrement.ID)
Trace(MonEnregistrement.Date__c + " / " + ...
MonEnregistrement.Miles__c + " / " + MonEnregistrement.Contact__c)
END
tabSuppr is array of strings
Add(tabSuppr, ResRequête.Subject[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
Properties Properties specific to sfDeleteResult variables The following properties can be used to handle the result of SFDelete: | | | Property name | Type used | Effect |
---|
Error | Array of sfError | Status report of errors. | ID | Character string | Salesforce identifier of the deleted record. This property is read-only. | Success | Boolean | - True if deleted successfully,
- False if an error occurs.
|
Remarks Functions that use the sfDeleteResult type | | SFDelete | Deletes records from a Salesforce database. |
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|