|
|
|
|
|
SaaSAdminDeleteService (Function) In french: SaaSAdminSupprimeService Deletes 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.
// Removes the "Support Forum" service from the "CRM" SaaS site S is dynamic saasSite MyService is saasService dynamic  S = SaaSAdminFindSite("CRM") MyService = SaaSAdminFindService("Support Forum", S)  SaaSAdminDeleteService(MyService)
Syntax
Deleting a SaaS service (via the saasxxx variables) Hide the details
<Result> = SaaSAdminDeleteService(<SaaSÂ service>)
<Result>: Boolean - True if the deletion was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS service>: saasService variable Name of the saasService variable corresponding to the service to be removed from the SaaS database.
Deleting a SaaS service identified by its name Hide the details
<Result> = SaaSAdminDeleteService(<SaaSÂ service> , <SaaSÂ site>)
<Result>: Boolean - True if the deletion was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS service>: Character string Name of the SaaS service to be removed from the SaaS database. <SaaS site>: Character string Name of SaaS site that owns the service to delete.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|