AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones SaaS
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
Versión mínima requerida
  • Versión 15
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 26/05/2022

Señalar un error o enviar una sugerencia | Ayuda local