|
|
|
|
|
SaaSAdminListVisit (Function) In french: SaaSAdminListeVisite Returns the list of visits to a SaaS site. Remark: This function can be run outside the relevant SaaS site. FOR EACH v OF SaaSAdminListVisit("MySaaS", "", DateSys()) // Duration of connections of all customers to MySaaS from today Trace(v.Duration) END
Syntax
List visits to a SaaS site (using saasxxx variables) Hide the details
<Result> = SaaSAdminListVisit(<SaaS site> , <Client account> [, <Start date> [, <End date>]])
<Result>: Array of saasVisit Array of a variable of type saasVisit. <SaaS site>: saasSite variable Name of the saasSite variable corresponding to the SaaS site for which visits are filtered. If this parameter corresponds to an empty string (" "): - the administrator will be able to list visits to all SaaS sites.
- account managers will be able to list all the SaaS sites to which they are subscribed.
<Client account>: saasClient variable Name of the saasClient variable corresponding to the SaaS client account for which visits are filtered. If this parameter corresponds to an empty string, this parameter will not be taken into account in the filter. <Start date>: Optional DateTime Date and time from which visits are filtered. <End date>: Optional DateTime Date and time until which visits are filtered.
List visits to a SaaS site identified by name Hide the details
<Result> = SaaSAdminListVisit(<SaaS site> , <Client account> [, <Start date> [, <End date>]])
<Result>: Array of saasVisit Array of a variable of type saasVisit. <SaaS site>: Character string Name of SaaS site for which visits are filtered. If this parameter corresponds to an empty string (" "): - the administrator will be able to list visits to all SaaS sites.
- account managers will be able to list all the SaaS sites to which they are subscribed.
<Client account>: Character string Name of SaaS client account for which visits are filtered. If this parameter corresponds to an empty string (""), this parameter will not be taken into account in the filter. <Start date>: Optional DateTime Date and time from which visits are filtered. <End date>: Optional DateTime Date and time until which visits are filtered. Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|