ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Your version: 01F250083H (WINDEV 25)

Help / WLanguage / WLanguage functions / Communication / SalesForce functions
  • Properties specific to the description of sfSeekUpdatedResult variables
  • Functions that use the sfSeekUpdatedResult type
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadApple WatchUniversal Windows 10 AppWindows Mobile
Others
Stored procedures
sfSeekUpdatedResult (Type of variable)
In french: sfRésultatRechercheModifié (Type de variable)
The sfSeekUpdatedResult type is used to find out the result of SFSeekModified. The characteristics of this result are returned by several WLanguage properties.
Remark: See Declaring a variable for more details on the declaration of this type of variable and the use of WLanguage properties.
Example
// Connect to Salesforce
Cnt is sfConnection
Cnt..Login = "vince@gmail.com"
Cnt..Password = "qwerty" + "XXB12VCZ54"
IF SFConnect(Cnt) = False THEN
Error("The connection failed")
RETURN
END
 
ResGetModif is sfSeekUpdatedResult
ResGetModif = SFSeekModified(Cnt, "Mileage__c", "20090101", "20090131")
 
Identifier is string
FOR EACH STRING Identifier OF ResGetModif..ID SEPARATED BY CR
Trace("--- ID: " + Identifier)
END
Remarks

Properties specific to the description of sfSeekUpdatedResult variables

The following properties can be used to handle the result of SFSeekModified:
NameType usedEffect
LatestDateCoveredDateTimeDate of most recent record that is returned by SFSeekModified.
This date is in UTC format.
This property is available in read-only.
IDCharacter stringList of Salesforce identifiers of modified records (Salesforce objects). The identifiers are separated by CR characters (Carriage Return).

Remark: These properties can be used with one of the following syntaxes:
  • <Variable name>..<Property name>
  • <Variable name>.<Property name>

Functions that use the sfSeekUpdatedResult type

SFSeekModifiedSeeks and retrieves the records (Salesforce objects) modified during the specified period.
Minimum version required
  • Version 14
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/30/2020

Send a report | Local help