From Genesys KB
000085172
Article Type Q&A
Title How to configure CCPulse options in ObjectFormat section
Summary
Question/ Problem
How to configure CCPulse options in ObjectFormat section.
From Reporting 8.1 CCPulse+ Administrator’s Guide (Document Version: 81rt_ad_ccpulse+_11-2014_v8.1.001.00)
Example: Formatting an Agent
===
For EmployeeID=Employee, FirstName=Johnathon, and LastName=Smith
• %.5s, %.5s %.5s
produces the following result:
Emplo, John Smith
• %.6s, %.7s %.5s
produces the following result:
Employ, Johnath Smith
===
The examples do not clearly show how to setup CCPulse options in ObjectFormat section.
Answer/ Details
Example of CCPulse options for ObjectFormat section:
For EmployeeID=Employee, FirstName=Johnathon, and LastName=Smith
Agent=%.5s, %.4s %.5s; EmployeeID, FirstName, LastName
produces the following result:
Emplo, John Smith
Agent=%.6s, %.7s %.5s; EmployeeID, FirstName, LastName
produces the following result:
Employ, Johnath Smith
Examples for ObjectFormat section :
1. %d %s %d; DBID, Tenant, TenantDBID
Applicable for all objects, including Agents and DNs
2. %s; name
Applicable for all objects, except Agents
3. %s - %s.%s; EmployeeID, FirstName, LastName
Applicable only for Agents.
4. %s, %s, %s; Alias, SwitchName, Number
Applicable only for the following objects(DNs):
-DN
-ACDPosition
-Chat
-CoBrowse
-Dialer
-Email
-Extension
-ExternalRoutingPoint
-ExternalRoutingPointInTheGroup
-Fax
-Queue
-QueueInTheGroup
-RoutePoint
-RoutePointInTheGroup
-RoutingQueue
-RoutingQueueInTheGroup
-ServiceNumber
-ServiceNumberInTheGroup
-Video
-VirtualQueue
-VirtualQueueInTheGroup
-VirtualRoutePoint
-VirtualRoutePointInTheGroup
-VoiceTreatmentPort
-VoIP
Supplemental Information
For more information about object format settings and printf function, refer to http://www.cplusplus.com/reference/clibrary/cstdio/printf/.