08-01-2017 12:07 PM
TAC has referred me to come here for assistance. the following is what I am trying to do I hope I am explaining my needs correctly.
I am trying to create a report that will output file with the following information with no headers and in the order listed below.
FacilityID (static number, never changes-not from CCX database), Agent Extension, Login Date, Login Date and Time, Logout Date and Time, Total Logged in hours, Job Code (static entry, never changes - not from CCX database), Pay Code (static entry, never changes-not from CCX database).
Example: Company, 63666, 2017-06-06, 2017-06-06 15:57:00, 2017-06-06 17:57:00, 2.0, Job, Regular How can I create a value that stays the same to be used in the report for columns 1, 7 and 8? I am obviously good with getting the Agent Extension, Login Date, Login Date and Time, Logout Date and Time, Total Logged in hours from CCX as those are reportable items in the database, how do I combine that information with the static column information in the correct format?
thanks
09-01-2017 01:52 AM
FacilityID (static number, never changes-not from CCX database), Agent Extension, Login Date, Login Date and Time, Logout Date and Time, Total Logged in hours, Job Code (static entry, never changes - not from CCX database), Pay Code (static entry, never changes-not from CCX database).
Example: Company, 63666, 2017-06-06, 2017-06-06 15:57:00, 2017-06-06 17:57:00, 2.0, Job, Regular How can I create a value that stays the same to be used in the report for columns 1, 7 and 8? I am obviously good with getting the Agent Extension, Login Date, Login Date and Time, Logout Date and Time, Total Logged in hours from CCX as those are reportable items in the database, how do I combine that information with the static column information in the correct format?
This might just be a question of adding those static values to the query in report definitions.
For the example you cited, this would be something like
SELECT 'Company' as company_field, agent_extension, login_date...
FROM ...
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide