Labor Hour Formula

I need a formula to help me add total labor hours. I want to input shifts that total out at the end of the row. Example: Shifts will be input as Cell One 7.0-5.0, Cell Two 8.5-6.5 etc etc. That is a spread of 9 hours but I want to drop an hour for lunch. So 7.0-5.0 equals 8 hours. If I enter these shifts into 5 of 7 cells the last cell will reflect a total of 40 hours. Can this be done?

tnjc wrote:
Shifts will be input as Cell One 7.0-5.0, Cell Two 8.5-6.5 etc etc. That is a spread of 9 hours but I want to drop an hour for lunch. So 7.0-5.0 equals 8 hours. If I enter these shifts into 5 of 7 cells the last cell will reflect a total of 40 hours. Can this be done?
Actually, it already has been done. Take a look at the Employee Schedule template in the Business section of the Template Chooser.
There are a few caveats, though:
• None of the shifts can extend across a day boundary (midnight).
• All pairs of start and stop times must be attached to the same date. (The template uses pop-up menu cells to enter these times, and all items on these menus have the same Date part—which is not displayed.)
If the times available on the pop-up menus do not fit your requirements, the lists can be edited, with these two caveats:
• (1) If you edit one time, you must edit them ALL. you must edit ALL values on both a start time menu and a stop time menu, you must do all of the edits on the same calendar day (ie. start after 12:01 AM and finish the editing before 11:59 PM the same day), and you must replace ALL of the start and stop time menus with the two that you have edited.
• (2) Do not edit the "blank" item on either menu. There is no means by which a user can place a truly "blank" item as a menu choice, and any value you can place (such as a single space) will cause an error in formulas using the cell's contents. So edit all the 'time' values, but leave the "blank" one as is.
One other thing: 7.0 to 5.0 (7:00 AM to 5:00 PM) is a spread of 10 hours, not 9. With an hour taken off for lunch, that's 9 hours, not 8. Ditto for 8.5 to 6.5.
Regards,
Barry

Similar Messages

  • How to enter a non-oracle employee"labor hours in Oracle PA"

    Hi Friends,
    I have an issue that "need to enter outside Oracle employee (who has not entered as employee in HRMS, but working as temporary only) labor hours in PA" (11.5.10.2) for a perticular Project.
    Thanks in advance
    Surya Dev

    Hi Dina,
    Thanks for the reply.
    we are using 11i (11.5.10.2) and I checked in the same tab "expnd/costing" tab only (in Setup > System > Implemenion Options). But there is no check boxes as "Import Contingent Worker Timecards with Purchase Order Integration" and "Interface Contingent Worker Labor Costs".
    Is there any profile options related to enable these options?
    Please advise.
    Thanks,
    Prakash

  • Labor Hours and Machine Hours

    Hi everyone,
    Our manufacturing operation involves injection molded parts that have labor time and machine time structured. As operations department, we receive a daily schedule per molding machine we have but such schedule shows only the amount of parts to be produced and not its equivalent in machine and labor hours based on its routings. Basically we receive a list of Planned Orders to be produce in a daily basis with parts only.
    In a previous experience in Oracle there was a report showing the order, parts, labor time and machine time requiered.
    Is there a report in SAP that can reflect the same data?
    Currently we are looking up into a routings spreadsheet but the problem is that is not accurate because routings may change for multiple reasons.
    Thanks.
    JB

    Jorge,
    This is possible in SAP also. But this needs enabling PP and timebooking functionality in HR.
    In PP along with CO, the machines or the PRT are created as cost centers and teh costs will accrue to these cost centers. Similarly teh cost of the materials can also be accrued on a cost center. The labour hours can be captured by means of timebooking and linking every employee to a work center whichis again linked to a cost center. If these functionalities are enabled, then it is possible to see all the costs, activities and schedules used for an order, may it be production order, assembly order, or a service order.

  • Netherlands Working Hours Formula

    Hi Group,
    I need to overwrite a fast formula for Netherlands. This is what oracle has provided without give any explanation what is the type of the formula where to attach the formula. Please if any one has any input please share. I am stuck with this
    Netherlands Working Hours Formula
    Oracle HRMS enables you to derive the weekly working hours to appear on the Central
    Bureau of Statistics (CBS) file. You define a FastFormula with the name
    NL_WEEKLY_WORKING_HOURS, to return a parameter called Working_Hours with
    a value for weekly working hours in the format 99.99. The formula code uses any
    database items or balances to obtain a value for the weekly working hours.
    Note: If you do not define a FastFormula, the application draws the
    working hours from the Individual Working Hours held on the
    assignment.
    Thanks,
    Nitin Singh

    Hussein,
    I know how to write a formula it is this particular formula i need to overwrite. Oracle has not provide where to attach it or what type of formula is that the only thing which they wrote in the article u have mentioned is
    Netherlands Working Hours Formula
    Oracle HRMS enables you to derive the weekly working hours to appear on the Central
    Bureau of Statistics (CBS) file. You define a FastFormula with the name
    NL_WEEKLY_WORKING_HOURS, to return a parameter called Working_Hours with
    a value for weekly working hours in the format 99.99. The formula code uses any
    database items or balances to obtain a value for the weekly working hours.
    Note: If you do not define a FastFormula, the application draws the
    working hours from the Individual Working Hours held on the
    assignment.
    This is just partial information. What should be the type of formula where it need to be attached. Oracle has not provided with that at all.
    Thanks,
    Nitin Singh

  • Labor hours as part of cost estimate report

    I'm trying to find the right report or table reference that can provide the activity quantity (labor hours) consumed for every SKU costed at the plant.
    Any help on this will be highly appreciated

    Dear Raja
    If you are looking for report go to CK82
    And if you are looking for the tables go to thread Table name to download CK11N costs
    Regards
    Rajneesh Saxena

  • Standard Labor Hours for a Operation

    Hi, we are on 11.5.10.2 version of Oracle and I am need of locating in the database where I can find standard labor hours for an operation. Any help would be appreciated!

    The std. labor hours are in a table called bom_operation_resources.
    Try this
    select msi.segment1 item
    ,bos.operation_seq_num OP_SEQ_NUM
    ,bd.department_code
    ,br.resource_code
    ,bors.usage_rate_or_amount
    from mtl_system_items msi
    ,bom_operational_routings bor
    ,bom_operation_sequences bos
    ,bom_departments bd
    ,bom_operation_resources bors
    ,bom_resources br
    where msi.organization_id=&org_id
    and msi.segment1='&item'
    and msi.inventory_item_id = bor.assembly_item_id
    and msi.organization_id = bor.organization_id
    and bor.routing_sequence_id = bos.routing_sequence_id
    and bos.department_id = bd.department_id
    and bors.operation_sequence_id = bos.operation_sequence_id
    and bors.resource_id = br.resource_id
    order by msi.segment1, bos.operation_seq_num, bors.resource_seq_num
    Hope this answers your question
    Sandeep Gandhi
    Independent Consultant
    513-325-9026

  • Labor Hours in PM Datasources

    Hello Gurus,
    which of the datasources in PM gives me the Labor information like hours worked, Planned hours, Total Labor Hours etc.
    Help is highly appreciated
    Thanks in advance. Full points to correct answers

    Look at cube 0PM_C04 (Maintenance Orders - Operations) which contains information on the planned and actual work for operations in maintenance orders, loaded from 2LIS_17_OPERATION (Maintenance orders - operations).

  • Question fractions of an hour formulas on Time Sheets

    I am trying to build a time sheet. Sometimes the time entered needs to be less than one hour. But when it then multiplies by the hourly rate, I get a problem.
    The formula calculates the "hours" by subtracting the start time from the end time in the fields where I enter them. If those total less than one hour, it either changes the duration to "minutes" or if I force it to hold the duration at hours, it always rounds up to one hour. As an example, a reported task that runs from 11:30 a.m. to 12 p.m. is entered, it usually posts a result of 30 minutes. But when it then goes to multiply the hourly rate, it multiplies by 30 (hours) rather than by 30 (minutes) or .5 (hours). How can I get it to post .5 hours so the math is right on the extended total?

    Assume cell a1 is formatted as date and time with only time shown. Enter data in form of h:m in that cell. Convert to fraction of hour that can be multiplied by hourly rate with formula as follows: =timevalue(a1)*24. Add in hourly rate as follows: =timevalue(a1)24[rate value].

  • TIME IN to TIME OUT = HOURS formula on Numbers 09 - PLEASE HELP!

    Hi,
    I've just got Numbers '09 and I have a question about formulas.
    I want to have column A (time in - eg. 1PM), then column B (time out eg. - 3PM) and column C (number of hours worked, calculated automatically).
    I have figured out how to get Numbers 09 to calculate the number of hours (C = B-A) BUT... when I put in TIME OUT hours that are past midnight (eg. 00:30 AM) the whole thing goes haywire!
    Can anyone out there provide me with a simple solution for columns A, B and C that can deal with a 24 hour clock and a shift that goes past midnight?
    All I need it to do is calculate the number of hours worked in column C, after inputting the start time in column A, and the finish time in column B.
    Thanks!!
    D

    Keep in mind.... the method I provided does not address the problem Badunit highlights which is that the "Date" portion of the cell contents may change to many days different (if you enter a time on a different day then when you originally entered the time).
    Here is an updated attempt to address this:
    C2=IFERROR(TIMEVALUE(A2),"")
    D2=IFERROR(TIMEVALUE(B2),"")
    E2=IFERROR(IF(D2<C2, 1-(C2-D2), D2-C2),"")
    F2=IFERROR(INT(24*E2),"")
    G2=IFERROR(ROUND(MOD(24*60*E2, 60),0),"")
    H2=IF(F2="", "", F2&"h "&G2&"m")
    All the iferror() stuff is to supress entries in calculation cells when there is no time entry
    Lastly... format the time entry cells as time only:

  • Report on actual labor hours

    Hi friends
    Do we have a standard report that gives total number of labour hours (activity type) per work center for a particular period.
    Thanks

    Hi,
    Please check CM01.  It will give you total capacity and available capacity.
    Please let me know if you need further assistance\
    Best Regards
    Surya

  • Labor hours calculation inconsistency

    hi
    I am trying to get a std. price for two new models, however there is an inconsistency when the labor cost is calculated.
    in CK11N .(CK13N) ( both plan estimations are in the same cost center )
    (under cost of goods manufactured -- direct labor)
    For one product cost estimation  labour cost is showing as overall cell content and level cell content ,
    where as another product cost estimation  showing overall cell content, lower level cell content and level cell content
    We would like to know from where this lower level has come for one product cost estimation in labor cost .
    expecting a reply ASAP
    thank you
    kanna

    dear rajesh
    when we go into CK13N we will get display material cost estimate under costs tab
    see  cost of goods manufactured and double click on that we wll get cost components for materials in that go to direct labor and select and see the details ,
    we will get group description under this
    1) For one product cost estimation labour cost is showing as overall cell content and level cell content ,
    2) where as another product cost estimation showing overall cell content, lower level cell content and level cell content
    We would like to know from where this lower level has come for one product cost estimation in labor cost .
    thanks and regards

  • How to create Labor Operated Machines and confirm their work

    Hello Experts
         We have a steel manufacturing client for our implementation. the client already uses CATS to enter the time sheets for the internal activities using labor. but the customer requires to map machines operated by labor on the system.
    Example:
    Welding Machine XL5000 costs 10$ per hour
    Employee #### costs 20$ per hour to operate that welding machine
    Required:
    - How to Plan that for a Project (( not using activity elements))
    - How to Confirm the work hours done by the person using the machine at the same time<<Ex: using CATS>>. ((This is to prevent the mistake of someone confirming the activity element of the labor and not the machine or the other way around))

    Thank you for your reply Mr. Maria
    I just tried it. unfortunately the system doesn't consider the 2 activity types defined in the work center "Labor Hour + Machine Hour". I use formula SAP008 and check the "reference indicator".
    I believe that is due to the activity type "Labor Hour" being set in the internal activity in PS.
    I tried removing it, the cost calculation fails for the internal activity.
    the system does not consider the activity types in the planning and the actual posting of CATS. I don't know how to do that in Project System.
    Regarding the solution of having 2 lines of confirmation for the same activity in CATS, unfortunately this will double the capacity usage for the employee causing a time problem.
    Ex:
    An employee is working 14 hours (8 + 6 Overtime) on a machine. confirming that will require entering 2 lines of 14 hours in 1 day = 28 H. the system will issue a warning message that the employee is working more than 24 hours in 1 day and reduce the amount of work entered to fall to 24 hours.
    And if we didn't face the 24 hours problem the employee capacity will be overrated in the reports.
    I'n afraid it won't work.
    thank you very much. your help is needed

  • Looking For Standard SAP Report - Production Orders - Hours

    Is anyone aware of a standard report in SAP's PP module that shows labor hours in a planned vs. actual fashion?  The report that resides in a single production order via the menu path Goto -> Costs -> Analysis is great.  Our Plant Managers though need a report that allows people to view orders in summary across their plant.
    Thanks.

    All -
    I appreciate the suggestions.  I did try transactions S_ALR_87013127 and KRMI.  Here's what I found:
    - S_ALR_87013127 is good transaction our Plant Managers already use to see their performance on Plan vs. Actual for costs.  Unfortunately, hours are not included on the report.
    - KRMI is a transaction I had not used before.  I unfortunately couldn't get any actual line items to appear.

  • Total result  & formula result  is wrong in query out put

    Hi BW gurus
    I have issue with total result and formula result
    my requirement
    Formula for hours is ( total time / Counter / 60)
    hours  column displaying
       14.2
         2.4
         3.4
    Total -
    5.6   not  20    then I setp calculate results to SUM  now total displying 20  perfect.
    Then I am using hours colum for calculation   here is my issue
    Qty rec per hour formula is = received / Hour
    Hours   Qty rec per hour          received
    14.2              100                            14200
    2..4               100                              2400
    3.4                100                              3400
    20                 300                              20000        result column for qty rec per hour is wrong . formula is not working on result for qty rec per hour
    Actually qty rec per hour result should be 20000/20  = 1000
    How to resolve this issue
    Thanks
    Rohan

    Hi BW Gurus,
    Thanks for your help .
    Let me explain my issue with examples :
    My report is by document date level ( Not at Po or PO line Level)
    I have a 3 Key figures
    1.  Hour -  is poulation at  PO Line level
    Ex :  4500001    1             5.30
                             2            5.30
                             3            5.30
    Then I am using counter to get single for time
    Hour/ Count  now my value is 5.30 in the report . hour column is perfect
    2. Po Qty  is fine
    3.  Qty Recd per hour ( Calculation)    PO QTy / Hour
    Now the issue is  each row caluculating perfect . but result row is not correct  Qty Received per hour . We don"t wont  sum of  Qty received per hour in result . We want  Caluclation result in the result
    Here is the issue
    If I have multiple POs for same document date  , each row is fine but system using division at Hour result also by COunter . because of thati am getting wrong hours in result for hour . this wrong result is using for Poqty receved per hour result  also .
    I put total for hour coulum result is perfect but for clauclation it is talking total hours/ total conter result .How to replace result caluculating by counter .This is our major issue .
    Appriciate your response
    Thanks
    Rohan

  • Labor time report at each individual level

    I want to take report on each individual employee labor hours based on the time confirmation they did thru IW41, Is there any standard report available???? we dont have activity types as we are not settling cost for the inhouse labor but doing time confirmation as we need ot track the time. Any help guys.

    Try using IW47 and grouping by work centre, then summating the hours
    Alternatively, download to Excel and create your own macros
    PeteA

Maybe you are looking for

  • How do I add a new chapter to iDVD without re-exporting from iMovie?

    I created a movie and after I finished the project in iDVD I realized that I had not included one chapter. This must be a common problem ... but I can't figure out how to update the chapter info to include this new chapter. I did get a message about

  • How do I upgrade Firefox to the new Version 6 version?

    I cannot get past saving the downloaded .exe file. How should I paroceed?

  • Logic can't find Ultrabeat samples after swapping hard-drive-HELP!

    Hi! I have just replaced my 'audio' drive with a larger one. From 280Gb to 1Tb. Woohoo I named the new drive exactly the same thing as my old drive, Same format (Extended Journaled) Copied the entire folder structure across intact - and as far as I c

  • Envy 360 freezes on please wait screen

    Computer freezes on please wait screen and won't load. Yesterday I installed a mouse but it was a USB 2.0 not 3.0 and then after I shut it down it won't won't after the wait screen.Please help!

  • Help with Internet Recovery

    When booting up with cmd+r held, it boots automacticaly to Internet Recovery. I select my net work and the wifi icon shows it has connected, but no toher sign to show that it is doing anything more, just a spining globe. I have removed all security f