ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Salesforce functions
  • Properties specific to sfUndeleteResult variables
  • WLanguage functions that use the sfUndeleteResult type
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
sfUndeleteResult (Type of variable)
In french: sfRésultatRestaure
The sfUndeleteResult type is used to find out the result of SFUndelete. The characteristics of this result are returned by several WLanguage properties.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
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")
 
arrRestore is array of strings
MyRecord is sfDeletedRecord
FOR EACH MyRecord OF ResGetDel.DeletedRecord
Add(arrRestore, MyRecord.ID)
END
 
ResRestore is array of sfUndeleteResult
ResRestore = SFUndelete(Cnt, arrRestore)
MyRestoredRec is sfUndeleteResult
FOR EACH MyRestoredRec OF ResRestore
Trace("ID = " + MyRestoredRec.ID)
Trace("Success = " + MyRestoredRec.Success)
END
Remarks

Properties specific to sfUndeleteResult variables

The following properties can be used to handle the result of SFUndelete:
NameType usedEffect
ErrorArray of sfErrorStatus report of errors.
IDCharacter stringSalesforce identifier of the restored record.
This property is read-only.
SuccessBoolean
  • True if the restore operation was performed,
  • False otherwise.
This property is read-only.

WLanguage functions that use the sfUndeleteResult type

Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 01/26/2023

Send a report | Local help