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
Finds a SaaS subscription.
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
S is saasSite
P is saasPricing
C is saasClient
Sub is saasSubscription
 
S = SaaSAdminFindSite("Forum")
P = SaaSAdminFindPricing("Promo 2010", S)
C = SaaSAdminFindClient("Hybrid")
Sub = SaaSAdminFindSubscription(P, C)
IF ErrorOccurred = False THEN
Info("The client has subscribed to this pricing")
END
Syntax

Finding a subscription (via saasxxx variables) Hide the details

<Result> = SaaSAdminFindSubscription(<Pricing> , <Client account>)
<Result>: saasSubscription variable
saasSubscription variable containing the description of sought subscription.
If the search failed, the returned variable is empty.
<Pricing>: saasPricing variable
Name of saasPricing variable corresponding to the pricing for which the subscription is sought.
<Client account>: saasClient variable
Name of saasClient variable corresponding to the client account for which the subscription is sought.

Finding a subscription by using the pricing name Hide the details

<Result> = SaaSAdminFindSubscription(<Pricing> , <SaaS site> , <Client account>)
<Result>: saasSubscription variable
saasSubscription variable containing the description of sought subscription.
If the search failed, the returned variable is empty.
<Pricing>: Character string
Name of pricing for which the subscription is sought.
<SaaS site>: Character string
Name of SaaS site that owns the pricing.
<Client account>: Character string
Name of client account for which the subscription is sought.
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