Check the cost per hour of a work center

Hi all.
I need to make some calculations to determine if a change in work tools is justified. Basically, on our CNC machines, we have one operation that requires 2 tools of lower value (drilled hole using a bit, tapered at the top with a reamer). Tech department has proposed we switch to a new single tool that replaces the 2 previous, resulting in a faster operation time (drill bit with reamer). I'm sorry, I don't know the correct name of the tools in English, but that's beside the point anyway.
The tool is more expensive than the 2 previous tools combined, but allows for a larger number of holes to be drilled compared to the old drill bit, but less tapers than the actual reamer can do. Assuming the bit does about 1000 holes before needing replacement and the reamer about 5000, I divide the total cost of the tool by the amount of operations it can perform and I get a aprox. cost per hole for each tool. The new tool does about 2000 then needs replacing. Being more expensive, I have worked out that at it's most basic level, the cost per hole is a bit higher for the new tool.
Now, however, I need to factor in the gain from the time reduction. For that I need to know the machine cost per hour.
My question: what TA can I use to check the total running cost for a workplace, given a specific time period, or the cost for a predefined time period? I was thinking of somehow using MM03 for that, but I can't since the TA seems to be pulling a production variant that involves several conventional machines instead of the variant that uses the CNC. If I could somehow get MM03 to pull the correct production variant for calculations, then I could maybe use that. Any ideas?
All help greatly appreciated.

Hi Nuno,
Cost esitmate is done using CK11n.
Cost estimate display using CK13.
The rate per activity can be maintained in KP26 against the cost center.
Contact your FICO consultant for the details.
Regards,
Senthilkumar SD

Similar Messages

  • Cost Per hour, Costs per route not updating in S114 structure

    Dear PM Guru's,
    i am using MET unit system for vehicle consumption analysis. After completion of measurement documents and material issuance through IFCU, i checked the MCIZ report , but there i could not find the value of Costs per Hour, Costs per route information. I am requesting you all please guide me where i did the mistake either in "Configure measurement document updation" or calculation method?
    I am eagerly waiting for replies.
    regards
    JKM

    Its not possible to give any specific section where it might have gone wrong. Suggest you to check the complete configuration under Settings for Fleet Management. Also check the configuration in IMG - PM & CS - Information Systems - Configure Measurement document update

  • Error occurred in accounting - check the costing in the ERP system

    Hi Experts,
    i am experiencing error in cproject preliminary costing. please refer below error.
    i have the choosed the costing variant as ad hoc cost estimation in controlling for easy cost planning. i need to create a quotation from cproject.
    Please sugeest me what is missing?
    thanks in advance,
    Prabu
    Error occurred in accounting - check the costing in the ERP system
    Message no. DPR_FIN_GECCO026
    Diagnosis
    Errors occurred in costing in the ERP system.
    Procedure
    Check the costing log for costing in the ERP system:
    Call costing:
    If it is preliminary costing, the hyperlink for calling the ad hoc cost estimate can be found in the Costing view.
    If it is costing for an account assignment object (after transfer), the hyperlink for calling Easy Cost Planning can be found in the Services view.
    In costing, choose Revaluate All Items. The costing log is then generated with the error messages.
    Procedure for System Administration
    This message has the number DPR_FIN_GECCO026.

    Hi,
    Check the configuration.
    Create and Change Controlling Scenario
    Define Controlling Scenario
    Settings for Easy Cost Planning
    Assign Cost Elements and Activity Types
    Regards
    Ravindra

  • Procedure to change the standard value key of a work center

    Hi Gurus,
    What is the procedure to change the standard value key of a work center.
    Thanks in advance,
    Regards,
    PPQMUSER

    Hi,
    Just go to CR02 and change std value key, system will give you an information massage 'Standard value key : parameter XXXX after changed' as per the parameters used in new std value key.
    If you want to change the customization for allready used STD value key, then you need dealocate that key from workcenter, and then change the customization.
    Tara
    Edited by: tara  bhapkar on Feb 29, 2012 7:39 AM

  • How do I check the cost of the query ?

    I did
    set autotrace on traceonly
    set timing on
    and executed a select statement.
    I got a execution plan and statistics
    What should I check in this output.
    Pls help me how to tune the query

    The EXPLAIN plan display will have a header called COST and that's where the cost of individual steps and overall cost of the SQL statement will be displayed. There is no such thing as normal value for cost.
    Also, a high cost does not necessarily mean that the query execution plan is bad. Cost is dependent on how the statistics on tables / indexes etc. have been collected.
    Shakti
    http://www.impact-sol.com
    Developers of Guggi Oracle - Tool for DBAs and Developers

  • HT1688 my Iphone 4 quit working.  It will not recharge and it was not low on charge when it quit.  It was sitting on a table. I checked the time and then it never worked again.

    My Iphone 4 quit.  it has a charge.  it was on a table.  i checked the time and it never came on again.
    Please help.
    Sharon

    Hold the HOME and SLEEP buttons at the same time until an Apple logo appears. If it hasn't appeared after 20 seconds of holding charge it for 15 minutes with the wall charger and try again.

  • Multiple cost centers linked to one work center

    Hi all,
    is it possible to link multiple cost centers to one work center ?

    Dear Bjorn,
    1.For the same work center its possible to assign only cost center at a time or say for a validity period.
    2.Its possible assign different cost ccenter for the work center for different validity periods,provided the
    rates are also define properly in KP26.
    3.One cost center can be assigned to multiple work center.
    4.Its possible to define different rates for the same cost center and activity type combination only
    for different periods.
    3.Same activity type may be having different rates for a different cost center combination.
    4.Only one cost center can be valid for a work center.
    5.Same cost center may be linked to many work centers.
    Check and revert back.
    Regards
    Mangalraj.S

  • Please check the code why it is not working

    I am a new java servlets and jsp learner. I am running below example of session in Tomcat and "AccessCount" supposed to be increased by one value whenever servelet is refereshed. But I am always getting 0 value even after refereshing it.
    I will appreciate your help.
    =======================================================
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.net.*;
    import java.util.*;
    /** Simple example of session tracking. See the shopping
    * cart example for a more detailed one.
    public class ShowSession extends HttpServlet {
    public void doGet(HttpServletRequest request,HttpServletResponse response) throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String title = "Session Tracking Example";
    String heading;
    HttpSession session = request.getSession(true);
    // Use getAttribute instead of getValue in version 2.2.
    Integer accessCount = (Integer)session.getAttribute("accessCount");
    if (accessCount == null) {
    accessCount = new Integer(0);
    heading = "Welcome, Newcomer";
    } else {
    heading = "Welcome Back";
    accessCount = new Integer(accessCount.intValue() + 1);
    // Use setAttribute instead of putValue in version 2.2.
    session.setAttribute("accessCount", accessCount);
    out.println("<html><h1>" + title + "</h1>" +
    "<BODY BGCOLOR=\"#FDF5E6\">\n" +
    "<H1 ALIGN=\"CENTER\">" + heading + "</H1>\n" +
    "<H2>Information on Your Session:</H2>\n" +
    "<TABLE BORDER=1 ALIGN=\"CENTER\">\n" +
    "<TR BGCOLOR=\"#FFAD00\">\n" +
    " <TH>Info Type<TH>Value\n" +
    "<TR>\n" +
    " <TD>ID\n" +
    " <TD>" + session.getId() + "\n" +
    "<TR>\n" +
    " <TD>Creation Time\n" +
    " <TD>" +
    new Date(session.getCreationTime()) + "\n" +
    "<TR>\n" +
    " <TD>Time of Last Access\n" +
    " <TD>" +
    new Date(session.getLastAccessedTime()) + "\n" +
    "<TR>\n" +
    " <TD>Number of Previous Accesses\n" +
    " <TD>" + accessCount + "\n" +
    "</TABLE>\n" +
    "</BODY></HTML>");
    /** Handle GET and POST requests identically. */
    public void doPost(HttpServletRequest request,
    HttpServletResponse response)
    throws ServletException, IOException {
    doGet(request, response);
    ========================================================

    Change the code
    HttpSession session =
    request.getSession(true);AS
    HttpSession session =
    request.getSession(false);If you pass "false", then the Session is not created.
    If you pass "true" the session is always created
    new.
    Thanks and regards,
    Pazhanikanthan. PI dont think that's correct -
    1. request.getSession(false) returns a Session object if one exists.
    2. request.getSession(true) creates a new Session object if it doesnt exist or returns the reference to the existing object if the request is part of an valid session.
    OP, check with default session-timeout values in web.xml
    Ram.

  • HOW TO DIVIDE THE COST PER MONTH IN CONTRACT WHICH IS PER YEAR

    Dear all,
    i am triggring a project with reference to a quotation and i get the planned cost in
    of the project in my quotation.So this cost of the quotation is for a year assuming the duration of the project is one year.
    i am copying a contract document from this quotation in which the monthly billing
    plan is there.here it is again multiplying for 12 months whereas i want it to divide it
    by 12.can some body throw light for me to get a solution for this problem.
    Assured reward points for timely support
    Best regards,
    R.Srinivasan

    I think the answer is very simply that you should be using a 'milestone' billing plan rather than a 'periodic' billing plan. The milestone billing plan divides the total net value of the line into the milestones determined by the milestones in your WBS element, network, manually maintained in billing plan screen, or from a reference milestone billing plan. The periodic billing plan instead creates a billing periodically for the entire net value which in essence multiplies the amount by the number of billings in your plan.
    You mentioned cost. If you want to divide cost across the term of the contract, you will need to look at CO functionality such as networks, service orders, RA, or other cost planning and accrual tools.
    If you are trying to bill in accordance with your costs, you need to use resource related billing which can be integrated with milestone billing.

  • Check the time of edge server stop working

    We have exchange 2010 in our environment. There is an edge role installed in a server. The server was hanged and mail service stopped working. But unfortunately we dont monitor these time.
    How can we see the last time the edge server working i.e from when it stopped receiving mail from outside domain.
    and what is the reason for server hanged?
    NB: The whole time internal domain mail send/receive was ok.
    Setu Bandhan Saha

    Hi
    In your event viewer it should give you some indication of when the server stopped responding. It can be due to updates, running out of resources, potential hardware failures.
    If possible can u plz tell me where in event viewer(system,security....)
    Setu Bandhan Saha

  • Cost Center - Work Center Table

    Hi!
    How to get Cost Center from Work Center? . Any Table?
    Thanks in Advance
    Bekele

    Hi Bekele,
    First get the Workcentre Object ID in CRHD table for your work center. Then with the Object ID, get the cost centre assigned in that work center in table CRCO.
    I guess, you dont get both in a single table. Hope this help you !!
    Regards,
    Hari.

  • Work Center - Material Number

    Hello,
             Is there any function module or any table available where i could check the materials assigned to a particular work center.
    I have a report to develop where i have the value of plant and work center. I need to display the material corresponding to this selection criterion.
    I have searched the forum, but could not find a suitable reply to solve this query, hence posting one.
    Thanks
    Nayan Kurup

    Hello Anil,
                    Thank you so much for the reply. I have already cheked this table ,and the data does not exist there.
    Any other sugestions ??
    Thanks
    Nayan

  • HP OfficeJet Pro 8600 - The Really High Cost Per Page

    On February 6, 2014 I bought an HP OfficeJet Pro 8600 all-in-one, including the OPTIONAL tray 2.
    I use it in my home office with five computers.  One is a new Apple MacBook Pro OS 10.9.5, another is a three year old HP Laptop on Windows 7, and another is a five year old Dell Desktop still on Windows XP.
    I bought the printer to . . . print.  I thought I might be a nice convenience to write business correspondence and print an envelope, without the need to change paper, or otherwise touch the printer until I was ready.
    The printer is advertised, even in the user manual and box, to be capable of 1200 dpi printing, even though it uses the below average PCL Print Driver and not Post Script.
    The printer works fine, but the HP driver and utility software must be written for a different printer.  If I put HP Inkjet 20# paper in tray 2, and #10 envelopes in a locked tray 1, I can print at the "best print setting" which still isn't great.  But it works.
    If I put HP Premium Presentation Paper 32# paper in tray 2 ($8.00 per 100 sheets), and the same quality #10 envelope in tray 1, the printer software loses it's mind.  It performs the same on all five computers.
    When I try to print a business letter and envelope the print driver and HP utility grays out tray 2, and it grays out the "best" print setting.  In short the only choice is NOT to use HP brand papers, or remove tray 2, print the business letters, and then remove the 8.5X11 HP Premium Paper, install envelopes, and print again.  Not what I had in mind.
    I've been in touch with HP as the printer is still under warranty.  They offered a replacement, that will have the same printer an utility problems, or to buy it back at $175.
    I bought the original printer for $249, tray 2 for $125, and 5 XL print cartridges for $149.  That is a total of $588.  If I sell it back to HP check out the cost per page.  At $588 - $175 = $413/2742 total pages = 15 cents a page!  Owch!!!
    There is nothing wrong with the printer as such.  The problem is the HP Utility and Driver.  When did HP stop using a traditional warranty, and give pennies on the dollar, when they clearly have a software problem, they refuse to fix?

    Hi there @Oceankey , welcome to the forums
    I understand your Officejet 8600 is no longer copying an entire page from the scanner bed.
    I am unsure of which troubleshooting steps you have tried for this problem however, I would suggest updating the firmware (if needed), power resetting the printer and to ensure the printer is plugged in directly to the wall outlet, avoiding power bars and surge protectors. This ensures the printer is receiving full power and may help greatly.
    Getting the Latest Firmware and Product Updates
    Press the Power button to turn on the product.
    With the product turned on, disconnect the power cord from the rear of the product.
    Unplug the power cord from the wall outlet.
    Wait at least 15 seconds.
    Plug the power cord back into the wall outlet.
    Reconnect the power cord to the rear of the product.
    If the product does not turn on by itself, press the Power button to turn it on.
    If the troubleshooting does not help resolve your issue, I would then suggest calling HP's Technical Support to see about further options for you. If you are calling within North America, the number is 1-800-474-6836 and for all other regions: click here.
    Have a wonderful day
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Smart Collection "Capture Date is in the last n hours" not working?

    In Smart Collection, the rule "Capture Date is in the last n hours" doesn't work for me. It seems to behave similarly to "Capture Date is today".  (See the screenshot below).  Has anyone else noticed this, or can you replicate this?  If so, I'll file a bug report.

    Key into the address bar ''about:crashes'' you should get a list of Crash IDs paste a couple of those into your next Message. Also ensure any security related software is fully updated that often causes problems when upgrades to Firefox are released.
    Standard reply:
    We're sorry to hear that your Firefox seems to be crashing. Please perform the following steps to give us a crash report ID that helps us find out more about the cause of the crash.
    #Enter about:crashes in the Firefox location bar (that's where you enter your website names) and press Enter. You should now see a list of submitted crash reports.
    #Copy the most recent 5 report IDs that you see in the crash report window and paste them into your forum response.
    Thanks in advance for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes]] article.

  • Finding actual costs of hours booked in CAT2

    Hello experts,
    I am trying to locate the actual costs per hour that will be posted when a person enters time on a timesheet in CATS with a known activity type and cost centre.
    I believe the formula in the work centre calculates 'planned' costs - but I am looking to find the actual costs from a costing sheet.
    I hope this is simple enough
    Many thanks

    Hi,
    Activity hourly rates, you can see in COST table. As for CATS cost, you can see against relevant cost object. For example, if you charged your time against a newtork activity then you can see this actual cost in COSS table against the network activity object number.
    Regards
    Sreekanth

Maybe you are looking for

  • Open Sales order data

    Hi,    Can any one please help on identifying the table used for retrieving Open sales order data for a particular period, My requirement is to take the Volume of open sales order for Data migration volume assessment   Please help on this Thanks Raje

  • I just got an ipad mini and I dont know how to set up an icloud email, please help?

    I just got an ipad mini and I dont know how to set up an icloud email. I know I have an icloud account but it is set up to my gmail. Can someone please help?

  • What is y3.online.sec.update and why/who is this t...

    Hello: What is y3.online.sec.update and why/who is this trying to call me/message me via my skype? Normally if there is an official skype security update/fix it is automatic when I log in so is this some type of phishing scam?   I blocked the contac

  • How can I determine batches while picking in transaction VL02N?

    Hi all, good day. I would appreciate your suggestions. I'm developing some RF Transactions and at this point I have to solve the following: The program process data which the user enters using a handheld; values are send to the transaction VL02N, usi

  • Probelm client auth from jsse client with open ssl server

    I tried to connect jsse client with a openssl server.. with clientAuth This is what i did .. Using openssl req comand i created a X509 certificate for server and imported the same to java keystore.. The communication works fine without client authent