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
Modifies a SaaS client account.
Remarks:
  • To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
  • The SaaS administrator will be able to modify all the client accounts. A client account manager will only have access to his own client account.
Example
// Changes the client name from "Hybrid" to "Hybrid Corp."
S is saasClient
S = SaaSAdminFindClient("Hybrid")
S.Name = "Hybrid corp."
 
IF SaaSAdminModifyClient(S) = True THEN
Info("The client account was successfully modified.")
END
Syntax
<Result> = SaaSAdminModifyClient(<Client account>)
<Result>: Boolean
  • True if the modification was performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Client account>: saasClient variable
Name of the saasClient variable corresponding to the SaaS Client account that must be modified in the SaaS database.
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