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
Lists the SaaS subscriptions associated with a site or pricing.
Remarks:
  • To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
  • The SaaS Administrator will have access to all subscriptions. A manager of client accounts will have access to his own subscriptions.
Example
// Count the global number of subscriptions
arrSub is array of saasSubscription
arrClient is array of saasClient
 
arrSub = SaaSAdminListSubscription("CRM")
arrClient = SaaSAdminListClient()
Info("The CRM site contains " + arrSub.Count + " subscribers (for all client accounts)")
Syntax

Listing the subscriptions to a SaaS site Hide the details

<Result> = SaaSAdminListSubscription(<SaaS site>)
<Result>: Array of saasSubscription variables
saasSubscription type containing the list of subscriptions to the desired site.
<SaaS site>: saasSite variable or character string
Name of the saasSite variable (or site name) that corresponds to the SaaS site for which subscriptions are to be found.
If this parameter is a character string, it must correspond to the site name.

Listing the subscriptions to a pricing (via saasxxx variables) Hide the details

<Result> = SaaSAdminListSubscription(<Pricing>)
<Result>: Array of saasSubscription variables
saasSubscription variable containing the list of subscriptions at the specified pricing.
<Pricing>: saasPricing variable
saasPricing variable corresponding to the pricing for which the subscriptions will be listed.

Listing the subscriptions to a pricing (identified by its name) Hide the details

<Result> = SaaSAdminListSubscription(<Pricing> , <SaaS site>)
<Result>: Array of saasSubscription variables
saasSubscription variable that corresponds to the list of subscriptions at the specified pricing.
<Pricing>: Character string
Name of the pricing for which the subscriptions will be listed.
<SaaS site>: Character string
Name of the SaaS site associated with the 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