|
|
|
|
SaaSAdminModifyService (Function) In french: SaaSAdminModifieService 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.
// 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|