Agent level call detail record and status can be obtained by many other metholds.
Some methods are (but not limited to!)
1. Genesys call con
   - CDRs are stored into database tables by the ccon server
   - ccon server requires specific Genesys license
2. Status table
   - agent status table captured by Stat server (via DAP and DB server)
3. customized records written by front-end soft-phone, phone-bar and equivalence
   - soft-phone should get sufficient telephony information from T-server
   - call type, timestamps, duration, agent mode and so forth can be written into customised table for specific reports
Method 2 (Status table) may be the most suitable, depending on requirements
Please read Stat Server 6.5 manual, 65fr_us-statserver.pdf, for details
It is suggested to review and verify table fields in "Status Table"; they may not be sufficient for your specific user requirements
Brief steps are outlined below.
1. Database / table creation
   - the Status table can be created in existing database
   - a specifc table creation script can be found in Stat server folder (after installation!)
   - optional separate new database may be created for the Status table
2. Create Genesys DB server and DAP for Status server if not exist now
   - installation of DB server for Status server in computer server
   - configure DB server and DAP in Genesys Configuration Manager
3. Enablement of agent status writing in Genesys Configuration Manager
   - Add (if not exist) option "StatusTable" = "yes", in Stat Server application
   - see manualfor details
4. Customized queries or programs for required agent statistics
   - major fields in Status table includes
     -> AgentDBID (database ID, DBID, of an agent),
     -> PlaceDBID (DBID, of the place associated with the agent whose ID is displayed in the AgentDBID field)
     -> Status (list of agent status including CallInbound, ...)
     -> StartTime (UTC)
     -> Duration (in second)
     -> EndTime (UTC)
     -> ConnID
 Note: Disadvantage of this method is that you need to 'join' a number of "cfg_" tables to get agent names and loginIDs
Stat Server writes, if enabled, couple more tables; QINFO and LOGIN tables.
regards