Sessioncount()

Returns the number of sessions in a given application name, or if not specified, the total sessions across all applications

Usage

NUMERIC = Sessioncount( name )
Argument Summary
name name - the application name (optional) [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Sessioncount(
   name=?
);

Supports passing parameters as a structure using ArgumentCollection:

Sessioncount( ArgumentCollection={
   name : ?
} );