Skip to end of banner
Go to start of banner

admGetLastActiveDates

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

Description

Returns a JLastActiveDates structure containing information about last active dates of the user on different products.

Parameters

Return Type

JLastActiveDates

Returns the last active dates of the user.

Example

JLastActiveDates lastActive =  admGetLastActiveDates(currentUser());
int indexCC = 1;
for(JProductLastActiveDate plad in lastActive.productLastActiveDates) {
    runnerLog("---productLastActiveDate " + indexCC + "---");   
    runnerLog("product = " + plad.product);
    runnerLog("lastActive = " + plad.lastActive);
    indexCC++;
}
runnerLog("--------------");
runnerLog("addedToOrganization = " + lastActive.addedToOrganization);

See also

  • No labels