|
|
|
|
|
SaaSAdminModifySite (Function) In french: SaaSAdminModifieSite Modifies a SaaS 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.
S is saasSite S = SaaSAdminFindSite("Forum") S.Name = "Old Forum" IF SaaSAdminModifySite(S) = True THEN Info("Modified site") END
Syntax
Modifying a SaaS site (via a saasSite variable) Hide the details
<Result> = SaaSAdminModifySite(<SaaS site>)
<Result>: Boolean - True if the modification was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<SaaS site>: saasSite variable Name of the saasSite variable corresponding to the SaaS site to modify.
Modifying a SaaS site identified by its name Hide the details
<Result> = SaaSAdminModifySite(<Former name> , <New name>)
<Result>: Boolean - True if the modification was performed,
- False otherwise. To get more details on the error, use ErrorInfo.
<Former name>: Character string Name of the site to modify in the SaaS database. <New name>: Character string New name of SaaS site.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|