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 sfDeleteResult variables
  • Functions that use the sfDeleteResult type
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
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.
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.Subject
	Trace("---- Type : " + MonEnregistrement.ObjectType + " | 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.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 nameType usedEffect
ErrorArray of sfErrorStatus report of errors.
IDCharacter stringSalesforce identifier of the deleted record.
This property is read-only.
SuccessBoolean
  • True if deleted successfully,
  • False if an error occurs.
Remarks

Functions that use the sfDeleteResult type

SFDeleteDeletes records from a Salesforce database.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/20/2024

Send a report | Local help