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 client.
Remarks:
  • To use this function, a SaaS management session must have been started previously with SaaSAdminConnect.
  • The SaaS Administrator will have access to all the client accounts. A client account manager will only have access to his own client account.
Example
// Finds information about the "Hybrid" client
S is saasClient dynamic
S = SaaSAdminFindClient("Hybrid")
IF S = Null THEN
Error("Customer not found")
ELSE
IF SaaSAdminDeleteClient(S) = True THEN
Info("Client deleted")
END
END
Syntax
<Result> = SaaSAdminFindClient(<Sought client>)
<Result>: saasClient variable
saasClient variable containing the description of client account if the search was successful.
The returned variable is empty if the client was not found.
<Sought client>: Character string
Information used to identify the client:
  • Client name.
  • Corporate name.
  • External reference.
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