Développer ma barre des réalisations de la Communauté.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Cette conversation a été verrouillée en raison de son inactivité. Veuillez créer une nouvelle publication.

RÉSOLU

In ACC V6 or V7, How to see the last session for a user?

Avatar

Level 2

Dear Team, 

We need to know if someone was connected to the system in ACC V6, and to get the time of their last connection.

Is there any way to do that?

 

Kind regards,

 

 

1 solution acceptée

Avatar

Réponse correcte par
Community Advisor

Hi @sguerra,

  1. Last access date reside in logins.log file.
  2. Below script can be used in java script activity in the workflow to be able to pull the logs from this file directly in the Audit logs :
    var f = new File( "/usr/local/neolane/nl6/var/"+ Application.instanceName +"/logins.log" );
    var arr = ;
    f.open()
    for each(var line in f)
      {
        arr.push( line )
      }
    for ( var i = arr.length - 1; i = 0; i-- )
    logInfo(arri);
    f.close()​

However, I would urge you to post your question here Adobe Campaign Classic v7 & Campaign v8 [0] to get better response.

[0]: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign/ct-p/adobe-campaign-classic-communit...

Regards,

Santosh


Santosh Sai

AEM BlogsLinkedIn


Voir la solution dans l'envoi d'origine

1 Reply

Avatar

Réponse correcte par
Community Advisor

Hi @sguerra,

  1. Last access date reside in logins.log file.
  2. Below script can be used in java script activity in the workflow to be able to pull the logs from this file directly in the Audit logs :
    var f = new File( "/usr/local/neolane/nl6/var/"+ Application.instanceName +"/logins.log" );
    var arr = ;
    f.open()
    for each(var line in f)
      {
        arr.push( line )
      }
    for ( var i = arr.length - 1; i = 0; i-- )
    logInfo(arri);
    f.close()​

However, I would urge you to post your question here Adobe Campaign Classic v7 & Campaign v8 [0] to get better response.

[0]: https://experienceleaguecommunities.adobe.com/t5/adobe-campaign/ct-p/adobe-campaign-classic-communit...

Regards,

Santosh


Santosh Sai

AEM BlogsLinkedIn