Costs by operation in service order

Hello All,
Are there any report to show the costs of an order by operation, for instance, the total costs of an order is 200 EUR but for operation 0010 the cost is only 100 EUR. I want a report that show me only this cost.
Regards,
Rogério Reis

There is no hijacking here whatsoever. The question I asked is the same as the original, I am only looking for a solution different than paying the SAP.
edit ***
Function module PM_ORDER_DATA_READ will retrieve RESBD data, which holds costs. Combine with AFVGD data to get operation details. (NOTE: If used within a loop, or serialized in other ways, need to use CALL FUNCTION 'CO_EXT_ORDER_RESET'  prior to execution of the FM)
*If applicable: The function module IOPOL_OL_DATA_FOR_OPR_GET may come in handy, too.
*If applicable: View VIQMEL has a lot of useful data.
Gather the above data, make a few SELECTs from COBK and COEP.
You can target COBK-REFBN, COEP-OBJNR, COEP-KSTAR, etc, to get values from COEP currency/quantity fields.
Kind regards,
SD
Edited by: Srdjan Danicic on Jun 27.

Similar Messages

  • How to manage the operations on service order ?

    Hello,
    Do you know some bapi or MF to manage the operation on service order  (IW32).
    I have to create some operation, and in dialogue mode Iu2019m using 
    "Task list selection,  to reference object."
    But I need to do it by a bapi or MF.
    Tks a lot.
    R.

    Hi,
    Check with the following FM:
      MAINTENANCE_ITEM_POST
    Regards,
    Venkat.

  • Costing for Maintenance- and Service Orders

    hi
    Can any one tell me the Configuration steps for Costing for Maintenance- and Service Orders.
    Kindly please guide me.
    regards,
    R.Ramakrishnaraj

    Hi,
    Please go through below mentioned threads.
    Re: Activity Costing
    Re: PM order costing.
    Re: Planned cost not getting displayed in Maintenance Order
    Re: Costs not appearing in service order
    There are many threads available for Costing. Please search in the threads.
    Regards,
    Maheswaran.

  • Costing indicator in Repair Service Order

    Hi Gurus,
    I am facing pblm in Repair Service order for component cost.
    Actually the flow is creation of a Service Order automatically using Requirement type from a Return Sales Order.
    Items returned in Return Sales Order are Non - valuated & hence appearing as non-valuated in my Service Order Component tab as well (Defaulted Parent Item -->" Not relavant to costing")
    This is creating pblm to me. Whatever parts, materials I am issuing to Service order are not getting costed. Also the Costing indicator for all the components lines appearing as Not relavent to Costing.
    How I can set it Relavent to Costing for the Child items. Is this control lies in Task List/BOM setting?
    regards
    Ravi

    Spare components are not influenced in anyway by the actual repairable equipment. Pls check other settings.

  • Cost Elements and Cost Centers in a service order

    Hello Finance Friends....
    I am inquiring about something that has been happening and I can not find the answer as to how.  I spoke with the finance consultant and he seems to think it is the valuation class being changed but the valuation class has not been changed at all....so here is my problem as I am at a lost...it is an intermittent problem....
    I have a service order for material to be repaired by the customer...lets say coming in for Ansi Calibration with repair.
    The technician will issue material to the service order for repair....if the technician does not end up using the material for repair he will reverse the goods issue and then the material goes back to stock...
    in my scenerio ....when the material is issued it is under GL account (cost elelment) 5XXXXXXX.  When the reversal was done it went to 6XXXXXXXX.  So when the DP90 transaction is done (billing request) it gives the error for cost center XXXX cost elelment 6XXXXXXX and can not complete the transaction DP90. The error is the Material combination for DP90....this works in others....these are just one offs that it is happening to and there seems to be no rhyme or reason to why it happens... I have tried reverse the transaction to put the material back to the service order and then manually reverse myself using the original GL account number it was issued on (5XXXXXX)...however when doing the DP90 it still reads the 6XXXXXXX cost element and cost center XXX.  Keep in mind that the valuation class or material type has not been changed.
    Where is the GL account and Cost center being derived from in the service order?  What can I check?
    Thanks in advance....

    Hi,
    Check in T030 table for OBYC assignments and TKA3A table for OKB9 settings.
    Also check account assignment tab of PO.
    Best Regards,
    Madhu

  • FM or bapi for Regmnts assignment for operation in Service order

    Hi all,
    Can someone tell me if there is a Function module or Bape to get the Assigned requerments of a operation within a service order.
    Kind Regards,
    Richard

    Hi Gautham,
    I test the FM's but I do not get the Requirements in the operation details of the service order.
    Kind regards,
    Richard

  • Using Function modules in  BSP - Operations on Service Orders

    Hi,
    We are creating a custom BSP application for scheduling resources and updating appointments for resource personnel.
    The process is as follows:
    From the list of Service Orders with some product added as line item, with status OPEN, the user selects a SO and makes an online payment.
    Returning from the site, the Status of the Service order is changes to Released. Following this, the available resource is assigned to the Service order and the appointment details are populated in the Service Order. Subsequently, another line item of the Service order is set to Released.
    We are using the following function modules in the order as given below:
    To set status of a line item to Released
    1)     CRM_ORDER_INITIALIZE
    2)     CRM_STATUS_SET_INTERN_OW
    3)     CRM_STATUS_SAVE_OW
    4)     COMMIT WORK
    To assign a resource to the Service Order
    1)     WFD_RES_GET_AVAIL
    2)     CRM_ORDER_INITIALIZE
    3)     WFDS_GET_ASSIGNMENT_TO_SO_ITEM
    4)     CRM_ORDER_INITIALIZE
    5)     WFDS_CRM_SRV_ASSIGNMENT_MODIFY
    6)     WFDS_SAVE
    7)     WFD_TRANSACTION_COMMI
    To update the assignment dates in Service Order
    1)     CRM_ORDER_DEQUEUE
    2)     CRM_ORDER_INITIALIZE
    3)     CRM_ORDER_INIT_OW
    4)     CRM_ORDER_MAINTAIN
    5)     CRM_ORDER_SAVE
    6)     BAPI_TRANSACTION_COMMIT
    To set status of a second line item to Released
    1)     CRM_ORDER_INITIALIZE
    2)     CRM_STATUS_SET_INTERN_OW
    3)     CRM_STATUS_SAVE_OW
    4)     COMMIT WORK
    Using these FM’s in a report program or even in Debug mode works fine, except in the BSP’s where the behavior is random.
    The issue that we are facing:
    1)     Calling the Function modules sequentially, it takes time to update the order after execution of a BAPI/RFC and at times the order gets locked although we are using the Function Module CRM_ORDER_DEQUEUE after a logical block, and the Service Order is un-available for subsequent actions
    2)     At times, the Steps get executed correctly
    3)     At times the Steps get executed correctly after adding certain delay after each logical block of steps, but at times the time is not enough for the order to get updated.
    Can someone help us solve this un-predictable behavior?
    If someone has previously worked on such a requirement, please provide inputs on the scenario.
    Also, please let me know if there is a fail-proof procedure to ensure that the steps get executed completely and also if there is a need to use alternative BAPI’s in a specific order.
    Thanks,
    Regards,
    Siddhartha Jain

    I am afraid you would have :
    - to copy the standard FM 'MS_EXCEL_OLE_STANDARD_DATA' (it is wrapped up into EXCEL_OLE_STANDARD_DAT)
    - to comment this line in this newly created FM
      SET PROPERTY OF obj_ex_app 'Visible' = 1.
    - to call your own 'ZMS_EXCEL_OLE_STANDARD_DATA'
    That should do the trick.

  • Calculation of planned costs in CS service order with 1 day = 8 hours

    Dear experts!
    What kind of possibilities do I have to calculate the planned costs in the CS service order (IW31) on the basis 1 day = 8 hours.
    Right now, when I create the operation with "amount of work" = 5 days, the system calculates 120 hours * x u20AC. My requirement would be, that the system calculates 40 hours * x u20AC.
    Do I have to change settings in transaction CUNI or can I use the work center to solve my problem? Or any other idea?  
    Kind regards,
    Jens
    Edited by: Jens Neßlage on Oct 28, 2009 6:28 PM

    Jens,
       You should be able to use the work center to solve this problem.Check the working hours in the operation work center and make sure its set to 8 hrs.This should solve your problem.
    Regards
    Narasimhan

  • Cost Report for service order

    Hi All,
    How to take out a cost report for a service order? like my requirement is how the cost of a Service Order  is hitting to which cost center and profit center and company code and posting of the concerned GL along with the activity type.for example i have a service order where some activity is there with various hours all togather 25 hrs, how this is costed and posted in whic cost center and GL and Porfit center along with the rate.
    Thanks,
    Prasad

    Please, try transaction KOB1.  You also should be able to drill-down to line items with a partner object view.

  • Getting list of operations for a service Order

    I have to List the operation activities which are Planned and Confirmed in a service order.
    I'm unable to link the operation in service order for some ZREPORTING purpose as it links through structures only.
    Kindly suggest how we can obtain operation details while reporting a service order.
    Also let me know if there is any FUNCTION MODULE for the same.
    Reply Eagerly Awaited.
    Thanks in Advance.
    Deepak

    hi deepak KM
    order operations are stored in VIAUF_AFVC table .... and have a look at iw49 for getting list of operations and can use status inclusive and status exclusive for selection based on statuses.. of operations ...
    regards
    pushpa

  • Process for adding no cost item to Service Order and show on invoice SM

    We want to put a non-cost item on a service order without having to put a $.01 value on them.  We might  purchase a box of bolts at a hardware store with a purchasing card and just expense items.  We add the bolt as a line item on our Service Order to charge customer some amount.  But we do not have a cost on the item.  To put a bogus $.01 cost  value on the item and have it show up in COPA and in the GL makes the data incorrect. It is our understanding that to pass an item on the service order through process related billing to the invoice it has to have a cost or it does not show up on invoice.   How do other folks deal with putting a no cost item on service order?

    Hi,
    I have tried everything, still its not working.
    First I tried creating a Service Ticket and adding the line item at one go.Then I was getting status error:
    System error: An attempt has been made to create a status object
    with the object number DE20131333937DF180C5001372F65D25.  However,
    a status object with this number exists already.
    Code sample given below:
      CALL FUNCTION 'BAPI_BUSPROCESSND_CREATEMULTI'
        TABLES
          header          = itab_header
          item            = itab_item
          partner         = itab_partner
          status          = itab_status
          text            = itab_text
          return          = itab_return
          service_os      = itab_service
          input_fields    = itab_input_fields
          created_process = itab_created_process.
    Then I tried creating a service ticket first and adding item later.Then there was no dump, but item details are not getting saved. Code sample given below:
      CALL FUNCTION 'CRM_ORDER_MAINTAIN'
        EXPORTING
          it_product_i      = lt_product_i
        CHANGING
          ct_orderadm_i     = lt_orderadm_i
          ct_input_fields   = lt_input_fields
        EXCEPTIONS
          error_occurred    = 1
          document_locked   = 2
          no_change_allowed = 3
          no_authority      = 4
          OTHERS            = 5.
    Can anybody please help me out on this? What is the correct approach?
    Thanks and Regards,
    Rohit

  • Service order - Error during account assignment - Avoid the transfer to ERP

    Hello SAP Experts,
    I am facing a problem in CRM when saving Service Orders. An error is coming from my ERP system because the system is trying to tranfer the cost from the CRM Service Order to R3.
    This is the error: Orgfinder: No value found for Organizational Unit BILL_ORG
    I don't need the transfer of costs to the ERP. Can anyone tell me how we can deactivate this option? The item category is relevant for pricing but it is not relevant for invoicing and costs.
    Please help.
    Thanks in advance and regards.

    Hi Savan,
    SAP CRM Status Management is a part of SAP CRM Basic or Base Customization and the link is available in the following path
    IMG --> CRM --> Transactions --> Basic Settings --> Status Management --> Change Status Profile for User Status.
    Here you can influence the status. You can also have a look at the status profile documentation here
    [Status Profile|http://help.sap.com/saphelp_crm70/helpdata/en/92/8269126d1547578aab640f097de32c/frameset.htm]
    Hope this will help.
    Thanks,
    Samantak.

  • Assiging wbs element as settlment receiver in service order settlement

    Hi PM CS Experts.
    We are using scenarios of creation of service order from sales order. So whatever cost we incurred for service order settling to sales order via settlement rule - settlment receiver is Sales order i.e. SDI. We are using settlement profie XX which have default object type for settling SDI.   While releasing the service order the settlement rule created with settlement receiver is SDI.
    Now for different business scenarios, we are settling service order cost to WBS. Now we want to create a settlemetn rule for WBS, settlement receiver will be WBS element,  while saving the service order.  What configuration, master data or processes we have to follow for this.
    please reply on this.
    regards
    abhay

    Sales Order line item have account assignment WBS element. From this sales order line, a service order will be created.   So our idea is whatever cost booked to service order should be settled to wbs element instead of sales order.  
    also in location tab of service order, the wbs element from sales order is not inherrited in account assignment section.  Why this we are not knowing. Have you have any idea for this.
    regards
    abhay

  • Query on Service Order Reports

    Hi,
    Need to take report based on Months for the
    Open Service Orders Quantity
    Actual Cost Value of Open Service Orders (Local Currency)
    Actual Billable Cost Value of Open Service Orders (Local Currency)
    Month to Date Revenue
    Month to Date Margin
    Quantity of Invoices Processed Daily
    Average Days to Invoice of Daily Invoiced Service Orders.
    The above reports must be with the Output containing the below fields:
    Order ID
    Invoice ID
    Node
    Order Creation Time
    Resolved Date
    Invoiced At
    Request Type
    Deb/Cred
    Quoted
    Actual Cost
    Total Cost Received
    Total Price
    Margin
    Days to Invoice
    Let me know if there is any std reports available or the appropriate Table names to fetch the same.
    Ravi.

    Hi,
    Am able to fetch few of the fields from AUFK Table and T. Code IW73. But still wants to know any other provides these fields to take as report.
    Ravi.

  • Service order and WBS Element

    Hello Experts,
    I have a question regarding WIP service order costs. Can we post the costs of a WIP service order to a WBS element? IF so where do we link the service order and project/WBS Element? How do we post the costs to WBS elements?
    Appreciate your help and time in this regard.....
    Thanks,
    Harish R

    My problem scenario is like this.
    We have two plants A and B of the same Co.Cd. We are physically closing plant A and moving everything into B. Now the open service order costs from plant A have to be moved to plant B. How do we do this?
    Do we have to create a new service order/WBS element for all old open service order/wbs element?
    Also where do we connect the service order and wbs element?
    Appreciate your help and time.
    Thanks,
    Harish R

Maybe you are looking for

  • English InDesign on Chinese Windows XP

    We are an Australian based company and we have a branch in HK. They wish to use our InDesign but the key we use does not work. When they enter the key during the install, they get a red cross. They are using our install files but they are installing

  • Exporting Keynote 4.0 to Powerpoint 2007 and 2008

    I know that this topic has been discussed previously with respect to Powerpoint 2007 but I'm somewhat frustrated with the export to powerpoint feature in Keynote. Some background: 1. Using keynote since version 1.0 2. Never had a significant problems

  • Using DVD drives for Wallsteet Powerbooks

    I recently bought a used PowerBook G3 Wallstreet. Was interested in eventually obtaining a Combo CD-RW and DVD drive. 1. are these kind of drives available for a Wallstreet PowerBook G3 and how much do they run? 2. How easy are they to install? 3. I

  • Wild card search using %

    I have a question on wild card searches. I am currently doing a like behind the scenes to look for a string inside a string... However, if the user wants to put in a wild card like 'AP%Report%'... I would like to return all the ones that begin with A

  • JNDI tree config in 6.1 sp2

    Hi All Is there any way I can set up some name/value pairs in config.xml OR any other place so that Weblogic 6.1 can pick it up and add it to the JNDI tree - IN other words id there a way to setup up some name/value pairs at the config time - also ca