- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi Kapil,
This is from my local instance with internal login
I can see the stored session information from the schema.
My sysfilter in schema definition for xtk:sessionInfo is :
If this is the same as yours , then the alternate process can be to simply run a JS code to query the information from the database directly
var cnx = application.getConnection()
var stmt = cnx.query("select * from xtksessioninfo;")
for each(var row in stmt)
logInfo(row);
cnx.dispose();
and then manipulate the logs to extract information required and create the report
Regards,
Adhiyan