|
|
|
|
SaaSAdminAddService (Function) In french: SaaSAdminAjouteService Adds a SaaS service into the description of a site. 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.
// Add the "Post a message" service into the "Forum" site S is dynamic saasSite MessageService is saasService S = SaaSAdminFindSite("Forum") MessageService.Name = "Post a message" SaaSAdminAddService(MessageService, S)
Syntax
Adding a SaaS service (via the saasxxx variables) Hide the details
<Result> = SaaSAdminAddService(<SaaS service> , <SaaS site>)
<Result>: Boolean - True if the addition was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS service>: saasService variable Name of saasService variable containing the description of service to add. <SaaS site>: saasSite variable Name of saasSite variable corresponding to the SaaS site that receives the new service.
Adding a new SaaS service identified by its name Hide the details
<Result> = SaaSAdminAddService(<SaaS service> , <SaaS site>)
<Result>: Boolean - True if the addition was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS service>: Character string Name of new SaaS service. <SaaS site>: Character string Name of SaaS site that receives the new service.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|