Production Order Status Change

How can i change the Status of the Production order by using any BAPI or FM?

Hi,
Try this,
BAPI_PRODORD_CHANGE
You use this method to change certain header data in an order that already exists in the database.
CALL FUNCTION 'BAPI_PRODORD_CHANGE'
  EXPORTING
    NUMBER                 =
    ORDERDATA              =
    ORDERDATAX             =
  IMPORTING
    RETURN                 =
    ORDER_TYPE             =
    ORDER_STATUS           =
    MASTER_DATA_READ       =
Use threads
Re: how to use BAPI Program for change workcenter in co02?
Batch determination in production order for a component

Similar Messages

  • Production order status was not changed to 'CNF' after final confirmation.

    Hi guru.
    I experienced very special case that production order status was not changed to CNF after final confirmation.
    I did final confirmation and canceled confirmation. (CNF -> REL)
    And I did final confirmation again because of fixing activity quantity.
    the strange thing is that production order status wasn't changed from REL to CNF.
    I did  confirmation again with 0 activity, thereby  I solved this problem
    BUT i don't know why this case happened.
    Please, explain the reason.
    Thanks.

    Hi,
    As per my observation, their is not any change in the status of the order REL with confirmation CNF, instead of this, it has change from CRTD & then to TECO.
       Sequence of the status of the order as below
    1) CRTD MANC NMAT SETC
    2) REL  NMAT SETC - Changes from CRTD to REL after releasing of the order
    3) REL  CNF  PRC  CSER ERTR OPGN SETC -  After confirmation, it updated after the order REL status.
    Rgd,
    Chetan

  • Mass change of Production Orders status from TECO to CLSD

    Hi All,
    I want to do mass change of Production Orders status from TECO to CLSD. could you tell me is there any t-code by which i can mass change Production orders status from TECO to CLSD. I want Production Orders to be closed, so that further confirmation shouldn't be done for these Production Orders. please let me know the solution.
    Regards,
    Ram

    Hi Girish/Dogboy,
    I can set the status 'Complete' if Order is fully confirmed/fully delivered. When ever i run COHV for partially confirmed/delivered Orders, i get error log saying 'Balance of ORD................ is not zero'. Actually we have lot of Production Orders, where there may be Production Orders released only, partially confirmed etc. so i want them to be closed once for all.
    Regards,
    Ram

  • Production order status as "Change by external system"

    Hi,
    I am come across the production order status as "Change by external system"
    In what condition above status is maintain in production order.
    Please help me.
    Sanjay

    Any change in the order done in the external system other than SAP, this status is set by the System.
    For example XMII.
    Regards
    Ratan

  • Production order qty change tracking

    Dear gurus,
    In a production order qunatity change should be tracked.Say for eg prodn order qty is 100.User is changing  to 200.As a client requirement they want he change historya of PIR change history.The same tracking reuired for Component change qty.plz through some light.Without OCM any other solution plz guide me
            Please through some light
                             -Guna

    Hi,
    There is a way by which the quantity field in the production order can be fixed and made non modifiable
    You need to create a status profile in bs02
    Double click the status profile.
    Enter the user status as crtd
    Tick the initial status as enabled
    Place the cursor on the status profile
    Select the object type as PP ORDER HEADER
    Now choose the user status
    Double click the user status
    Goto create mode
    select change and set forbid radio button
    save.
    Assign this status profile to order type in opjh tcode.
    Now once you have created the production order the system automatically forbids any change.
    And
    OCM is option to track it or authorization feild to restrict it.
    Regards,
    R.Brahmankar
    Edited by: R Brahmankar on Jul 22, 2008 10:38 AM

  • Production Order BOM change

    Dear Expers,
    How can i restrict the Production order BOM Change. Please tell me with the steps.
    Other than screen variant.
    Regards
    Raghu

    Hi,
    To do this you can use below mentioned processed.
    1. create a user status and give approval to the order at creation and the user will not be able to change any thing in the process order.
    2. You can use user exits to restrict changes changes at "materials" screen.
    Hope this will help.
    regards,
    kaushik

  • OCM u2013 Production Order Status CRTD

    Dear guru
    I want to use ocm for a production order according to a change of a bill of material with a change number.
    Can I run COCM for a production order with status CRTD ?
    OCM is only possible for production order with status REL ?
    Thanks in advance

    Hi,
    OCM is used particularly for the scenario where customer can order a configurable product & afterwards trigger changes if he wants a different configuration - even if the production has already been started. This configurable product is defind via varient configuration.
    Hence rules are set up to define which kind of changes are allowed or disallowed for a specific status of the production order.
    Changes to configurable product is allowed as long as the production order is released, but they are disallowed when the production order gets confirmed. As when order is confirmed that menas product is manufactured & hence they are no changes allowed except rework.
    Hope this resolve your querry.
    Regards,
    Avinash.

  • Production Order status FM

    Dear All,
    Is there any function module which return the production order status in internal
    table format when we key in the production order number.
    Basically I am looking if i pass aufk-aufnr or objnr i am expecting order status which are in jest table.
    Thanks
    Cris

    Use FM - STATUS_READ
    Below is the example code :
    Data : d_objnr        like jsto-objnr,
    t_status        like jstat          occurs 0 with header line.
    loop at int_orders.
        clear d_objnr.
        refresh: t_status.
        concatenate 'OR' int_orders-aufnr into d_objnr.
        call function 'STATUS_READ'
             EXPORTING
                  client          = sy-mandt
                  objnr           = d_objnr
             TABLES
                  status          = t_status
             EXCEPTIONS
                  object_not_found.
        if sy-subrc eq 0.
      Start of change Seshu 01/15/2007
      Reason - Short dump got on 01/14/2007 - Deletion of internal table
      Put continue command Properly.
          delete t_status where stat gt 'I0099'.
          delete t_status where inact eq 'X'.  "Delete Inactive Status(es).
          read table t_status with key stat = 'I0076'. "Deletion Indicator
          if sy-subrc eq 0.
            delete int_orders.
            clear int_orders.
            continue.
          endif.
          read table t_status with key stat = 'I0045'. "Tech. Complete
          if sy-subrc eq 0.
            delete int_orders.
            clear int_orders.
            continue.
          endif.
          if p_open eq 'X'.
            read table t_status with key stat = 'I0009'. "Confirmed
            if sy-subrc eq 0.
              delete int_orders.
              clear int_orders.
              continue.
            endif.
          endif.
        endif.
    Reward points if it is helpful
    Thanks
    Seshu

  • Production order status CLSD, TECO

    Dear friends,
      What is the diffrence between  production order status CLSD and TECO?
    In what kind of situation should i enable these statuses to my production order?
    Thnanks
    Shri

    Hi Shri,
    Status TECO:
    Purpose/When:
              TECO, Technical Completion refers to an logical ending of Production Order from a Logistical point of view. This status we generally use if,
    1. The order is completely executed from the Logistics point
    2. If the order has to end prematurely for any reason and we wanted to have all the open requirements (Like Capacity & Material reservations) to be deleted.
    What it does:
              Once the order is given a status TECO, what system does is
    1. The order will not be considered for MRP planning and it will not appear in Stock Vs Requirements list (MD04)
    2. Capacity & Material reservations against the order gets deleted.
    3. Purchase requisations for Non stock materials & External operations gets deleted.
    4. The operations and the order header get TECO status.
    Followup after TECO status:
    1. You wont be able to make any further changes in the fields of the order even in change mode. However you will be able to revoke the TECO status.
    2. It can still allow to post confirmations or good movement and it allows all Finance and Controlling period end activites for the order.
    Status CLSD:
    Purpose/When:
         CLSD status refers to completion of all business activites for the order interms of Logistics and Finance and Controlling. This status is generally a prerequiste for an Production order  to be archived and deleted from the SAP database, also to have a control on the orders on which we do not want to have any further Cost posting. But for having a production order to CLSD status, certain Prerequisites have to be met.
    Prerequisites:
    1. The Order must have a TECO or REL status in it.
    2.  Open Purchase requisations & Purchase order with commitments to Production order should not exists          
    3. There cannot be any future change records in terms of goods movement or confirmation errors in COGI.
    4. The order balance should be 0.
    What is does:
    1. It executes all the functions listed for TECO status if the order is in REL status.
    Followup after CLSD status:
    1. Goods Movement, Confirmation and Finance & Controlling cost postings to the order is not allowed.
    2. It will allow the order to be flagged for deletion.
    3. It will allow revoking of CLSD.
    Hope this helps you in understanding the status TECO & CLSD with respect to logistics.
    Thanks & Regards,
    Prasobh.
    <b></b><u></u>Dont forget to reward points, or ask for further clarification if needed

  • Report on production order status and shortage report

    I want to know standard report on production order status and shortage report. Kindly suggest.

    COOIS - Production order information system . In this report you can give system status in selection screen  and in report you can get complete status details (both system and user status) .
    shortage report - CO24

  • Table for production order status in ABAP

    In which table we get production order status like ( TECO , CRTD, etc......) ?
    Thanks..

    it should be JEST Table
    get the production order Object number from AUFK-OBJNR
    Goto JEST Table -> use value into jest table ,you get status.
    Thanks
    Seshu

  • Order Status Change and E-mail Send

    Hello there,
    Is there some ready to use Scenario that checks for an order status change on repository and send an e-mail to the customer?
    Thanks.

    I would contact iTunes:
    Apple - Support - iTunes

  • Table : Production order status

    Hi all ,
    i need the Table in which the Production order status will appear .
    i tried AFKO and AFRU but not finding the same .
    Pl tell me the field name if possible .
    Regards

    Goto CAUFV
    get the field - CAUFV-OBJNR
         Pass this in JEST in field = OBJNR, object number and INACT = space
         you will get severail entries for field STAT.
         pass this field entries STAT to tabel TJ02T and field - ISTAT, language = EN
         you will get status in the field TJ02T-TXT04 and text in field - TJ02T-TXT30.
    or simply use FM- STATUS_TEXT_EDIT
    pl come back if required
    Edited by: Rajesha Vittal on Mar 27, 2008 10:17 AM

  • Production order quantity changes

    Hi Guru's,
                  Please help me to trace the production order changes.
    for example: order 1 = 100 and later I changed to 200
    how can i trace it.please explain the steps to follow.
    Thanks
    Satya

    Dear Sathyanarayana,
    Production order Changes can be traced only using OCM - Order Change Management.
    So you have to activate Order Change Management,Check these links
    [OCM Link1|Re: Changes to item in prod order]
    [Link for using an OSS Notes instead of OCM|Re: Production order qty change tracking]
    Regards
    Mangalraj.S

  • Production order status for wm staging for production

    Hi Friends,
    What should be the status of production order for wm staging of raw for production.
    In production order status Confirmed & delivered will I be able to do staging for the production order.
    Thanks,
    Kiran

    Hi
    Material staging should be allowed following the Release of the Production Order.
    Then, as an example, you could have your first operation in the order (OP10) to Consume Materials. This will then backflush the materials in the PSA (Production Supply Area) that the staged materials were taken to. Ensure that the materials are set for Backflushing in the material master in MRP2.
    If the OP10 is confirmed before materials have been staged then they will not appear in the LP12 staging report.
    It's all about timing
    Regards
    Darren

Maybe you are looking for

  • Display tag: how to get pagesize parameter from TableDecorator?

    Hi all, I'm designing�org.displaytag.decorator.TableDecorator wrapper for our project, but I need to get pagesizeparameter from TableDecorator and I don't know - how to do it :( Any ideas? ps. http://www.displaytag.org used

  • How to Upload to Kodak Gallery from 2.1.4

    I currently export photos to a file and then upload to Kodak Gallery using their browse function. When I could use ofoto express I could drag and drop directly from Aperture. Is there anyway to copy directly to Kodak Gallery without having to export

  • That did not work.  I would like to talk to someone directly to resolve this.  Thanks.

    Thanks James, but that did not work.  I think I need to speak to someone directly to walk me through this.  I am very new to this.

  • Strange problem in handling a notifier.

    hi, while trying to handling the a notifier named kAIDocumentWritePreprocessNotifier( AIDocumentation.h) ---- If I copied (ctrl + c ) the content of current ai document, regardless of pasting(ctrl +v ) and closing the application (Ai)  without saving

  • What sort of download speed is Expected ?

    Hi All  I,m after some info I have had Infinity installed and i use newsgroups from time to time , but i,m a bit in the dark where the speed of the download comes in If i was getting anything between 5 & 8 MB/s is this the sort of download you,d expe