In ACC V6 or V7, How to see the last session for a user? | Community
Skip to main content
New Participant
November 18, 2022
Solved

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

  • November 18, 2022
  • 1 reply
  • 432 views

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,

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SantoshSai

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-community

Regards,

Santosh

1 reply

SantoshSai
SantoshSaiAccepted solution
New Participant
November 19, 2022

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-community

Regards,

Santosh

Santosh Sai