" /> Simple Brio problem - Genesys CTI User Forum

Author Topic: Simple Brio problem  (Read 6130 times)

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Simple Brio problem
« on: February 10, 2009, 11:31:06 AM »
Advertisement
So simple that I can't sort it!

Have a report that is stripping the HH, MM and SS from a computed column.
The computed column is fine, the HH and SS is fine, however, the MM (minutes) column has developed an issue.

If I process the report prior to the 3rd Feb, the results are 2 digits (all under 60 of course), post 3rd Feb, the column return 2 digits and 5 decimal places.

I've tried to change the way the number is displayed but it doesn't change.

Knock on effect is another column (with date and total time in HH:MM:SS) looks completely wrong!

Any suggestions?

Cheers Mark :D
(been away a while I know!!)

tony

  • Guest
Re: Simple Brio problem
« Reply #1 on: February 10, 2009, 04:43:19 PM »
Hi Mark - nice to hear from you again - welcome back!

[list]
[li]Right-Click and check the Format of the column - Is it a standard format, or a custom one..?  Can you change it..?[/li]
[li]Have any of your CCA components been upgraded recently?  That includes SQL/Oracle...[/li]
[li]Could you strip out the report and put a copy of the .bqy file on here...?  Obviously remove the results, aside from 2 comparison dates and I can have a quick look...[/li]
[/list]

Tony

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Re: Simple Brio problem
« Reply #2 on: February 11, 2009, 10:11:44 AM »
Morning Tony :D

Nothing has changed in terms of components that we are aware of (I only started Monday, so something may have happened that hasn't been logged and that nobody wants to admit to).


Just ran the report again, this time it has processed correctly for all days since the 5th (yesterday it was erroring on all days from the 3rd)!!
One of those very odd things I think.

Unable to get the .bqy file as I have to connect to a specific box (via remote desktop) and unable to map directly to the drive which holds the files from my own desktop :/

tony

  • Guest
Re: Simple Brio problem
« Reply #3 on: February 11, 2009, 11:05:58 AM »
Corrupt data in the table...?

Weird!

Tony

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Re: Simple Brio problem
« Reply #4 on: February 11, 2009, 12:31:29 PM »
Oddly the data that its using to compute is fine, its purely the result that shows incorrectly.

Very odd. I'm going to blame this on Canada.

tony

  • Guest
Re: Simple Brio problem
« Reply #5 on: February 11, 2009, 12:32:49 PM »
Timezone/Time Settings on the Server/Desktop....???

OK - I'm clutching at straws... I'll stop now... lol

Tony

Offline Cuore_2003

  • Newbie
  • *
  • Posts: 22
  • Karma: 0
Re: Simple Brio problem
« Reply #6 on: February 12, 2009, 09:19:17 AM »
Can you extract in a column only the seconds of the incorrect column?

I mean:
- First column extract HH
- Second column MM (or in first column, HH and MM are corrects)
- Third column SS

If SS data are incorrect displayed perhaps you can set the correct format and set a new column with HH MM SS.
That’s not a solution but, perhaps you could solve the incident.

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Re: Simple Brio problem
« Reply #7 on: February 12, 2009, 01:07:34 PM »
[quote author=Cuore_2003 link=topic=3831.msg16653#msg16653 date=1234430357]
Can you extract in a column only the seconds of the incorrect column?

I mean:
- First column extract HH
- Second column MM (or in first column, HH and MM are corrects)
- Third column SS

If SS data are incorrect displayed perhaps you can set the correct format and set a new column with HH MM SS.
That’s not a solution but, perhaps you could solve the incident.

[/quote]

HH, MM and SS are already extracted separately, for a couple of days only, the MM was giving an incorrect format. Its ok for now though, which makes it quite odd!

tony

  • Guest
Re: Simple Brio problem
« Reply #8 on: February 13, 2009, 03:09:57 PM »
MM is sometimes translated as "MONTH".  Isn't it NN for seconds...?

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Re: Simple Brio problem
« Reply #9 on: February 13, 2009, 03:41:48 PM »
[quote author=Tony Tillyer link=topic=3831.msg16721#msg16721 date=1234537797]
MM is sometimes translated as "MONTH".  Isn't it NN for seconds...?
[/quote]

Possibly, what we have is the HH being broken down into mins by the calculation:

if (Math.floor((T_Inbound_Talk - (Total_Inbound_Talk_Time_HH * 3600)) / 60) < 10)  {
        "0" + Math.floor((T_Inbound_Talk - (Total_Inbound_Talk_Time_HH * 3600)) / 60)
}
else    {
        Rtrim(Math.floor((T_Inbound_Talk - (Total_Inbound_Talk_Time_HH * 3600)) / 60), '.')
}

then the column for it is just named MM etc


tony

  • Guest
Re: Simple Brio problem
« Reply #10 on: February 13, 2009, 03:56:19 PM »
My eyes aren't what they used to be but isn't this saying; if it's under 10 seconds, mark it as zero seconds - otherwise return the number of seconds...?

Offline mark

  • Sr. Member
  • ****
  • Posts: 415
  • Karma: 2
Re: Simple Brio problem
« Reply #11 on: February 16, 2009, 11:22:59 AM »
To me it looks like its saying if its less than 10, apend a 0, so that it keeps it at 2 digits.