Work center's description copy automatically in operation Routing

Hi all,
Could anyboy tell me where point of spro is to customize that work center's description is copied automatically in the operation Routing's description?
I try to search for it but I don't find it still.
Thanks in advance

Hi,
A suggestion:
In CA10, create a key say Z1 & give the description same as work center's description.
Now go to CR02 & for the work center in default values tab, assign the key to the field Standard Text key.
Now when you create a routing which uses this work center, the operation description will contain the work center description.
Regards,
Vivek

Similar Messages

  • More than one work center for one operation

    Hi Experts,
    Is it posssible to assign more than one work center to one operation,in a maintenance order?
    for example if head fitter and helper has executed maint.activity,how we can do this
    Thanks in advance
    Regards
    Prashil

    Dear,
    You cannot assign more then one workcenter to a one operation.
    But you can assign to a sub operation,i.e to operation one workcenter and to suboperation anotherworkcenter.
    For Sub-operation:
    Go to task list change >>> Operation tab.
    Let say your first operation number is 0010. Then below it for next operation change operation number to 0010 and next to it there is field for sub-operation give there number 0001 or 0010 as per your requirement. Select suitable control key and work center, give description and press enter. your sub operation 0001 will be created for operation 0010.
    I hope it will solve your query,
    Thanks,
    Mohit

  • PM Order - Change operations Work Center to Main Work Center

    Hi Experts,
    We have prepared a tool for client, which create Maintenance Plan and order in the background.
    The order created is having "Main Work Center" defined at header and "Work Center" at the operations level. In the current scenario the "Main Work Center" and "Work Center" are different say 'ABC' & u2018XYZu2019.
    Client has the requirement that work center maintained at operations should be same as the main work center.
    We need to implement the solution to take care of work center to be same as main work center while creation of the order in the background.
    Has anyone worked on the similar requirement before?
    I checked for existing USER EXITS for IW31/32/33 and found only one IWO10012. This doesnu2019t seem to be much useful.
    Please suggest any possible solution.
    Thanks,
    Ankur Sharma

    Hi,
         The work Center entered by default comes in operation work center, u can do validations while saving the Order :-using user exit : IWO10009 PM Order: Customer Check for 'Save' Event.
    regards
    pushpa

  • User exit/Badi for changing operation work center based on service product

    Hi,
    I have an requirement to change the operation work center based on the service product in IW31/IW32 transaction. I am using the BAdi 'IM_SM_BADI_READT399A' for changing the main work center. It changes all the operation work centers except the first one. But I need to change it all the operations.
    Thanks in Advance.

    I am using the enhancement spot 'IWO1_TL_INTEGRATION2' for changing the first operation work center

  • Active version in work center

    Hi Gurus,
    We have maintained various versions in SPRO under production-basic data-work center-capacity planning-active version of available capacity.
    For a particular main work center we enter the active version in capacity header tab in the work center.
    If I create a maintenance work order for that particular work center then
    Do this active version gets copied to maintenance order ? ( currently it is not getting copied )
    Do we have settings where in we can make this as a default value in maintenance order ? ( whatever set in work center will be copied to maintenance order )
    My client have to enter version in every maintenance order created. The quantum is very large.
    So client would like to have this active version copied from work center to maintenance order,  like wise master data from an equipment gets copied to notification or order while being created.
    Kindly reply at the earliest.
    regards,
    Maneesh

    Hi ,
           In standard SAP there is no field in maintenance order operation or order that captures Active version of Work Center capacity .., In which field ur currently entering manually ?
    If u have defined any custom field in order operation to capture this data , then try to use user exit  : IWO10016 PM Order: Cust. enhancement to check operation user fields   to get this data automatically  in Order operation from work center ..
    regrds
    pushpa

  • IW31,IW32 Exit / BAdI to update Oprtn's Work center based on Header WrkCtr

    SAP 46C
    I am looking for a way to ensure that the first operation on a Maintenance Order has the same work center as the Header of the Operation. I am not seeing a BAdI that has the export parameters that allows update of information. Infact I did not see one in ECC6 either.
    Thanks
    Hari

    Hi Dude,
    Code to find out the BADI or exit..
    REPORT  ZBADI_FINDING.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA WA_TADIR TYPE TADIR.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT IN ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    SORT JTAB BY OBJECT.
    DATA : WF_TXT(60) TYPE C,
    WF_SMOD TYPE I ,
    WF_BADI TYPE I ,
    WF_OBJECT2(30) TYPE C.
    CLEAR : WF_SMOD, WF_BADI , WF_OBJECT2.
    *Get the total SMOD.
    LOOP AT JTAB INTO WA_TADIR.
    AT FIRST.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    ENDAT.
    CLEAR WF_TXT.
    AT NEW OBJECT.
    IF WA_TADIR-OBJECT = 'SMOD'.
    WF_OBJECT2 = 'Enhancement' .
    ELSEIF WA_TADIR-OBJECT = 'SXSD'.
    WF_OBJECT2 = ' Business Add-in'.
    ENDIF.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 WF_OBJECT2,
    105 SY-VLINE.
    ENDAT.
    CASE WA_TADIR-OBJECT.
    WHEN 'SMOD'.
    WF_SMOD = WF_SMOD + 1.
    SELECT SINGLE MODTEXT INTO WF_TXT
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = WA_TADIR-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    WHEN 'SXSD'.
    *For BADis
    WF_BADI = WF_BADI + 1 .
    SELECT SINGLE TEXT INTO WF_TXT
    FROM SXS_ATTRT
    WHERE SPRSL = SY-LANGU
    AND EXIT_NAME = WA_TADIR-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    ENDCASE.
    WRITE:/1 SY-VLINE,
    2 WA_TADIR-OBJ_NAME HOTSPOT ON,
    41 SY-VLINE ,
    42 WF_TXT,
    105 SY-VLINE.
    AT END OF OBJECT.
    WRITE : /(105) SY-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , WF_SMOD.
    WRITE:/ 'No.of BADis:' , WF_BADI.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    DATA : WF_OBJECT TYPE TADIR-OBJECT.
    CLEAR WF_OBJECT.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    READ TABLE JTAB WITH KEY OBJ_NAME = SY-LISEL+1(20).
    MOVE JTAB-OBJECT TO WF_OBJECT.
    CASE WF_OBJECT.
    WHEN 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    WHEN 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    ENDCASE.
    DO 2 TIMES.
    ENDDO. 

  • Error message when blocking a Work Center

    Hi,
    In order to block the use of a workcenter, it is recommended to go to cr02 and change u2018usageu2019 field to u2018000u2019 All task list types (see previous topic To block the use of a specific workcenter)
    When changing usage to 000, an error message appears : u201CThe work center is already being used, update task listsu201D. How could it be fixed? thanks
    sb

    If you don't want that operation , Then
    Go to CA80- work center where used list
    find out the routing, and delete the respective operation in routing.
    Or
    If you don't want the delete the operation, Then
    In workcenter , CR02 Go to Extras-->status set lock
    While creating a new production order, system won't copy the locked workcenter

  • Work Center update during work order save (SAP PM) using exit IWO10009

    Hi All,
    I am updating the work center in the operation record of a work order using exit IWO1009. In the debug, the internal table for operation is updated successfully. But once the processing is done and I see the order though t-code IW33, I couldn't see the updated workcenter. And surprisingly, plant field which I am updating with work center, is getting updated in the operation and I can see this in IW33.
    Pls help.
    Thanks,
    Bhaskar

    Here is the code:
        REFRESH : lt_afvgd.
    Getting Operation details
        CALL FUNCTION 'CO_BO_OPR_OF_ORDER_GET'
          EXPORTING
            aufnr_imp = caufvd_imp-aufnr
          TABLES
            afvgd_get = lt_afvgd.
        IF caufvd_imp-AUART = lc_auart1 or caufvd_imp-AUART = lc_auart2 .
    Determination of Work Centre for Operation Relevent To PTE Eng.
          CLEAR : ls_afvgd.
          READ TABLE lt_afvgd INTO ls_afvgd WITH KEY usr00 = 'PTE'.
          IF sy-subrc eq 0.
            ls_afvgd-arbpl  = caufvd_imp-VAPLZ.
            ls_afvgd-WERKS  = caufvd_imp-VAWRK.
            MODIFY lt_afvgd  FROM ls_afvgd TRANSPORTING arbpl WERKS WHERE usr00 = 'PTE'.
          ENDIF.
        endif.
    **-- Updating operations buffer
        CALL FUNCTION 'CO_BO_UPDATE_OPR_OF_ORDER'
          TABLES
            afvgd_upd = lt_afvgd.

  • Dummy work center.

    While creating master recipe curling, edge forming, trimming and painting are assign to a single operation and a resource (work center)is assign to this operation in master recipe. Now my problem is that when I enter the scrap quantity during confirmation in COR6N painting material is consume for scrap quantity also.
    I decided to create a dummy work center  for painting and painting material to be assigned to next operation  40.frist advice me am I right and explain me how to create a dummy work center ,what about the cost center and activity types in costing view of work center .pl. give me detailed steps with T codes.

    Hi,
    You can create a dummy work center and assign to the same operation. This is the only way i think you can do it, Suppose it will be like this,
    Operation 0030 Workcenter1
    Operation 0030 Woekcenter2
    then you can use same cost center, If you want to do costing then use the activity that you want to cost.
    Pls refer this also,
    [Example|http://help.sap.com/saphelp_nw04/helpdata/en/50/13a8946d7611d2a5a80060087a7a74/frameset.htm]
    Regards,
    R.Brahmankar

  • Inspection time Capacity Updation in work center for skipped lots

    Hi Guys,
                 I am using in process inspection type 03 along with DMR criteria at lot level i have defined the DMR rule and assigned it in routing header.DMR rule is inspection lot 1 in 5 will be inspected i.e when the inspection lot will be created and if there is no quality level exists it will first create the quality level with 1st inspection lot which will not be skipped lot and then it will skip next 4 lots and 5th will be inspected again.Quality level is updated during lot creation level.
                 what i am looking is when you have the skip inspection lot he capacity which has been planned for inspection for that work center should not be considered since there is no inspection done because of skipped inspection on that work center although it's the part of Routing/production process.
    please let me know if any more inputs required.
    your inputs/feedback is really appreciated
    Regards
    Ashutosh Shende

    Hi Krishna,
    It is distributing unevenly because of the Int. Dist. key maintained for "Labour" capacity category.
    Following are the available dist keys.
    I think for your scenario, you should select SAP020
    SAP000     Overall load for latest start date
    SAP010     Overall load for earliest start date
    SAP020     Equal distrib. earliest dates, fact.cal.
    SAP030     Equal distrib. latest dates, fact. cal.
    SAP040     Equal distrib. latest dates, discrete
    SAP050     Equal distrib. earliest dates, oper.time
    SAP060     Equal distr. latest dates, operat. time
    SAP070     Overall load at latest finish date
    Please let me know if this works for you.
    Regards,
    Abhay Kapase

  • IW41: automatic update of activity type when changing the work center?

    Hello colleagues,
    when doing a time confirmation with IW41, we have following problem:
    In the PM order the operations are assigned to a neutral executing work center, as it not known which individual technician is completing the operation later on.
    Now when the individual technician is entering the time confirmation with IW41, system is proposing the work center indicated in the operation from the PM order, then technician is overwriting the work center proposal with his own individual work center ID (and pressing Enter), but the activity type is not getting updated automatically. So the technician must jump to field "activity type" and choose the correct activity type.
    Is there any solution (hopefully with user exits!) to have the field "activity type" automatically updated with the one indicated in the work center, which was entered manually?
    Thanks for your ideas!
    Regards,
    Patrick

    Hi Maheswaran,
    yes, as usual all PM work centers have only 1 activity type assigned in the costing tab.
    We also checked the settings of the activity type (KL03), but we just found one difference: the price indicator was set on 3 "Determined manually" - we've changed to 1 "Plan price, automatically based on activity" (..same setting as for the act. type of the work center with working update of act.type).
    We tested already all possible constellations and scenarios, but we have not found any good reason for the behaviour.
    Thanks for your efforts so far!
    Patrick

  • Service master user exit to populate work center description

    Hi experts,
    In IW31 work order, I need a user exit to populate the work center description to PR delivery address for control key PM03 with Service Master.  I have tried and search in vain for other BADI or user exit but none works.
    Is there anyone have solution on this?
    Thanks.
    Regards
    PSK

    My abaper has tried a few IWO1_PREQ_BADI, IW010009 and WORKORDER_UPDATE.
    Operationally, user require the work centre address as the delivery address of the services due to the company has 24 physical workshop locations.
    Anyway, will also try to create the fields in AUFK table as recommended.

  • Urgent : Automatic Selection of  work center

    Dear All,
    Good Morning,
    please provide me valuable input to accomplish the business scenario,
    the scenario is
    1.There are 16 NC T-Bending Machine with different capacity.
    2. The Client wants to select the workcenter automatically if the 1st workcenter is overloaded i.e 2nd workcenter should be selected by the system
    Again,if 2nd workcenter is overloaded then system should select 3rd workcenter and so on..
    How I can make it possible.
    I am trying the Alternative sequence ,will it works to achive the requirement .
    please give ur valuable inputs.
    Thank in advance,
    Vijay Mankar

    In capacity leveling transaction, enable "date entry when dispatching".  Then, every time you dispatch operations, you will get a pop-up for date entry.  Luckily, this pop-up also has a field for work center - so you can change work center also (with or without date changing).
    We are using this method extensively.  Start transaction with all the work centers that you want to be considered.  Then, just select all the orders and dispatch.  In pop-up, change work center to the next in list.  So, some orders will get dispatched to that work center, and after its capacity is fully booked, the balance orders will fail to dispatch.  Once again, select all orders (left in the order pool) and dispatch, and change work center in pop-up.  You will have to do this as many times as the list of work centers OR till all orders are dispatched (whichever occurs first).  Takes just about a minute per work center and works perfectly.
    - Chetan

  • Changing operations work center during creation of  PM order

    Hi all,
    I am looking for BADI or EXIT in order to change operationS work center which created from maintenance calls.
    Does anyone know such possibility?
    Assaf

    Assaf,
    Have a look at BADI IWO1_TL_INTEGRATION2.
    Also see [OSS Note 925072|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=925072]
    Which system are you running?
    PeteA

  • PM Order - Change "Work Center" on operations to "Main Work Center"

    Hi Experts,
    We have prepared a tool for client, which create Maintenance Plan and order in the background.
    The order created is having "Main Work Center" defined at header and "Work Center" at the operations level. In the current scenario the "Main Work Center" and "Work Center" are different say 'ABC' & u2018XYZu2019.
    Client has the requirement that work center maintained at operations should be same as the main work center.
    We need to implement the solution to take care of work center to be same as main work center while creation of the order in the background.
    Has anyone worked on the similar requirement before?
    I checked for existing USER EXITS for IW31/32/33 and found only one IWO10012. This doesnu2019t seem to be much useful.
    Please suggest any possible solution.
    Thanks,
    Ankur Sharma

    Hi Tilak,
    Thanks for the response. The current situation is that we are creating the order in background using the Z-program. The scenario is creating order with operation entries having work center not equal to the main work center.
    I am not functional, so just talking in terms of technical terms.
    Is there a way the work center at operation level can be changed to main work center in background?
    Thanks,
    Ankur Sharma

Maybe you are looking for

  • HT4108 Lightning adapter no longer mirrors my iPad 4 to my tv with IOS7.

    Is there a setting I need to adjust to get the image to appear or is this a bug with the new software? With iOS 6 yesterday I could easily watch video on the tv, now I cannot with ios7. 

  • Release strategy: Tx CL20N Error: Entry 01 does not exist in table T16FS

    Dear MM Gurus, I was designing new release strategy for PR and PO, so I deleted all the previous entries(SPRO) available in SAP. I created my new entries but in the transaction CL20N I got the above mentioned error: "Entry 01 does not exist in table

  • Fonts don't print with Font Book

    Hi, Fonts I load in Font Book are looking fine on screen but they don't print - I have to put them directly in the Fonts folder (in the System folder) to do so. My printer is a Lexmark E120n is that matters. What should I do to get them to print usin

  • Cannot view controls in website

    Hi, Can anyone help me out with displaying the controls for Flash Player? I have flash player 9 plug-in and why doesn't the controls get displayed like volume, pause etc. Please help me out with this.

  • ZMWS missing for Belgium sold-to-party

    Hi I have a problem with ZMWS condition. I set output tax in customer and tax data in material but when I put in customer a VAT reg.n (13 chars) and then I want to create a sakes order a mandatory condition ZMWS is missing. But when I clean the Vat r