Interval(fraction of hour) in a day

hello to all
I have a
select
to_date('16/08/2012 08:00','dd/mm/yyyy hh24:mi') + ((level-1)*15/24/60)
--when frazione <> 15  then to_date('16/08/2012 08:00','dd/mm/yyyy hh24:mi') + ((level-1)*20/24/60)
--end
Hours
from dual connect by level < 48
and I got
16/08/2012 08:00:00
16/08/2012 08:15:00
16/08/2012 08:30:00
16/08/2012 08:45:00
16/08/2012 09:00:00
16/08/2012 09:15:00
16/08/2012 09:30:00
16/08/2012 09:45:00
...I ask me if possibile to get same result replacing the fraction with a variable ((level-1)*15/24/60), that is I can get the resul with all fraction of day, 10,15,20 minutes and so on , if I like 20 min I get
((level-1)*20/24/60) --- ((level-1)*&inthour/24/60)
16/08/2012 08:00:00
16/08/2012 08:20:00
16/08/2012 08:40:00
thanks in advance

I'm sorry if return on the subject, from the following query:
select
&fractiondate+ (level * numtodsinterval(&minutefraction, 'MINUTE') )
Hours
from dual connect by level <  .....which is inside a Db stored , Can I limit the rows returned, that is, I like only those in a range, for example:
from 10:05 (included) to 16:05 (included) for an x interval (minutes), example if x= 60, only those rows I want
10:05
11:05
12:05
13:05
14:05
15:05
16:05Thanks for any help

Similar Messages

  • Return average of time interval in each hour for each day

    I am reading from a database and the data is stored like this
    Date................ Hour........Hour Interval..........Price
    2010/07/01.........1...................1.....................x
    2010/07/01.........1...................2.....................x
    2010/07/01.........1...................3.....................x
    2010/07/01.........1...................4.....................x
    2010/07/01.........1...................5.....................x
    2010/07/01.........1...................6.....................x
    2010/07/01.........1...................7.....................x
    2010/07/01.........1...................8.....................x
    2010/07/01.........1...................9.....................x
    2010/07/01.........1...................10...................x
    2010/07/01.........1...................11...................x
    2010/07/01.........1...................12...................x
    2010/07/01.........2...................1.....................x
    2010/07/01.........2...................2.....................x
    2010/07/01.........2...................3.....................x
    2010/07/01.........2...................4.....................x
    How would I write an sql statement to get the average for the price for each hour. The average should take the average of all the prices in the interval from 1 to 12
    Any suggestions
    Edited by: user13353366 on Jul 1, 2010 11:55 AM

    Hi,
    Welcome to the forum!
    Whenever you have a question, it helps if you post a little sample data (CREATE TABLE and INSERT statements) and the results you want from that data. No doubt you have a perfectly clear idea of what your data is, and what results you want, but other people are likely to make bad assumptions from just looking at a description of the problem. For example, are date and hour one colum or two? What role does hour_interval play in this problem?
    So, in addition to a description of the data and the probelm, post a specific example, like this for the data:
    CREATE TABLE     table_x
    (     dt          DATE
    ,     hour_interval     NUMBER (2)
    ,     price          NUMBER
    INSERT INTO table_x (dt, hour_interval, price) VALUES (TO_DATE ('2010/07/01 01', 'YYYY/MM/DD HH24'),   1,   1);
    INSERT INTO table_x (dt, hour_interval, price) VALUES (TO_DATE ('2010/07/01 01', 'YYYY/MM/DD HH24'),   2,   1.1);
    INSERT INTO table_x (dt, hour_interval, price) VALUES (TO_DATE ('2010/07/01 02', 'YYYY/MM/DD HH24'),   4,   9);
    INSERT INTO table_x (dt, hour_interval, price) VALUES (TO_DATE ('2010/07/01 02', 'YYYY/MM/DD HH24'),  13,   9.9);and like this for the results you want from that same data:
    HR             AVG_PRICE
    2010/07/01 01       1.05
    2010/07/01 02          9If those happens to be the results you would want from that data, then, as Lkbrwn said, AVG and GROUP BY can get them for you, like this:
    SELECT       TRUNC (dt, 'HH')     AS hr
    ,       AVG (price)          AS avg_price
    FROM       table_x
    WHERE       hour_interval     BETWEEN      1
                   AND     12
    GROUP BY  TRUNC (dt, 'HH')
    ORDER BY  hr
    ;

  • Calculating fractions of hours from time date range

    Hello friends,
    I'm using sql server 2008 r2 and I have a table called attendance with the following fields
    attendance_no    int
    attendance_date    date
    attendance_timein    time(7)
    attendance_timeout    time(7)
    emp_id    int   
    and another table called employee with the following fields
    emp_id int
    emp_name  varchar(50)
    emp_tel  varchar(50)
    I need to calculate the total minutes worked as well as total hours worked for each employee with in a specified date range and I created the below query which working fine but it is not calculating the  fractions of hours, I mean when an employee works
    for example 7 and half hours, its showing just 7 hours instead of 7.5 hours.
    SELECT a.attendance_date As 'Date',e.emp_id As 'ID',e.emp_name As 'Name',e.emp_tel As 'Telephone',left(a.attendance_timein,8)[Time in],left(a.attendance_timeout,8)[Time out],
       + CAST(DATEDIFF(second, attendance_timein, attendance_timeout) / 60 AS NVARCHAR(50)) As 'Total minutes',
       CAST(DATEDIFF(second,attendance_timein,attendance_timeout) / 60 /60 % 60 AS NVARCHAR(50)) As 'Total hours'
        from attendance a join employee e on e.emp_id=a.emp_id and a.attendance_date between '2014-11-06' and '2014-11-08'  and e.emp_tel='65098009'
    I would appreciate any help about this.
    Thanks in advance
    Mohamoud

    If I understand correctly, according to
    Mohamoud's data sample, there is already Total minutes in the input (the above
    table Mohamoud posted)
    and all he need is a simple convert to decimal and the divided by 60.
    select [Total minutes] / 60.c
    Mohamoud,
    is that correct?
    The result show that you might need some rounding. for example 31/60 is 0.516666 while you show us 0.5
    Please clarify if you need rounding and how many characters after the dot you need (this can be done using declaring decimal(x,y), converting, or multipla and using floor function, etc')
      Ronen Ariely
     [Personal Site]    [Blog]    [Facebook]

  • My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

    My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

        Its all good, TimN8128! Mrhelper is corret with regards to making sure that mobile data is turned off when on WiFi or when not connected to WiFi, if you do not want the phone to access data services to update or refresh app services. These applications can all be configured by going to Settings and reviewing all apps that appear in that area. You can also configure a bit further by going to Settings>Cellular.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • Alarm set to go off every hour of the day, how do I do this?

    I want to have a reminder/alarm every hour of the day once it hits the new hour mark, how do I do this? I went into clock and it lets me set an alarm but my only repeat option are the same time every day, not the same alarm every hour at the top of the hour.

    I can but it would be easier to just add a reminder that lets you have an alarm every hour, maybe we'll get this in the new update today

  • CAT2, entering 99 hours in one day

    Hi there,
    I am busy doing a conversion for a division that is going to use CATS. They want to enter hours for past weeks, to make it easy as many hours as possible in one day. The maximum of hours in one day should be 99 according to the field format. However, when we enter 99, this is automatically reset to 23,50 for a working day, and 24 for a non-working day (without an error message).
    The strangest thing is, I tested this myself last september and then it was possible. Any suggestions?
    Greetings,
    Maud.

    I solved this by dividing total hours into portions of max. 23 hours per day in my program. Still I have no clue what setting defines the maximum possible hours as 23,5.
    Maud.

  • Interval Partition By Hour

    I want to interval partition this table every 4 hours. Does this seem right?
    CREATE TABLE "BDub122"."EVENT"
    (     "EVENT_ID" NUMBER(20,0),
         "END_TIME" TIMESTAMP (3)
    ) PCTFREE 10 PCTUSED 40 INITRANS 1
    STORAGE(
    BUFFER_POOL DEFAULT
    FLASH_CACHE DEFAULT
    CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "EVENT_DATA"
    PARTITION BY RANGE ("END_TIME")
    INTERVAL(NUMTODSINTERVAL(4, 'HOUR')) -- Partition every 4 hours
    (PARTITION "2013-03-19 00:00:00" VALUES LESS THAN (TO_DATE
    ('2013-03-19 00', 'YYYY-MM-DD hh24', 'NLS_CALENDAR=GREGORIAN'))
    SEGMENT CREATION IMMEDIATE
    PCTFREE 10 PCTUSED 40 INITRANS 1 NOLOGGING
    STORAGE(INITIAL 8M NEXT 1M MINEXTENTS 1 PCTINCREASE 0 FREELISTS 1
    FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT
    CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "EVENT_DATA",
    PARTITION "2013-03-19 04:00:00" VALUES LESS THAN (TO_DATE
    ('2013-03-19 04', 'YYYY-MM-DD hh24', 'NLS_CALENDAR=GREGORIAN'))
    SEGMENT CREATION IMMEDIATE
    PCTFREE 10 PCTUSED 40 INITRANS 1 NOLOGGING
    STORAGE(INITIAL 8M NEXT 1M MINEXTENTS 1 PCTINCREASE 0 FREELISTS 1
    FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT
    CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "EVENT_DATA"
    The table creates fine, but I want:
    1.] To verify that I have the syntax right to accomplish what I'm trying to do.
    2.] Ask if there's a better way? . . .although if the syntax is right this should work pretty well
    Thank you
    Edited by: BDub122 on Mar 19, 2013 8:33 AM

    Works for me:
    CREATE TABLE EVENT
    ( "EVENT_ID" NUMBER(20,0),
    "END_TIME" TIMESTAMP (3)
    SEGMENT CREATION IMMEDIATE
    PARTITION BY RANGE ("END_TIME")
    INTERVAL(NUMTODSINTERVAL(4, 'HOUR')) -- Partition every 4 hours
    (PARTITION "2013-03-19 00:00:00" VALUES LESS THAN (TO_DATE
    ('2013-03-19 00', 'YYYY-MM-DD hh24', 'NLS_CALENDAR=GREGORIAN')))
    insert into event values (1, sysdate - 8/24)
    insert into event values (1, sysdate - 4/24)
    insert into event values (1, sysdate)
    PARTITION_NAME
    2013-03-19 00:00:00
    SYS_P230
    SYS_P231
    SYS_P232

  • I recently bought the 27" IMac. I have to force shut it down, the menu shut down doesn't work, and most of the time it will start back up on it's own several hours or even days later. Any ideas?

    I recently bought the 27" IMac. I have to force shut it down, the menu shut down doesn't work, and most of the time it will start back up on it's own several hours or even days later. Any ideas?

    Note: No iMac PPC is 27".   PPC is for the iMacs that were new until the beginning of 2006.   They are all Intel now.
    I've requested a moderator move your thread.  No action is needed on your part.

  • Last nonempty hour in previous day in SSAS

    Hello , 
    I have a requirement to get the last hour of previous day and compare it to the hours in current day in order to get the minimum . I have a date dimension and an hour dimension and a measure that calculated running total Qty . 
    The minimum on Saturday April 19 , 2014 should actually be 10 since it is less than 82 . if it was greater then we will take 82 . 
    I have tried to use the tail function , last child but nothing seemed to work . 
    Help is appreciated . 
    Thanks , 

    I was able to get the results I am looking for using the following measures , however the performance was really bad . the lastnonemptyday is populating a value for every single day .  
    Is there a way i could improve the performance or write the queries differently ? 
    CREATE
    MEMBER CURRENTCUBE.[Measures].[lastnonemptyhour]
    AS
    Tail(nonempty({null:[Hour].[Hour Number].currentmember}*[measures].[Allocated Quantity Running Total])).item(0),
    CREATE
    MEMBER CURRENTCUBE.[Measures].[lastchild1]
    AS ( [Hour].[Hour Number].Currentmember.lastchild,[Measures].[lastnonemptyhour])
    CREATE
    MEMBER CURRENTCUBE.[Measures].[lastnonemptyday]
    AS
    Tail(nonempty({null:[Date].[Calendar].currentmember}*[measures].[lastchild1])).item(0),
    CREATE
    MEMBER CURRENTCUBE.[Measures].[lastchild2]
    AS ( [Date].[Calendar].currentmember,[Measures].[lastnonemptyday]) ,
    CREATE
    MEMBER CURRENTCUBE.[Measures].[MIN]
    As
    IIF(([Date].[Calendar].prevmember,[Measures].[lastchild2]) < ([Measures].[Warehouse Min Inventory Allocated],[Date].[Calendar].currentmember),([Date].[Calendar].prevmember,[Measures].[lastchild2]),([Date].[Calendar].currentmember,[Measures].[Warehouse
    Min Inventory Allocated])) , 

  • Call Type Half Hour - Aggregated over days

    I am looking for suggestions on Call Type Half Hour report (calltyp22 in webview).
    We need a custom version where the half hours stats are for the entire interval not by each day.
    Is there a canned report for this in 7.5 Webview? is this something one can do with CUIS/CUIC?
    In terms of SQL I could do some group by basedon time - but would appreciate any hints.
    Thanks.

    There's nothing out of the box that will do that. I've built those type of reports as custom reports before for webview so I would say you'd have to look at doing it in SQL (from memory I did it by casting DateTime to a string, doing a RIGHT string function on it to grab just the time and then grouping by that).
    In CUIS you'll run across the same issue, you'll be able to group by day if required out of the box but to aggregate for a 30 minute interval over a period of days that will need to be done using modified SQL just the same.
    Cheers,
    Nathan

  • Determining Hours Displayed in Day and Week View

    Hi there,
    Even though I have determined the Day hours to be, for example, 7am to 6pm in iCal Preferences, and I have determined the number of hours to be shown on the screen to be, for example, 11 hours, I still have to scroll down to fit my Day's hours in the view. In addition, the non-day hours (i.e. midnight to 7am, 6pm to midnight) are still being shown.
    Is there any way of removing the non-day hours, and in effect the scrollbar so that on opening iCal, the correct hours as I have determined them are displayed?
    Why would I want to open my Day or Week view and have at the top (what I would expect to be the first thing of my "Day") to in fact be Midnight (and go back to sleep)?
    Am I missing something or does this not work the way I think it should, or thought it did?

    See Fred Grieve's answer and John Maisey's solution here:
    http://discussions.apple.com/thread.jspa?threadID=1868347&tstart=0

  • My iPhone 5 delays texts being received for an hour and sometimes days at a time. What can I do to fix that?

    So I have had the iPhone 5 since the day it came out in September. I have noticed, randomly, it will delay texts from individuals and in group messages. It has delayed for an hour or more, and more than once it has delayed for more than a day. I have looked at the sent message time and it says 8:52am but I am receiving it at 9:30am? Or once it kept ringing for like a minute straight as all the messages from a group message came in from two days prior, they have the date they were sent but they don't get to me until much later than needed. I have no idea why it does it either. Any help?

    I am having the same problem on my iPhone 5 16gb on Verizon. I did a fresh restore from scratch twice and my messaging is extremely slow/buggy it freezes mid text, mid sending, while opening a photo received photo or sent photo in messaging app. Also I have had the phone just refuse to turn on until I wait for like 1 minute and keep trying. Another issue with the messaging app is that sometimes the messaging app will chime in as a new message is received minutes after I have already read and replied to it.
    Do I have a lemon piece of hardware or is this potentially a software bug affecting more users?

  • I am so disgusted with Verizon CS.  Six hours over two days on the phone to upgade a phone and my plan.  More to come, but I have names, and even a direct phone number to a "supervisor".  I'll be posting more...  The incompetence of EVERYONE (which is alm

    I'll be posting all the details of this tomorrow.

    So, I'm back, the OP.
    As briefly as i can:
    Two phone family, currently one smart, one dumb phone.  The dumb is eligible for upgrade.
    Call into V and spoke with "Anthony" to get info on what plan(s) I might consider as I upgrade the dump to a new iPhone 6.  Currently an old "grandfathered in" Nationwide 700 plan. This was Friday Sept 19.  Get some info, which I assumed to be correct, including the fact, his words not mine, that the "upgrade (device) fee" can be negotiable.
    Before I had any first hand knowledge, I assumed that I'd better get a "second opinion" so I drove over to my local Verizon (corporate) store.  Well, I got a different story, including the percentage of my employee discount on service, my employer gives a 20% discount and has for years, I have my current statement / bill in my hand.  But no.... Verizon guy says that is wrong, its only 18%.  I ask him about upgrade fee being negotiable.  He says no, never.  So what had I learned?  That V guy on the phone from Friday was either lying or just ignorant.
    Soooooo.... now its Tuesday, Sept 23.  The "BIG" day, day of 3 hours 50 minutes on the phone with SEVEN different V people, all of them telling me something different about what plan(s) I'm eligible for, your employee discount is 17, no 18, no 20 percent.  Yes we can negotiate an upgrade fee, no we can't...  At one point, now a couple hrs into it I say I've had enough, I want to talk to a supervisor.  "I'm sorry sir, supers can't come to the phone"  WHAT?  Well later, once I did speak to a first level supervisor and then a second level I of course found out that was wrong - more lies / misinformation?  The supervisor took the name of that V CS rep and looked at my every growing call log and said that he would speak to the CS rep.
    So, nearing the 3 hrs mark into my attempt to find out about plans and buy an upgraded phone for my plan I reach "Brian". I have his direct number.  Apparently he is something more important that the past 6 people I've spoken to over the past thee hrs.  I tell him:  "EVERY SINGLE PERSON I've spoken to so far has told me something different, and or contradicted what the last person I've spoken to has said!!!!!"  Yes you can have 2 single line plans, no you can't, to get this plan your upgrading device has to be on the "Edge" plan, no it doesn't, your employers discount applies to the bottom line, no it doesn't, only to the data, and on, and on, and on.
    Sooooooo I tell Brian, "here's how its going to go...  YOU are going to wave the upgrade fee.  I don't care where the money comes from, V or right out of your pocket.  I've been on the phone for now closing in on FOUR HOURS...."
    Sooooo he agrees.  I laugh and tell him, "You know, it has nothing to do with the money, not its all about screwing V as much as I can, and wasting yours and V's time."
    He says, order your phone and plan this week and I'll call you Friday (today Sept 26) and then credit your account the fee.
    Soooo yesterday (Sept 25) I call in to do just that, order the phone and plan, WHICH I was told really the only plan that would suit you would be a More Everything Plan.  So, ok that's that.
    I speak to a CS / Sales rep.  I buy the phone and then we go on to the plan.  I tell the rep THIS WHOLE LONG STORY, and it looks like we are heading towards the More Everything, BUT she says to me, "you know, you could do that Single Line plan for BOTH of your phones?"  I say "WHAT????"  I was told by two reps NO, and two reps "Well.... maybe".  This plan gets me everything I want AND saves me $10 a mo.
    Sooooo we go for that, BUT.... I can't change my plan (from current Nation Wide 700) to 2 two single line plans until I activate my new phone (which will be 4 weeks until I get it - iPhone 6), SOOOOO once it arrives I HAVE TO CALL BACK TO V and switch - how much fun will that be??? MORE time (hours?) with V.
    So we agree.... The rep says I just have to transfer you to our automated system where you'll agree to terms and conditions.. Fine.  Up comes the computer voice... and.... it says "hello.... you are upgrading your device (123) 555-1234 (it gives a real number), press 1 if this is correct."  WHAT???? That is NOT the phone number of my device  ***?  The auto system gives me the option to press another number to "enter a different number", so I do, AND......  The call disconnects.
    Now... If I could track down ANY ONE OF THE PAST 8 PEOPLE I'D SPOKEN TO OVER THE PAST TWO DAYS, YOU'D BE READING ABOUT ME - "Upset customer KILLS everyone at V".  I AM SO ******* ****** OFF AT V... I'm now into 2 hrs today, plus the nearly 4 hrs the other day on the phone.
    Soooooo.... I call back, have to tell the story again, this time to "Nick" in N.Y.  Nick says just go on line to your account, you can accept the terms there.  Well, what do you know....  It works, amazing.
    But....  Nick says great and reads back the info on the phone I bought and says "...and I see you are on the More Everything Plan..."  WHAT, STOP, STOP, STOP.  I tell Nick, "Nope, I am not, I never agreed to that, I'm waiting, keeping my old plan for 4 weeks until I get the new phone, THEN I'm to call back (oh joy) to V and upgrade my plan"
    Nick say's well you have the More Everything plan, and it is costing you $10 more a month, BUT I can't un-do it because there is a purchase (my phone) in progress... I am not BEYOND MAD.  We are now at SIX HOURS TOTAL TIME ON THE ******* PHONE OVER TWO DAYS.
    I ask to speak to Nick's supervisor.  Melanie comes on the line.  I, weather she wants to hear it or not, TELL HER THE ENTIRE STORY, that when (and GOD help him if he doesn't) Brian, the top end supervisor calls on Friday (today) to check on my experience buying the phone / upgrading the plan AND to credit my account the upgrade fee, I'm going to have to tell him about EVERYTHING THAT'S HAPPENED TODAY and about the TWO MORE HOURS ON THE PHONE.  Melanie says, yes you do now have a More Everything... All I can do sir is apply a credit back to your account for the difference in cost between your old (what was my current) and the new More Everything (the plan I NEVER agreed to be on).
    So, that is where we are as of now, Friday Sept 26 AM.  "Brain" said he'd be calling by noon-ish Pacific time. I've got his direct number, and If I don't here from him by noon, his phone will be ringing off the hook very 30 seconds until he picks up.
    My experience to simply upgrade one of the two phones on my plan and the plan itself HAS BEEN A NIGHTMARE.  VERIZON is sooo SCREWED UP.  NO TWO PEOPLE KNOW THE SAME INFO, and the INEPTITUDE displayed is sickening.

  • HT1657 What happens if I rent a movie an only watch the first 5 seconds will I still only get it for 48 hours or 30 days?

    Please answer. I did not mean to start watching my movie that I rented but it started by accident and I only watched 5 seconds of it. will i still have 30 days or only 48 hours to watch it.

    48 hours after the first frame played.

  • Sap can't calc overtime for more than 24 hours in a day

    Dear experts,
    I'm having problem currently with overtime, because of the following condition
    1. The employee worked on saturday (let's say this was 9 jan 2010) and monday (10 jan 2010) where in both of those days, the employee should not work (FREE Work schedule)
    2. The employee worked from 09.01.2010 at 6PM until 10.01.2010 at 8PM (26 hours)
    3. we're using time events, so the clock in and clock out are noted in IT 2011 with the following :
        -in:09.01.2010 6PM
        -out:10.01.2010 8PM (but with assigned to prev day indicator set)
    4. The overtime approval using IT 2007 is defined using this one record :
        -begda:09.01.2010     endda:10.01.2010
        -time:6PM - 8PM.
    5. We can't separate the overtime entry in 2011 into two separate record, because of progressive rate of overtime. (i.e for first 10 hours of overtime, you get $10, for the next 10-20 you get $20, and so on)
    However the resulting time evaluation only calculate overtime from :
    09.01.2010 18.00.00 - 20.00.00 (2 hours)
    10.01.2010 42.00.00 - 44.00.00 (2 hours)
    for total 4 hours,
    We've tried :
    1. creating two of 2007 record for :
         -09.01.2010 6PM-00.00 (6 hours)
         -10.01.2010 00.00 - 8PM (20 hours)
        => result : only the first six hours were taken into account
    2. create one  2007 record for :
        -09.01.2010 - 10.01.2010, with time 00:00 - 24.00
        => result : we got 26 hours. However the attendance quota shouldn't contain full day time (00:00 to 24:00), because if the employee fill the 2011 with more than he/she should eligible, he/she will get those also.
    3. create one 2007 record for :
        -09.01.2010 - 09.01.2010 with hours : 26 (using unit instead of time), but if the time contains minutes (such as 18:02 or 20:18) this will needs to be calculated manually, which will be a hassle.
    where what we need is total 26 hours, with using attendance quota, than can span days, but without filling manually the hour. Or perhaps something similar. Any idea how to achieve that in SAP ?
    Thank you.

    Hi,
    this reply is related to option 1 as mentioned in your post. Can't tell for 100% whether the following makes any sense as I have never recorded overtime in IT2007. (I normally use IT2002).
    But in most of my previous projects where not all recorded overtime was calculated, this was often to a missing selection rule in T554S.
    Wilfred.

Maybe you are looking for

  • Mirror display no menu bar

    Hello,      I have a mac mini with no thunderbolt port.  I am using DVI to monitor and HDMI to HDTV for a mirror display.  The TV does not show the menu bar at the top of the screen.  The TV does not have any size adjustment options.  The underscan o

  • I had to restore my PC after a virus attack, how install my Acrobat again ?

    Hello, After a virus attack my PC had to be completly restore. I had ACROBAT Pro and I would like to nstall it again on my computer. When I try to upload ACROBAT it ask me to neter a licence number and I don't have it as I use ACROBAT with a everymon

  • Help did 9.1 update and now cant find where my screen  savers

    hi i just updated my system to 9.1 and now i cant find the screen savers there is no screen saver control panel .looked every where i u can help me i would be indebted to u i am a newbie been using windows for ten year im in lov e with this mac !!!!!

  • How to set Content-Type of attachment?

    Does anyone know how I can set the Content-Type of an attachment of an outgoing mail? I use Apple Mail, and with one correspondent I have this annoying problem that he never receives any excel or word attachments that I send (and possibly other ones,

  • HT204380 How to install facetime on IPAD

    I have purchase Ipad from middle east.....Is there is any way to download face time...if yes tell me..thanks