ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / SaaS functions
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
SaaSAdminPricingDisableService (Function)
In french: SaaSAdminDésactiveService
Disables a service in a SaaS pricing.
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
S is dynamic saasSite
P is dynamic saasPricing
CRMService is dynamic saasService
 
S = SaaSAdminFindSite("Forum")
P = SaaSAdminFindPricing("Promo 2010", S)
CRMService = SaaSAdminFindService("CRM", S)
 
// Disables the CRM service for the subscribers of "Promo 2010"
SaaSAdminPricingDisableService(P, CRMService)
Syntax

Disabling a service (via saasxxx variables) Hide the details

<Result> = SaaSAdminPricingDisableService(<Pricing> , <Department>)
<Result>: Boolean
  • True if the disable operation was performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: saasPricing variable
Name of the saasPricing variable corresponding to the pricing to use. The service will be removed from this pricing.
<Department>: saasService variable
Name of saasService variable identifying the service that will be removed from the list of services supplied by the pricing.

Disabling a service identified by its name Hide the details

<Result> = SaaSAdminPricingDisableService(<Pricing> , <Department> , <SaaS site>)
<Result>: Boolean
  • True if the disable operation was performed,
  • False otherwise. To get more details on the error, use ErrorInfo.
<Pricing>: Character string
Name of pricing. The service will have to be removed from this pricing.
<Department>: Character string
Name of service that will be removed from the list of services supplied by the pricing.
<SaaS site>: Character string
Name of SaaS site affected by the pricing and service.
Remarks
The service will automatically become unavailable to all subscribers to this pricing.
Component: wd290com.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help