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 service.
Remarks:
  • To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
  • The use of this function is reserved to the SaaS administrator. A manager of client accounts cannot use this function.
Example
// Rename the "Post a message" service of "Forum" site to "Post messages"
S is dynamic saasSite
MyService is saasService dynamic
 
S = SaaSAdminFindSite("Forum")
 
MyService = SaaSAdminFindService("Post a message", S)
MyService.Name = "Post messages"
 
SaaSAdminModifyService(MyService)
Syntax

Renaming a SaaS service (via the saasxxx variables) Hide the details

<Result> = SaaSAdminModifyService(<SaaS service>)
<Result>: Boolean
  • True if the modification was performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<SaaS service>: saasService variable
Name of the saasService variable that corresponds to the service to be modified.

Renaming a SaaS service identified by its name Hide the details

<Result> = SaaSAdminModifyService(<Former service name> , <SaaS site> , <New service name>)
<Result>: Boolean
  • True if the modification was performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Former service name>: Character string
Former name of service to modify in the SaaS database.
<SaaS site>: Character string
Name of SaaS site that owns the service.
<New service name>: Character string
New name that will be given to the service.
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