Xstep work instruction in Production Order

Hi,
I am interested in setting up xstep to view documents assigned to FG and component & operations in PI sheet. Could any one reply me how to set xstep to show this?
Regards

Hello,
Xstep instruction are execution of the production process and group and structure this information is in the form of modules.
The steps followed to set up are explained in the below link:
http://help.sap.com/saphelp_me52/helpdata/EN/46/f7effa78de2ecbe10000000a11466f/content.htm
Hope the information is helpful.
regards

Similar Messages

  • All default routing value has to be changed, while changed the work center in production order

    Dear friends,
    our client they want to change the work center in production order.according to production version work center also they are changed.so while change the WC,all the default value has be changed as per routing what we maintained in routing.At present we have to enter the manually change the W.C as well as set up time and operation time enter manually.Any other option to do the automatically capture value from routing while change in Work center in production order.pl help me on this.
    Thanks&Regards
    Sabhapathy R

    Hi Rahul,
    Thanks for reply. I am maintained in diff value  maintained routing , Ex :First routing i have  work center 'X' value maintained as a setup time in 15 Min's and operation time 10 Min's
    second work center 'Y' I have maintained as set up time 10 Min's and operation time 30 Min's,
    Now I want to change the work center in production order as a 'Y' so whatever value maintained in routing , it has to be changed automatically (10 min's and 30 Min's), but system will not change only old value only picked (15Min's AND 10 Min's).
    Now I think you get to know what the client requirement, kindly do the need full.
    Regards,
    Sabhapathy R

  • Change Work Center during production order confirmation

    Dear All,
    I must to modeling this situation:
    I created an production order. In routing I used an work center A.
    After I confirmed a half of quantity, the work center A was damaged and I must to change it, with the work center B.
    The system allow this change, but when I checked the costing, the situation isn't real. The system counted the costs just for the work center A, and no for work center B.
    My question is: it's possible to change the work center, during production order confirmation and the costs updated with new cost?
    Thank you for your answer!
    Regards,
    Marian

    once a Order is released, the Process order detaisl for that order is frozen.
    however if you want to do it, change the order status to CRTD after reversing the Movements done.
    Do READ MAster data , this will copy the new Work center , redo the previously done Moevements.
    if the change is long term.
    or
    Just manually add the new work center and do the processing. if the change is temporary.

  • Mass change of work center in production order

    Dear All,
    Is it possible to mass change work center in production order, i.e. i have around 100 production order of which i have to change the work ceter assigned in particular operation .
    Thanks and regards
    Manish

    Hi Manish,
    If you have not posted any activity or goods to the production order, then in header click on Functions -> Read PP Master Data.
    The order will now read the routing with the new work centers, provided the same has been changed.
    If you have posted some activities or goods movement done, then its a manual process.
    Hope the above answers your query.
    Regards,
    Vivek
    Added
    If in case you have posted some goods or confirmed some activity, check if you can reverse the same, re-read the routing & then post back the goods.
    Edited by: Vivek on Feb 24, 2009 12:22 PM

  • Work center wise production order infomation report

    Hi all,
    i have a requirement that workcenter wise (with date) production order information with quantity details (plan and actual).
    Eg: My production order quantity - 40 nos. (it takes 4 days to finish).
          i have three operation in production order.
          my order scheduled start date - todays date.
    In standard, when enter my first operation work center, system showing production order and its quantity (40 nos) . but i need to split that order quantity in report.. means on todays date for particular production order - order quantity = 10 nos.
    Clent want like that (with quantity break) report..
    Any standard report ???
    If customization.... How it can be mapped in SAP.??
    Thanks in advance

    Hi,
    You can use the FM COIS_SELECT_ORDER_DATA_READ.
    CALL FUNCTION 'COIS_SELECT_ORDER_DATA_READ'
          EXPORTING
            iv_prod_order_sel       = lv_prod_order_sel
            iv_proc_order_sel       = lv_proc_order_sel
            iv_planned_order_sel    = lv_planned_order_sel
            iv_rem_objects_only_sel = lv_rem_objects_only_sel
            is_objects_to_read      = ls_objects_to_read
            it_parameter            = lt_parameter  "General Structure for PARAMETERS and SELECT-OPTIONS
            it_status_hdr           = lt_status_hdr
            it_status_opr           = lt_status_opr
            it_status_cmp           = lt_status_cmp
          TABLES
            ct_ioheader             = lt_ioheader
            ct_ioitem               = lt_ioitem
            ct_iodocl               = lt_iodocl
            ct_ioopdocl             = lt_ioopdocl
            ct_iomamo               = lt_iomamo
            ct_ioconf               = lt_ioconf
            ct_ioopconf             = lt_ioopconf
            ct_iosoconf             = lt_iosoconf
            ct_iogomo               = lt_iogomo
            ct_ioopgomo             = lt_ioopgomo
            ct_iosogomo             = lt_iosogomo
            ct_iogmer               = lt_iogmer
            ct_ioopgmer             = lt_ioopgmer
            ct_iosogmer             = lt_iosogmer
            ct_iosequen             = lt_iosequen
            ct_iooper               = lt_iooper
            ct_iosoper              = lt_iosoper
            ct_ioopcomp             = lt_ioopcomp
            ct_iooppreq             = lt_iooppreq
            ct_iosopreq             = lt_iosopreq
            ct_iooppord             = lt_iooppord
            ct_iosopord             = lt_iosopord
            ct_ioopmst              = lt_ioopmst
            ct_ioopprt              = lt_ioopprt
            ct_ioopcap              = lt_ioopcap
            ct_ioopscap             = lt_ioopscap
            ct_iosocap              = lt_iosocap
            ct_iososcap             = lt_iososcap
            ct_ioopsccf             = lt_ioopsccf
            ct_iososccf             = lt_iososccf
            ct_ioprodlist           = lt_ioprodlist
            ct_iomatver             = lt_iomatver.
    This FM get data from the report used by transaction COOIS. If you needed the header data then you can use lt_ioheader table and seperate the data with the date. If you need at operation basis the you can use lt_iosoper table. You can use this FM to create custom report even with the checks like material availability, PRT availability, capacity requirement etc.
    Thanks and regards,
    Pradip
    Edited by: Pradip Ray on Aug 26, 2009 8:26 AM
    Edited by: Pradip Ray on Aug 26, 2009 8:26 AM
    Edited by: Pradip Ray on Aug 26, 2009 8:26 AM
    Edited by: Pradip Ray on Aug 26, 2009 8:27 AM

  • Work flow in production order

    Hi
    There is a requirement to trigger a mail to a specific user id whenever the order will be Created, confirmed & TECOed (may be they add other events later on). We can make it through standard production order workflow process I think. For that I have assigned user ID to object TS0020047 & TS20000623 (agents assignment ) through TX: COWf1. In the event linkage screen I have activated with events TS20000634 & TS20000634. Still It is not triggering any work flow to the workplace of assigned user id. Where is the mistake I am not able to identify.
    Or if there is any other method to achive this? Pls suggest
    Thanks
    Edited by: BNR on Feb 16, 2010 5:34 AM

    Hi
    In CO01 > Click on Go to > Missing Parts > Missing Part list
    In Nxt Page Click on List > Send to > Mail recipient
    In the Recipient tab enter SAP user id of MRP Controller and Recipient type SAP Log on name and click on Send icon at Top left.
    SAP Mail will go to MRP Controller SAP Work place in box.
    Regards
    Brahmaji

  • How to manage work center in Production order

    Hi,
    I am producing a material having one operation (suppose cutting), which I have mentioned in the routing. I have also mentioned the work center in routing on which cutting operation will be performed. When I make the Production order of 1000 pcs there comes only one work center. But practically, they are producing these 1000 pcs on two different work centers ( 500 on one and 500 on second). How to manage this in SAP.
    Kindly help me.
    Thanks and Regards,
    Yogesh Singla

    Dear ,
    What is the individual capacacity of the Work Centre -CR02-Header -No of Individual Capacity ?
    I think you must be using similar kind of work centre of 2 no 1000 pc .Now , when you are creating routing for this , you should hit Required Spilliting in Routing Operation -Select Operation line item  and then Double click -Select Spilitting and enter splitting No 2.
    At the same time in CR02-Work Center -Capacity Tab -Hit the Header -In the Bottom of the Detail Capacity Header -Avaialabile Capacity -Include 2 as Number of Inidvidaul Capacity  and SAVE.
    Now based on thr required spilittinga and invidual caapcity , it will consider the Work Centre Load .
    Other wise , you can enter one more operation line in routing with similar Labor hrs , work center and control key in routung for production of 1000 pc  .
    Hope it clarifies
    Regards
    JH

  • Work center for Production order

    Hi,
    In my report I need to link the production order to work center. I have got all the information for the production order from AFKO, but I am unable to find a way to link it to the work center?
    Thanks
    Vamsi

    Hi Vamsi,
    Refer value AFKO-AUFPL, Use AFVC-AUFPL to fetch the operation details of an order. Fetch AFVC-ARBID for AFVC-AUFPL, use CRHD-ARBID to get Work center details.
    Regards,
    Prasobh.
    Award your marks, if this has helped you.

  • Altenate work centers in production order

    Hi, we have 2 different work cneters and any one work center can be selected in the prod order when we process. please advise how to create a routing that will allow to enter 2 work centers for one operation (alternate to each other) so that when we craete order any one can be selected by the opeartor. please advise.

    Hi,
    In CA02 branch to the sequence view and create an alternative sequence, attach the sequence to the main sequence strating and ending at the operation you mentioned.  Enter one work center to the operation in main sequence, second work center in the alternative sequence. Users may confirm based on the situation by entering the sequence number and operation in confirmation.
    Regards.

  • Assign XSteps to Production Orders

    Hello Experts,
      I have assigned the Standard XSteps to the production scheduling profile PP0001 and assigned the same scheduling profile in the material master.  When I create the production order I am not seeing the XSteps in the my production order. 
      If I use the scheduling profile PI0001 (PP-PI) in the material master then it's working fine with my master recipe.
    Am i missing any configuration for scheduling profile PP0001?
    with best regards
    K. Mohan Reddy

    See the link below and try...I have not tried it...
    http://help.sap.com/erp2005_ehp_03/helpdata/EN/43/d582b2fe060cd4e10000000a1553f7/frameset.htm

  • Open production orders and outbound delivery after go-live

    Hello All,
    I tried to search answer for this question but could not find answer.
    Could anybody suggest, what to do with open production orders and outbound delivery after go-live when WM is activated. As, after go-live WM-PP interface will be activated and system should consume material from storage bin specified in control cycle and that will happen for newly created production order after go-live,but what about existing production orders how to update production supply area against work center in production order.
    Similarly with outbound delivery how to update WM status after go-live.
    Thanks in advance

    Thanks to both Jurgen and Sander
    Regarding production order yes, one way is to re-read PP master data in production orders, but is that the only way to handle this or do we have any other option?
    I was aware of re-read PP master data but it will real time consuming and also if it will problematic for already released or partially confirmed production orders.

  • Edit production order for scheduling

    Hi PP Gurus,
    I have to address following requirement in SAP PP -
    1.Factory calender defined at plant level for 6 working days.
    2.work center working time defined for 9.00 hrs.
    3.production order created for certain qty. now due to some urgency I want to plan the activities for this particular order on sunday for 24 hrs.
    Condition -
    1.I do not want to apply special rule in calender because it will be applicable to other orders also.
    2. I do not to make the changes in work center master because it will be applicable to other orders also.
    3. I am ready to make the changes in specific production order.
    Please suggest if any way out to make the working period in production order without touching master data.
    Regards,
    Abhay

    Dear,
    Best way you need to define shift sequence OP4A and assign it to your relevant work center  for particular valid period of time and then So go in work center in capacities screen define your interval of avilable capacity there, you will get option workdays there you have to select :- Working days (overrides factory calendar).
    After that scheduling will take place on  Sundays also.
    After that create production order then you will be able to schedule an order on sunday.
    Factory calendar will be remains same but scheduling will be take place on sunday for particular validity period of shift sequence as you maintained in work center.
    Hope clears to you.
    Regards,
    R.Brahmankar

  • How to find workcenter and production order change log

    Hi,
    I am new to PP function.
    Due to problem tracking, I want to know where to find the change logs for
    1.Work Center
    2.Production Order
    Many thanks!
    Steven

    Hello Steven,
    to view change log for production order:
    1. you can go to CO03 at the header functions choose GOTO --- CHANGE MANAGEMENT (here you can see if in the order there where Change process been done to the order)
    2. Also in CO03 at the header functions choose HEADER --- STATUS CHANGES (with this you can track the user, system status changes, the action done, date, time, user,transaction happen on the production order.
    to view change log for work center:
    1. go to CR03 choose EXTRAS --- ADMINISTRATIVE DATA (here you can track the date and who made the changes ans status of the work center)
    2. you can also check table CRHD which you can see detailed of the work center you wish to see.
    Thanks

  • Personal ID on Production Order Confirmations

    Hi everybody,
    Please advise on this scenario.  We have 10 work centers in the shop floor. We setup 4 data collection stations (computers) to perform confirmations on production orders... we have around 100 technicians available to work on the production orders, which have average of 10 operations... We setup specific sap user ids for each data collection station, but we want to know how perform the confirmation, SAP records the confirmation under the generic user id of the data collection station as the creator of the confirmation but we want to know who performed/reported it... is there an easy way to assign/use a personal id for each user without creation new SAP accounts for each technician and/or activating HR module?... A personal ID number is available on the confirmation screen but we donu2019t know how to configure it... please your advices will be appreciated...
    Regards,
    Alfonso Gilson

    Thanks Bakhtiyar for looking into my question...
    I found this forum is more for Manufacturing Execution using external systems... I think.  Interface with system like MES, am I orrect?.  In our current solution we are not using any external system or application.   We setup in the shop floor 4 work stations (computers) where the technicians perform the confirmations.  We customized a tcode to combine CO11N and IW41 in one screen, in the backgroup the program identify which tcode to use nase on the order type. In this way users donu2019t need to know which transition they need to use/execute for confirmations.  The users login in this machines using a specific SAP user id/password, and this is the user id that is saved in the confirmations as creator.  Now, we want to know who was the technician that performs each operation.  As I mentioned we have around 100 technicians in the shop floor and they donu2019t have an user id/password setup, it will be too hard to maintain... We call these stations "Data Collection" because they scan the order and/or ticket numbers as a first step to perform the confirmations, then they enter the time and save it... simple...!  But we want to track each person.... I was looking into the personnel id number, but looks a configuration in HR is required... we need an easy flag that later we can display on reports... I hope i provided more details...
    Assigning a specific SAP user id to each technician is not practical... Iu2019m wondering how you guys deal with these scenario in the pass. Customized a table to track the notes / texts on the confirmations?  I hope this is not the case...!!!!  Thanks for any input on this question...
    Regards,
    Alfonso

  • Change Profit center in production order

    Hi
    In production order , profit center is taken from material master, we need a solution to fetch the profit center from cost center instead of material master, assigned in work center, in production order
    selection  of production line from production version assigned to production order
    Is there any std functionality or enhancements possible ?
    now I am working with this SAP note
    Note 150959 - Profit center is incorrect in production order
    Regards
    Devakumar
    Edited by: Devakumar on Feb 22, 2010 11:27 AM

    Then Go to OBA5 enter the KO  Application area
    Add the 367 message and  your user iD enter warning in online and Batch,
    After that You can able to Change the   profit center in Order with warning message in Order

Maybe you are looking for

  • URGENT, Phone wont get past start-up screen and iTunes doesnt see it

    My 3.0.1 problems just got WAY worse!!! After the 3.0.1 update I started having the same issues as everyone else until today. I noticed that my clock was just picking a random time( hours and minutes were off) and would not take to my manual setting

  • Does anyone have apple tv

    I can not get my Ipad to connect to my apple tv. I figured out how to connect apple tv to my network, but not my ipad. can anyone help?

  • Two fields from one dropdown

    Based on the selection for department, I want to update the branch field with the department name and dept_color field with a color code in an Access database. How can I do this with just one selection? I am assuming I need some sort of "If Then" Jav

  • Java.lang.Exception: discarding statement JPanel0.add(JTextField0)

    This message appears when I try to save a Panel with all subcomponents. My programm saves JLabel in the resulting Xml-file but neither JTextField nor JComboBox, etc. I've checked my classes, and all subcomponents of my Spanel are JavaBeans. (Spanel e

  • Interesting bug.................

    Just a heads up, I was using ADDT to build some update and insert forms, I changed the standard submit buttons to images and found that the triggers will not work in IE 6 and 7, worked fine in Firefox, Safari and Opera, but in both versions of IE it