Time difference by date by time range - a better way?

Someone suggested this is a better place for my question:
Hi
I need to display the difference in time - every day for different time ranges,
Example 1-2 pm, 4-5 pm, 7-8 pm. And I need the time difference in 2 dates in the past week for each of these ranges everyday.
example
Date Diff Range
01/01/2007 00:01 1-2pm
01/02/2007 00:03
01/03/2007 00:10
01/04/2007 00:05
01/05/2007 00:23
01/01/2007 00:10 4-5pm
01/02/2007 00:13
01/03/2007 00:11
01/04/2007 00:15
01/05/2007 00:23
01/01/2007 01:10 7-8pm
01/02/2007 00:13
01/03/2007 00:10
01/04/2007 00:11
01/05/2007 00:21
One way to achieve this is to have multiple unions for each day and each time range.
Example:
select
from
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 13:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 14:00','mm/dd/yyyy hh24:mi:ss')
union
select
from
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 16:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 17:00','mm/dd/yyyy hh24:mi:ss')
union
select
from
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 19:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 20:00','mm/dd/yyyy hh24:mi:ss')
This will give me the required information for only one day - and that is for sysdate-5.
I will have same nyumber of unions for each day.
Is there a better way to accomplish the same?
Any help appreciated.
Thx!

Hi
Sorry for the late response but better late than never:::
I have gotten the answer of getting data for previous 5 days. I have changed the time between statement and is given below(*).
Here is a reply to all the questions you had asked in response to my questions.
What data you have? What parameters are you going to input?
I have already given sample data in my post.
There are no input parameters.
You are talking about the difference - between what is this difference?
Difference is the difference between 2 timestamp datatypes in 2 different tables (as you may see in the query)
The field diff - is it varchar2 like '1-2 pm' or what?
I didnt understand your question. What do you get when you subtract two timestamp datatypes - that should be the datatype - if I have understood your question. Not sure if thats what you asked.
But IMHO it's impossible to get such a result, of course, if dt_tm in the query is the same as Date in the result!
The time components in the queries are different. If you see:
1st Query:...
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 13:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 14:00','mm/dd/yyyy hh24:mi:ss')
2nd Query:....
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 16:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 17:00','mm/dd/yyyy hh24:mi:ss')
3rd Query:
where dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 19:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 20:00','mm/dd/yyyy hh24:mi:ss')
First should be between 1 and 2 pm for sysdate-5.
I need starting previous 5 days till sysdate.
Second is between 4 and 5 pm again for sysdate-5.
I need starting previous 5 days till sysdate.
Same with 3rd.
My final query is something like this:
select t1.dt_tm, count(t1.id), '1 - 3 am' as period
from table1 t1, table2 t2
where t1.id = t2.id
and dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 13:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 14:00','mm/dd/yyyy hh24:mi:ss')
group by t1.dt_tm
union
select t1.dt_tm, count(t1.id), '4 - 5 pm' as period
from table1 t1, table2 t2
where t1.id = t2.id
and dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 16:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 17:00','mm/dd/yyyy hh24:mi:ss')
group by t1.dt_tm
union
select t1.dt_tm, count(t1.id), '7 -8 pm' as period
from table1 t1, table2 t2
where t1.id = t2.id
and dt_tm between
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 19:00','mm/dd/yyyy hh24:mi:ss')and
to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 20:00','mm/dd/yyyy hh24:mi:ss')
group by t1.dt_tm
I need for the last 5 days and what i can think of is have 5 different queries for past 5 days and 3 queries per day for the 3 different time periods. This would mean 15 queries. Was wondering if there is a better way to achieve the same?
Any help appreciated.
Thx!

Similar Messages

  • Time difference issue - need a better way

    Hi
    I need to display the difference in time - every day for different time ranges,
    Example 1-2 pm, 4-5 pm, 7-8 pm. And I need the time difference in 2 dates in the past week for each of these ranges everyday.
    example
    Date Diff Range
    01/01/2007 00:01 1-2pm
    01/02/2007 00:03
    01/03/2007 00:10
    01/04/2007 00:05
    01/05/2007 00:23
    01/01/2007 00:10 4-5pm
    01/02/2007 00:13
    01/03/2007 00:11
    01/04/2007 00:15
    01/05/2007 00:23
    01/01/2007 01:10 7-8pm
    01/02/2007 00:13
    01/03/2007 00:10
    01/04/2007 00:11
    01/05/2007 00:21
    One way to achieve this is to have multiple unions for each day and each time range.
    Example:
    select
    from
    where dt_tm between
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 13:00','mm/dd/yyyy hh24:mi:ss')and
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 14:00','mm/dd/yyyy hh24:mi:ss')
    union
    select
    from
    where dt_tm between
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 16:00','mm/dd/yyyy hh24:mi:ss')and
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 17:00','mm/dd/yyyy hh24:mi:ss')
    union
    select
    from
    where dt_tm between
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 19:00','mm/dd/yyyy hh24:mi:ss')and
    to_date(to_char((sysdate-5),'mm/dd/yyyy')||' 20:00','mm/dd/yyyy hh24:mi:ss')
    This will give me the required information for only one day - and that is for sysdate-5.
    I will have same nyumber of unions for each day.
    Is there a better way to accomplish the same?
    Any help appreciated.
    Thx!

    Time difference by date by time range - a better way?

  • HTML form Date field - what's the best way to capture it on the backend?

    Hi,
    What would be a good way to capture a text field that contains a date string?
    In my app I have a page with several text fields, that are populated by a calendar pop-up. On the server side I can capture them into a java.util.Date object, but Date is dperecated.
    Should I still use Date or is there a better way?
    I intend to use the date as part of an SQL query.
    Thanks.

    The class java.util.Date is not itself deprecated, however several of its methods are.
    For converting string -> date, you should use the class java.text.SimpleDateFormat. That allows you to specify format strings such as MM-dd-yyyy hh:mm:ss for converting date -> string -> date.
    If you are wanting to set day/month/year on the date object directly, instead of the Date methods setDay, setMonth, setYear, you should instead use the java.util.Calender class:
    calendar.set(Calendar.MONTH, 4);
    The calendar can then be converted to a Date object by calling calendar.getTime().
    If you are going to use the date as part of a sql query, I would recommend using a Prepared statement, and the java.sql.Date/java.sql.Timestamp class as well.
    To convert from java.util.Date to java.sql.Date)
    jva.util.Date utilDate = Calendar.getInstance().getTime();
    java.sql.Date sqlDate = new java.sql.Date(utilDate.getTime());cheers,
    evnafets

  • Discrete time range over date range  (using CR X1)

    Post Author: sjr
    CA Forum: Formula
    Can anyone show me how to select data over a discrete time range i.e. 6 p.m. till 11 p.m. per day, over a period of a month ?
    Using the data time parameter gives me data from 6p.m. on startdate right through till 11p.m. on endate.

    Here's a more detailed description...
    Create two formula fields to split the date and time from the data records (ds prefixed):
    dsDate
    dsTime
    Create two formula fields to split the date and time from the parameter fields (pm prefixed):
    pmStartDate
    pmStartTime
    pmStartDate
    pmStartTime
    Use your new formula fields in the record selector. Get to this off the Report menu button (in CR 2008):
    Report | Select Expert... | Record.
    You can pick the formula fields in the Forumula Editor to create something like:
    ({@dsDate} > {@pmStartDate} and
    {@dsDate} < {@pmEndDate}) and
    ({@dsTime} > {@pmStartTime} and
    {@dsTime} < {@pmEndTime)
    Tim

  • Collapsing rows - date/time ranges

    Hi,
    I need to collapse date/time ranges (1 range per row) into the smallest continuous block for a particular item, instance (date/time).
    For example,
    CREATE TABLE "BLOCK_TEST"
       "ID" NUMBER,
       "START_BLK" DATE,
       "STOP_BLK" DATE
    alter session set nls_date_format = "YYYY-MM-DD HH24:MI";
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 01:00'), TO_DATE('2006-07-03 01:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 01:30'), TO_DATE('2006-07-03 02:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 02:00'), TO_DATE('2006-07-03 02:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 02:30'), TO_DATE('2006-07-03 03:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 03:30'), TO_DATE('2006-07-03 04:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (1, TO_DATE('2006-07-03 04:00'), TO_DATE('2006-07-03 04:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 02:00'), TO_DATE('2006-07-03 02:30'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 02:30'), TO_DATE('2006-07-03 03:00'));
    INSERT INTO BLOCK_TEST ("ID","START_BLK","STOP_BLK") VALUES (2, TO_DATE('2006-07-03 03:00'), TO_DATE('2006-07-03 03:30'));
    select * from block_test order by id, start_blk;
    ID      START_BLK               STOP_BLK
    1     2006-07-03 01:00     2006-07-03 01:30
    1     2006-07-03 01:30     2006-07-03 02:00
    1     2006-07-03 02:00     2006-07-03 02:30
    1     2006-07-03 02:30     2006-07-03 03:00
    1     2006-07-03 03:30     2006-07-03 04:00
    1     2006-07-03 04:00     2006-07-03 04:30
    2     2006-07-03 02:00     2006-07-03 02:30
    2     2006-07-03 02:30     2006-07-03 03:00
    2     2006-07-03 03:00     2006-07-03 03:30If ID = 1 and my instance is 2006-07-03 01:45, I need to obtain 2006-07-03 01:00 as the start of the block and 2006-07-03 03:00 as the end - notice the gap from 3:00 to 3:30 so the end would not be 4:30.
    I can do this in a procedure but I was wondering if this could be done with just SQL?
    Any hints, suggestions or opinions would be welcome.
    Thanks,
    dfg
    EDIT: After re-reading this, need to clarify that I don't need to actually change or update the rows, just query to get the start and end of the block in question...
    Message was edited by:
    Indy

    There might be better ways but the following worked for me
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 01:45', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    FIRST_VALUE(STAR FIRST_VALUE(STOP
    2006-07-03 01:00 2006-07-03 03:00
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 03:15', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    no rows selected
    SQL> select
      2        first_value(start_blk) over (partition by id ORDER BY lvl desc),
      3        first_value(stop_blk) over (partition by id ORDER BY lvl desc)
      4  from (select level lvl, id, connect_by_root start_blk start_blk, stop_blk
      5        from (select id , start_blk, stop_blk
      6              from   block_test
      7              where  id=1
      8             )
      9        connect by prior stop_blk=start_blk
    10        order by level desc
    11       )
    12  where to_date('2006-07-03 03:45', 'YYYY-MM-DD HH24:MI') between start_blk and stop_blk
    13  and rownum < 2
    14  ;
    FIRST_VALUE(STAR FIRST_VALUE(STOP
    2006-07-03 03:30 2006-07-03 04:30
    SQL>

  • How do i filter the records in analytic view by using variable/parameter for a time range

    i have a analytic view which has a output column as date type. i want the user who use this view have the control to decided the output records based on a time range (from x to y).
    i tried to create 2 variables, 1 for start_time, 1 for end_time. Ideally, i should have a expression for filtering data like this:
    $$start_time <= date_column <= $$end_time
    However, the variable windows doesn't seem to be feasible for the expression as above.
    Does anyone has the same problem and get it solved?
    Thanks!

    just figured out by my own. So the answer is using "variable" with "range" option.
    Making a variable, then set the "selection type" to "range".
    When preview the data, the variable input window pops up with operator on default "equal", use dropdown list to swtich it to "between", then you can enter the start_time and end_time as a range filter.

  • Custom Exit for determining previous-year time range

    Dear all:
    I have a problem about custom exit:
    We have created a new object for combining Fiscal Year/Month and Period. So the format will be shown as " yyyymmp"
    now we have one requirement which is determining the same period but previous year based on user input. For Example, if user input start and end period as
    "2006041" and "2006111". There are should be 2 custom exit which are able to convert the user input to be "2005041" and "2005111". We created 2 custom exit for telling the previous-year period.
    Then based on this converted time range, we should be able to extract applicable data. But after testing, we cant get supposing result. The code is following:
    We will be very grateful for any input. thank you all so much
    Calculate (Start)previous year/month/period by current
    *year/month/period
    *user-entry calendar year/month/period
    WHEN 'ZFACLV19'.
          LOOP AT i_t_var_range INTO loc_var_range
          WHERE vnam = 'ZFACYMP1'.
            CLEAR l_s_range.
            LOC_YEAR = LOC_VAR_RANGE-LOW(4).
            LOC_MONTH = LOC_VAR_RANGE-LOW+4(2).
              LOC_YEAR = LOC_YEAR - 1.
            L_S_RANGE-LOW(4) = LOC_YEAR.
            L_S_RANGE-LOW+4(2) = LOC_MONTH.
            L_S_RANGE-LOW6(1) = LOC_VAR_RANGE-LOW6(1).
            l_s_range-sign = 'I'.
            l_s_range-opt = 'EQ'.
            APPEND l_s_range TO e_t_range.
            EXIT.
          ENDLOOP.
    Calculate (End)previous year/month/period by current
    *year/month/period
    *user-entry calendar year/month/period
    WHEN 'ZFACLV20'.
    break ab_william.
          LOOP AT i_t_var_range INTO loc_var_range
          WHERE vnam = 'ZFACYMP2'.
            CLEAR l_s_range.
            LOC_YEAR = LOC_VAR_RANGE-LOW(4).
            LOC_MONTH = LOC_VAR_RANGE-LOW+4(2).
              LOC_YEAR = LOC_YEAR - 1.
            L_S_RANGE-LOW(4) = LOC_YEAR.
            L_S_RANGE-LOW+4(2) = LOC_MONTH.
            L_S_RANGE-LOW6(1) = LOC_VAR_RANGE-LOW6(1).
            l_s_range-sign = 'I'.
            l_s_range-opt = 'EQ'.
            APPEND l_s_range TO e_t_range.
            EXIT.
          ENDLOOP.
    SzuFen

    Hi,
    Try with following modifications:
    ZYEAR1(4) = LOC_VAR_RANGE-LOW(4).
    ZYEAR1(4) = ZYEAR1(4)- 1.
    ZMONTH1(2) = LOC_VAR_RANGE-LOW+4(2).
    CONCATENATE ZYEAR1(4) ZMONTH1(2) INTO LOC_VAR_RANGE-LOW(6).
    With rgds,
    Anil Kumar Sharma .P

  • Can't get printouts with Time Range I select

    I've had this problem since Leopard, and since I'm still having it all these years later in Mountain Lion, I figure I must be doing something wrong, and it can't have been an unfixed bug all this time. I'm trying to print a week view that doesn't begin on Sunday. (E.g., right now I'm trying to print a week that starts today, Friday, and ends next Thursday, which would be Oct. 26-Nov. 1.) I select the Time Range I want in the Print window, but the software always ignores the dates I've entered and prints the week beginning the previous Sunday anyway (Oct. 21-27).
    I've grown tired of crossing out the printouts and hand writing in the correct dates myself, so is there something I'm missing to get the Time Range feature to work? Thank you.

    I've had this problem since Leopard, and since I'm still having it all these years later in Mountain Lion, I figure I must be doing something wrong, and it can't have been an unfixed bug all this time. I'm trying to print a week view that doesn't begin on Sunday. (E.g., right now I'm trying to print a week that starts today, Friday, and ends next Thursday, which would be Oct. 26-Nov. 1.) I select the Time Range I want in the Print window, but the software always ignores the dates I've entered and prints the week beginning the previous Sunday anyway (Oct. 21-27).
    I've grown tired of crossing out the printouts and hand writing in the correct dates myself, so is there something I'm missing to get the Time Range feature to work? Thank you.

  • Problem printing my time range

    I'm trying to print my iCal weekly view for the range of 10am to 8pm, but when I print it prints the whole day (12am to 10pm!). In the prefs I have "day starts" and "day ends" to the proper times. And if I set view to "Day" it prints the right range. Any reason it would be doing this, or does anyone know of a workaround so I can print just the time range I want?
    Thanks,
    Tony
    Power Mac G5   Mac OS X (10.4.9)  

    I don't see any problems with your permissions.. it is showing read and write for everyone.
    But the TC trash works differently.. and can cause issues.. all of this is the reason you should not be using the TC as a NAS..
    See E6 here about emptying trash..
    http://pondini.org/TM/Troubleshooting.html
    Also your TC name is too long.
    See C9 for why you should keep you name shorter..
    In fact under Mavericks.. I would stick to SMB standard .. 2-20 characters.. less than 10 even better.
    No spaces
    Pure alphanumeric.
    Much pain when Mavericks is involved.
    Pondini also has some instructions on better way to use the TC if you do want to mix data and TM backups.
    Q3 here.
    http://pondini.org/TM/Time_Capsule.html
    Remember also if you move this data to the TC it cannot be backed up by Time Machine in the computer.. and you will have no backup of your files.

  • Printing time range month view

    This is driving me crazy. All I want to do is print the start time and the end time in month view. The problem is that I only get a start time for the event. Or if I try to enter the time in the even manually I get a time and a time range. The only way i found that works is to check the all day box then enter the time range manually in the event (3:00-5:00). When I print it works, but it screws up the snyc to my pda, and the list view. Any ideas?

    I don't know whether this a "solution" or a work-around, but I did find a way to resolve this problem. I recently started using iCal by transferring appointments from a BlackBerry using the BlackBerry PocketMac software. Although all of the appointment times appeared on the monthly calendar, most of the appointment times were replaced by ellipses when the monthly calendar was printed. It turns out that the times would print only after re-entering the appointment manually. This had to be done completely from scratch, i.e., not by editing the original appointment, or by cutting and pasting the appointment back into the calendar. This is a complete pain, but seems to work. I'd love to hear a better solution...

  • Need to determine how to specify a time range in the COUNTIFS criteria

    I'm using the following formula to identify individuals in a list of individuals performing  a task and categorizing the time they complete it in: =COUNTIFS($A:$A,"someperson",$D:$D,G1) , where G1 is <=4:00:00.  What I what do
    do is have G1 define a time range such as: equal to between 4:00:00 and 8:00:00.  I just can't figure out the proper syntax.
    Any help would be appreciated

    =COUNTIFS($A:$A,"someperson",$D:$D,">=4:00",$D:$D,"<=8:00")
    or 
    =COUNTIFS($A:$A,"someperson",$D:$D,">=" & G1,$D:$D,"<=" & G2)
    Where G1 has 4:00 and G2 has 8:00 
    or
    =COUNTIFS($A:$A,"someperson",$D:$D,">=" & G1,$D:$D,"<=" & G1 + 4/24)
    where G1 has 4:00 and you want a 4 hour window.

  • History - recent history -time range not showing

    Hi i have a problem with clearing my recent history.
    The problem is my time range to clear is buged and not showing.
    I tried with reinstalling firefox and clearing all settings but it didn't help.
    So i decided to write here for some help.
    Thanks

    I've installed the Bulgarian Firefox version and I see the same small Clear Recent History window.
    The DOM Inspector shows a width of 14em and that is really too small compared to what I get with the en-US version (width: 34em).
    Add code to the userChrome.css file below the default @namespace line to increase the default width.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #SanitizeDialog {width: 34em !important;}</nowiki></pre>
    See:
    *view-source:chrome://browser/locale/sanitize.dtd
    Sounds that something got wrong here and maybe a bug should be filed:
    <pre><nowiki><!-- LOCALIZATION NOTE (dialog.width2): width of the Clear Recent History and
    Clear History on Shutdown dialogs. Should be large enough to contain
    the item* strings above on a single line. The column width should be set
    at half of the dialog width. -->
    <!ENTITY dialog.width2 "14em"> (shouldn't this be at least 28em ?)
    <!ENTITY column.width2 "14em"></nowiki></pre>
    The sanitize.dtd in the en-US locale:
    <pre><nowiki><!-- LOCALIZATION NOTE (dialog.width2): width of the Clear Recent History and
    Clear History on Shutdown dialogs. Should be large enough to contain
    the item* strings above on a single line. The column width should be set
    at half of the dialog width. -->
    <!ENTITY dialog.width2 "34em">
    <!ENTITY column.width2 "17em"></nowiki></pre>

  • Agent detail report shows calls outside the time range

    Hi all,
    I have an UCCX 7.0 SR5 call center. My problem is that the agent detail report is showing calls outside the defined time range on the historical reporting client.
    Those calls start slightly after the end time difined in the HR client.
    Is there any explanation for this behaviour?
    Best Regards,

    Hello Hatem,
    I think that might be expected. In the Agent Detail Report the call start time is the time the call rang at the agent's extension and not necessarily the actual time the call started. So the report will show the call was really received within the time range but it rang the agent slightly after that time.
    HTH
    Pablo

  • When setting the split-days to "every 15 minutes," the week and comparison views show incorrect time ranges for the day

    When I change the "split-days" interval time, under Options > Settings, to
    15, or every 15 minutes, the week and comparison views don't show the correct
    time range for the day.
    <P>
    For example, if I click View to display the calendar and then click Week to get
    a weekly view, the time range displayed is from 6:00 a.m.
    to 4:00 p.m. If I click Comparison to get a
    comparison view, the time range displayed is from 12 p.m.
    to 6:45 p.m.
    <P>
    In this example, should both of these views show the same time range, from
    9:00 a.m. to 4:00 p.m.?
    No, the two views will not necessarily show the same time range. The time
    range for the comparison view will start at the beginning prefs time only
    if you have something scheduled (on any day of the week) starting at that
    time. For example, on one of the days during your week of comparison, if you
    create an event that starts at 9:00 a.m. and then open the comparison view, the
    time range displayed will start with 9:00 a.m.
    <P>
    Additionally, view times will expand past the configured settings if events
    span past the time range. That is, if you have an event that spans from
    5:00 p.m. to 8:00 p.m., the event will be reflected in the view, even though
    your time range may be set to go only to 6:00 p.m.

    Umm yes.
    The settings are stored in ''prefs.js'', so you could swap various copies of this file in and out.
    However, the system will load ''prefs.js'', then, if present, ''user.js'' , so you can set up just your changes in ''user.js'' .
    The sort of line you need to look for is like this:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    You'll need to do some research to identify which of your accounts is which.
    Search for the account's email address:
    <code>user_pref("mail.identity.id10.useremail", "xenos&#64;example.com");</code>
    Use the id number to locate the account number:
    <code>user_pref("mail.account.account29.identities", "id10");</code>
    Use the account number to find the server number:
    <code>user_pref("mail.account.account29.server", "server14");</code>
    Finally, you can then use the server number find the account's time setting:
    <code>user_pref("mail.server.server14.check_time", 10);</code>
    This last entry may not exist, if you have never changed the setting from the default 10 minutes.
    Do be careful with your typing and copy/pasting; if the file fails the syntax parser it will silently fail.
    And make sure Thunderbird is shut down when you do the swap. If it's open, it may overwrite changes, and in any case, it only reads the settings file when it starts up.

  • Policies on specific time range

    Does Ironport has in the plan to set the policies to be applied in a specific time ranges, like apply a specific policy on morning then set another one at night?
    This feature is in the websense & smart filter and should be there in Ironport

    Moutaz,
    The WSA supports time ranges on versions 5.6.0+. This version is currently available to all customers upon request. The unofficial ETA for the 5.6 release to be generally available is within the next month.

Maybe you are looking for

  • HP Envy k015dx m6 - Won't Boot

    I bought my laptop 3 months ago from the US. I live in a different country (Cyprus) without an HP Service Center. My laptop 12 hours ago was ok... Now, when i press the power, i see the power and f12 buttons blink once. After 2-3 seconds my laptop tu

  • Syncing videos taken with iPhone 3GS to iPhoto and back to iPhone again!

    Sorry, I know this has been asked and answered many times over on this forum I still don't understand why these won't sync back? Videos taken with iPhone 3GS. They will play on iPhone. Now synced back to iMac. Videos will play on iPhoto. They will no

  • CS3 activation - "no connection", no support

    I get "no connection" when trying to activate Adobe Photoshop CS3 (firewall, antivirus is off). Also I called provided number and I didn't get activation code and was told to contact support. Chat support didn't help. What can I do to actiavate CS3 o

  • Delete user status

    Hi, as per our requirement, we have 5 user statuses for item level -- Open In process Partially Delivered Delivered Now the problem is that with change of a previously saved order, the 2nd status 'in process' is being set. The transaction analysis in

  • I need to add a button in std transaction

    I need to add abutton in standard transaction IE03 (Equipment Display) I need to write a code to open a new screen. How to do this . Points will be awarded. Is there any user/menu.customer exit. If it had then how to proceed. Regards, Jayasimha Janga