Cutomize functional area in Service orders

Hi Experts.
Does anyone knows where can i customize that one order type brings a functional area by default?.
It should be easy, but i can´t find the transaction in customizing.
Thanks.
Alex

Hi Alex,
IMG-> Sales and Distribution/ Basic Functions/ Account Assignment& 
Costing/ Maintain Requirements Classes For Costing/Account Assignment:
requirements class= 040-> functional area= 0300.                     
I hope it can help you.
Regards
Ruy Castro

Similar Messages

  • Default Functional Area in Sales Order Line Items

    Hi,
    Is there any user exit that can be used to default Functional Area in Sales Order Line Items.
    I tried mv45afzz but not working. Any idea and do let me know the field or structure effected.
    Thanks.

    Hi Sathish
    You can update table XVBAP from program SAPMV45A in program mv45afzz like code below:
    FIELD-SYMBOL: <mytab> LIKE STANDRD TABLE OF VBAP.
       ASSIGN (SAPMV45A)XVBAP TO <mytab>.
       LOOP AT <mytab>.
       ENDLOOP.
    I hop it helps .
    Kind regards
    Carlos Machado

  • Need functional module for service order

    hello,
    while creating service notification i want to create service order automatically.for that i need a functional module which is the key funtion to process creation of transaction in the background. i want the name of that functional module to create iw31 service order automatically  and that of functional group so that i can assign in the action box.
    Regards,
    Rajesh Kumar Raju
    9900311069

    Hi,
    unfortunately there is no such "official" BAPI available - not even in ERP2005! There is a BAPI called BAPI_ALM_ORDER_MAINTAIN but this is for changing an already existing service order.
    But, you can use what the "SAP CRM group" developed for their integration to the backend R/3 system. This FM is called CRM_CS_API_ORDER_CREATE and is part of FUGR CRM_CS_API_ORDER. This FM is acting in the same way as a "normal" BAPI although you can not find this FM in transaction BAPI.
    Hope this can help!
    Best regards, Johan

  • Functional location to Service order

    Guys
    Is it possible whenever a functional location is created, through background i want to generateone service order aganist the functional location.
    For this any BADI or User Exit is there ?
    Ravikumar

    Ravi,
    Yes, I would use the PERFORM YOUR_FORM ON COMMIT syntax to ensure the functional location is created before the order is created.
    If this doesn't work, then you could either use a batch program to create the service order, or use a synchronous workflow task.
    Either way it will require ABAP programming
    PeteA
    [www.pjas.com]

  • Work order settled without functional area

    Hello All,
    We are getting an issue here, business is trying to settle a workorder by posting it through KO8G.
    When the posting is done we cannot see the Functional area on the Debit Line (40), and the credit line has the work order, profit center and functional area. As the debit line does not have functional area, the data does not match in BI.
    Could anyone please elaborate how can we get the FA on both the lines.
    Thanks in Advance,
    Tushar Nerlekar

    When you issue inventory to service order, the journal entry is
    Dr Consumption + Production Order (Functional area derived from order type)
    Cr Inventory (B/S account doesn't need CO object assignment)
    When the order settles, the accounting entry is:
    Dr Consumption + Cost Center (Functional area derived from cost center master data)
    Cr Consumption + Production Order (Functional area derived from order type)
    In Iw33, check in Go To -> Settlement Rule at header level what is the settlement receiver?

  • Unable to edit User Status in Service Order

    Hi Experts,
    There are several service orders with user status 'Open', whereas the system status is 'In Process'. The individual items are either set to Completed or are Released. I am unable to change the user status from 'Open', as there are no other options available in the dropdown list in edit mode. I even tried changing the status in CRMD_ORDER and was not able to do it. I checked the configuration for this and its perfectly fine. The status profile has been maintained properly.
       I tried using FM CRM_STATUS_CHANGE_EXTERN and CRM_STATUS_CHANGE_EXTERN_OW for this purpose and it still did not work. Any help/tips to resolve this will be highly appreciated.
    Thank you,
    Nanda

    Hi Nanda,
    As per your last reply, for some Service Orders you are unable to change the Status. Can you have check whether those service Orders are error free?
    Sometimes, when there are errors in service orders or in 1Orders you cannot change the status from In Process or Open even when you have released certain Items.
    Hope this helps.
    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

  • Any way to add 'Actions' tab on Service order Item level in ICWeb?

    Hello,
    We are implementing Service orders under CRM2007 Interaction Center.
    When we access the Service Orders through backend (t-code CRMD_ORDER), we see an 'Actions' tab on the Item Level which captures all the actions executed at Item Level. This tab is not available from the UI.
    Is there any way to add it to the UI? Note that it is available from both backend and UI at Header level but only from backend at the Item level.
    Thanks,

    Hi Deepali,
    I checked the TCODE CRMD_ORDER, there are buttons like AVAILABILITY CHECK on the item level.
    When you say it is an Item view on the Web UI, I believe it is a Table View.
    In Table Views you will have ON CLICK ACTION buttons next to the Row Selectors.
    For most of the views it will be available by default.Identify the Web UI component and open it through BSP_WD_CMPWB.Select the view and open the context node class and check if there is a method
    GET_OCA_T_TABLE.
    This method will have the code like this, for the buttons
      ls_one_click_action-id      = 'DELETE'.
      ls_one_click_action-icon    = 'delete.gif'.
      ls_one_click_action-text    = ''.
      ls_one_click_action-tooltip = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_IC_APPL/DELETE' ).
      ls_one_click_action-active  = 'X'.
      APPEND ls_one_click_action TO rt_actions.
    If your component also has these things, then you can simply add the ACTIONS column using Configuration Tool else you need to add this column by coding, redefine the method GET_OCA_T_TABLE and add the buttons.
    You need to explicitly create event handlers for the button click actions.
    Mostly,it should be available to you by default as it is available in SAP GUI.
    Regards,
    Masood Imrani S.

  • PCA Functional Area Report Problem With Co-Product Settlements

    I have built a profit center functional area report for use in a manufacturing client.  The reason is because the factory cost centers flow to the product cost (via costing sheets) and the administrative cost centers are expensed monthly.  However, SAP seems to have no other approach to handle the issue where common expense elements must be reported in these two separate sections.  Anyway, here is my problem:
    After creating the functional areas and matching them to each cost center appropriately and then applying a different functional area to orders, I see that settlement of co-products causes my report to zero out the functional area that should match the overhead cost centers.  These obviously should not be impacted by settlement and I see that they are not impacted in the transactional data.  However, the functional area report shows a different story.  I believe it somehow has to do with the unusual way that co-product split up and settle versus other types of orders.  I may need some sort of subtitution rule, but like I said, the raw transactional data looks correct and the report should bring in these values. 
    I used ledger 8A if that helps.  I am sure I missed some small thing somewhere.
    David

    It looks to me like the New G/L may have taken care of some of my issue.  The FI reconciliation G/L account (690000 usually) includes the secondary cost center postings as well as the secondary order postings.  The cost center side of the secondary transaction reflects the functional area for cost centers (Factory Exp or Admin Exp in my case), whereas the order side of the secondary posting shows the functional area associated with order consumption (Net Consumption in our case). 
    This appears to mean that the standard report for Functional Areas from FI should work to break up the income statement for manufacturing purposes.  This report is S_PLO_86000029.  That report looks to me like it will replace my need for a PCA based Functional Area Report.
    David

  • Userexit for service order

    Hi
    We are creating service order and giving reference of sales order (contract) in it.
    A new sales document type has been configured recently.We have a requirement that if the reference sales document (contract)belongs to this particular document type and the material in component tab belong to a particular material group then only the service order should get created.
    Please suggest it can be done thorugh which userexit or is there any other way to do it?
    Thanks

    Have a look at the following which are triggered when saving an order
    User-exit IWO10009 (TCode SMOD)
    BADI WORKORDER_UPDATE (TCode SE18)
    Also have a look for the PM/CS User-Exit link at the top of this forum.
    PeteA

  • Cancellation of Service order confirmation

    In IW31 we are creating service orders. That service order is posted in 03/24/2008. When i cancel that service order today it is posting into 03/24/2008. But it has to post in Current date. ( 11/25/2008 ).Can any one tell me why it is happening like that.?
    The below is the brief explanation.
    "The main problem is that after the last day of the month users sometimes have to cancel a confirmation( IW45) against a service order. Unfortunately this is posted back into the month that the original confirmation was done. This does not seem to be the correct way for this to be handled. The posting should be made into the current month..

    Hi,
    Instead of deleting an order,we can assign the reason for rejection.
    Goto T.Code "MASS".
    Enetr the object type as "BUS2032".
    Press F8 or Click on "Execute".
    Click on Fields.
    Search for the field "MASSVBAP-ABGRU".
    Select that line entry.
    Enter your order numbers range in from and to fields.
    Execute and then assign the reason for rejection.
    After this the status will be changed to completed and cannot be billed.
    Save.
    Regards,
    Krishna.

  • IW31 how to set functional area as a default value?

    Dear all:
    Can anyone guide me, is any way to set "functional area" as a default value (t-code iw31 Additional Data -> Functional area)?
    Thanks in advance.

    Hello ,
    The standard funtionality is set to default the Functional Area from the Order Type.  I believe it is possible to change the default value for the Functional Area in Transaction KOT2. The PM order types should be selectable in this transaction.
    I hope this information has been helpful.
    Best Regards,
    Frank

  • Service order third party

    Hi,
    I am working on service scenario. Post processing of sales.
    We are creating service order ECC. First we have to check warratny for product.
    we have to create service order for product. we dont have resources to repair it.
    Some third party provides services to repair the product.
    Third party will send invoice to us.
    This is exactly  similar to third party order in sales scenario.Please can you tell me how to proceed third party service order.
    What is the order type:  is there any order type in ECC. (like or sales).
    What is the iem categary group for procure new services for repair the lab top.
    How can i do item categary determination for third party services procurement porcess. Awaiting for great suggestions.
    Thanks
    john

    Hi
       Yes. It is like third party order process. But you have to customize according to meet ur requirement.

  • Problem Creating Service Order SM03 from Repair order RAS type

    Hi All,
    While performing "Repair" action in repair order, we are triggering service order type-SM03
    If the return material (serviceable material) is having Individual requirement settings in MRP4 screen, system proposing POP up screen for PO creation-
    This POP up we need to restrict (even though as per present setting it is not effecting our business process)
    This is because the serviceable material is copying as item "0000" in component tab.
    Any inputs?
    Thanks
    Chidambaram

    .

  • Implement Org determination for Service Orders

    Hello Freinds ,
    My Client is implementing the service order with WebIC2005 with the following scenarios.
    Service orders created Manually.
    Service Orders created from completed sales order automatically.
    Could any one possibly suggest the best practice of implementing org determination for the above scenarios.
    Is it a correct practice to determine sales org for manual creation of Service Order.
    For Automation process is it not correct have sales org determined from sales order.
    How to determine Org Determination in  WebIC service order Link?
    Thanks & regards
    Amar

    Hi Amar,
    You cant assign two diffrent org determination for same transaction type.
    Its always better to determine the org at transaction type level. But wehn you are creating service order from sales order , you can set the rule in Copy control whether to copy the org or not.
    Hope this helps.
    Regards
    Arun Kumar

Maybe you are looking for