|
|
|
|
SaaSAdminFindClient (Function) In french: SaaSAdminChercheClient 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.
// 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|