ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / SaaS functions
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
Finds a site in the database of SaaS Webservice.
Remarks:
  • To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
  • The SaaS administrator will have access to all SaaS sites. A manager of client accounts will only have access to the sites for which he has a subscription.
Example
// Delete the SaaS Forum site
S is dynamic saasSite
S = SaaSAdminFindSite("Forum")
IF ErrorOccurred() THEN
Error("Site not found")
ELSE
IF SaaSAdminDeleteSite(S) = True THEN
Info("Site deleted")
END
END
Syntax
<Result> = SaaSAdminFindSite(<Site>)
<Result>: saasSite variable
saasSite variable containing the description of sought site.
If the site is not found, the returned variable is empty.
<Site>: Character string
Name of sought SaaS site.
Component: wd290com.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help