Refurbishment Order Qty Change

Hi All,
I have a requirement where client wants to change the Order Qty of a Refurbishment Order after it is released.
Can anyone tell me if this is possible. If yes then How and if no, can anyone let me know the reason that why it is not allowed..i mean what could be the impact if we change.
Thanks...

hi
After release, you can no longer change the following entries in the refurbishment order:
The total quantity of repairable spares to be refurbished and its unit of measure on the header data screen of the order
All the entries in the section Refurbishment on the header data screen for the order
The item for the repairable spares to be refurbished in the component list of the order
-ashok

Similar Messages

  • User exit for sale order qty change

    Hi all,
    In our industry we are creating Sale Order for MTO Scenario by using T.Code VA01 . Most of the time after taking the MRP run and raising PO for BOM components, Users are changing the qty in the sale order . eg. and due to that it is becoming difficult to make necessary change in production programe. .Now please give me solution/ userexit  so that anybody cannot change the sale  order qty and it must be check the authorised userid to do necessary change in sale order.
    I am waiting for your valuable suggestion.
    Thanks & Regards

    Hi LIMAYE,
      You can use user exit include 'MV45AFZZ'.
    Make necessary changes in FORM USEREXIT_MOVE_FIELD_TO_VBAP.
    XVBAP will contain the old values before making the changes. You can comapare the quantity wtih VBAP field.

  • PRODUCTION ORDER--Qty changed after one operation----URGENT

    Dear Experts
            Hope u all R doing well
    In the production order,after one operation completed(whether it is first ,second  or last ) the system is allowing to change the qty.
    but we want the system to disallow  the qty change.
    could anybody can help, is there any configuration settings inside?
    waiting for your valuable response
    Thanks in advance

    Hi,
    Sorry for the delay.
    Pl. follow the steps below.
    1. Create a status profile Eg: s1 usng t.code bs02.
    2. Enter status no. as 1, status as CRTD, a description, tick Initial status & lower status no. as 1 & higher status no. as 2.
    3.In the second line enter status no. as 2, status as REL, a description,  & lower status no. as 1 & higher status no. as 3.
    4.Choose Object type tab.
    5. Choose PP/PM: Order header.(tick)
    6.Then come back to main screen & double click REL.
    7.Click the create icon in the top.
    8.Choose Release & then choose radio button under <b>SET.</b>
    9.Then come back to main screen & again double click REL & then choose create & select change & check the radio button under <b>FORBID</b> & then save.
    10. In t.code OPJH(order type), choose your order type & then assign the status profile( Eg:S1)
    11.Now convert the planned order into production order.Release the order & save.
    Further changes cannot be made in the production order.
    Pl. give feedback after testing.
    Regards,
    S.D.Senthilkumar

  • 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

  • Sales order qty change.

    Hello everyone...
    can anyone give me idea for .......I am creating sales orders in BOM with userexit  MV45AFZZ code written in below....everything is working fine....example My requirement is the combination of materials must be 2 - 4 , 3-3, 4-2, and 5-1.... i made it everything is good......here the problem is if I give qty as 1 in sales order it is taking correctly as 2 with my code....but it is not accepting me to change....how can i change.....give me some idea,.....
    tables : stas, stpo.
      data : begin of it_fg_xvbap occurs 0.
              include structure xvbap.
      data : end of it_fg_xvbap.
      data: begin of it_zfreegoods occurs 0.
              include structure zfreegoods.
      data: end of it_zfreegoods.
      data: v_lines(3) type c,
            v_stas(3) type c.
      data: begin of it_fg_stas occurs 0.
              include structure stas.
      data: end of it_fg_stas.
      data: begin of it_fg_stpo occurs 0.
              include structure stpo.
      data: end of it_fg_stpo.
      data: v_mitem1_qty like vbap-kwmeng,
            v_mitem2_qty like vbap-kwmeng,
            v_mixitem_qty like vbap-kwmeng,
            v_quantity like zfreegoods-quantity,
            v_newqty like zfreegoods-quantity.
      it_fg_xvbap[] = xvbap[].
      if not it_fg_xvbap[] is initial.
        read table it_fg_xvbap index 1.
        select * from zfreegoods into table it_zfreegoods
               for all entries in it_fg_xvbap
               where matnr eq it_fg_xvbap-matnr
               and zinteruse eq '04'.
    Check if the BOM is completely exploded for mix-match.
        if not it_zfreegoods[] is initial.
          loop at it_fg_xvbap.
            read table it_zfreegoods with key matnr = it_fg_xvbap-matnr.
            if sy-subrc eq 0.
    " This scenario triggers - min qty 2
              if it_fg_xvbap-kwmeng <= '1.000'.
              message i020(zsnd) with 'The Promotion Accepts min combine Qty
    2 & 4'.
                it_fg_xvbap-kwmeng = '2.000'.
                it_fg_xvbap-lsmeng = it_fg_xvbap-kwmeng.
              endif.
              if it_fg_xvbap-kwmeng >= '6.000'.
              message i030(zsnd) with 'The Promotion Accepts max combine Qty
    5 & 1'.
                it_fg_xvbap-kwmeng = '5.000'.
                it_fg_xvbap-lsmeng = it_fg_xvbap-kwmeng.
              endif.
              v_mitem1_qty = it_fg_xvbap-kwmeng.
              v_quantity = it_zfreegoods-quantity.
              modify it_fg_xvbap.
              clear v_lines.
              continue.
            endif.
            if it_zfreegoods-matnr ne it_fg_xvbap-matnr.
              it_fg_xvbap-kwmeng = it_fg_xvbap-kmpmg.
              it_fg_xvbap-lsmeng = it_fg_xvbap-kmpmg.
              modify it_fg_xvbap.
            endif.
            v_lines = v_lines + 1.
            if it_zfreegoods-zfreemodel eq it_fg_xvbap-matnr.
              if v_mitem1_qty <= v_quantity.
                v_newqty = v_quantity - v_mitem1_qty.
                it_fg_xvbap-kwmeng = v_newqty.
                it_fg_xvbap-lsmeng = v_newqty.
                modify it_fg_xvbap.
              else.
               if v_quantity ne it_zfreegoods-quantity.
              if v_mitem1_qty ge it_zfreegoods-quantity.
                if fcode eq 'SICH'.
                  message e020(zsnd) with it_zfreegoods-quantity .
                else.
                  message s020(zsnd) with it_zfreegoods-quantity .
                endif.
              endif.
            endif.
          endloop.
          xvbap[] = it_fg_xvbap[].
        endif.   "  it_zfreegoods table
      endif.

    Hi Cathy
    You require ABAPers help. This not possible through configuration.

  • Purchase Order qty changed from 10 to zero, system takes as one

    Hi experts,
    SRM 7.0 EHP2 without EP. PO is created with 10 line items and qty of each line item is greater than zero. The qty of one line item is changed to zero and clicked/saved. The system takes the qty as one inspite of original qty more than one changed to zero.
    Thanks
    Vijay

    Hi,
    Standard behaviour shouldn't allow to choose zero as quantity, when you enter a zero quantity for a line item, when you choose check / order, system throws a error message by asking please enter quantity.
    Coming to rounding of to '1', it depends on UOM decimal place's setup in SRM for that particular unit of measure.
    You can verify this in CUIN > choose UOM > choose details> check the field decimal place's. By standard it will be zero, so when you choose any decimal place less then 1, it will automatically becomes '1'.
    You can change this by entering some decimal place's to be considered before rounding off, so that system allows to create fractional value between 0 to 1.
    Regards,
    Govardhan 

  • Purchase order qty change

    Hai,
    i have creat a purchase request 10 qty. i have convert purchase request to Purchase order at the time qantity will not be change.but system changed qty taken, how can control.
    Pls help me,
    Regards,
    G.Bala

    Hi Bala,
    Check this link  [change PO quantity;.
    Regards,
    Madhu.

  • 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

  • Sales order qty not possible to change.

    hi experts
    i have created a sales order with suppersession material  for 2 qty and we deliver only 1 qty to customer.
    now i want change the sales order qty 1 so that status gets completed.
    but in VA02 material qty is in hidden mode cant possible to make changes. this is happening with suppersession material only.
    need your support
    thank you

    hi dear
    thanks for the reply again
    schedule line is also in grey mode. cant possible to make changes.
    let me add on this
    when we create order suppersession material entered with item cat. TAPA which generate automated second line item cat TAN. when we make delivery TAN gets copied in the DO and Billing afterthat.
    but issue is once delivery created. in VA02 order oty field (KWMENG)  become in grey mode. cant possible make any changes ?
    i have checked both the item categories completion rule which is (not relevent for completion)

  • Change in Sales Order Qty in a MTO scenario

    Hi,
    We had confirmed 5 Qty for the Production Order created with reference to Sales ORder(MTO scenario), now after confirmation of 5 qty, sales order qty is reduced to 3., then in this situation, what we need to do for the already confirmed extra Quantity 2 for this sales order. I think we need to cancel the confirmation for the extra qty 2?. Please clarify and explain what we need to do this for this extra Qty 2 in detail.
    Case 2) If the Sales Order qty is changed to 7, then we will be creating a new Production Order for this new quantity 2 with reference to the same sales order.  Am i correct?.IF wrong, please suggest how should we balance the extra requirement of 2 EA.
    Thanks in advance.

    Is your query being posted even before you actually tried the 2 cases which you refer to in your system?
    If so, then first do the simulation in your sandbox, check how system behaves when you do that. Also check by clicking on ATP check for the material within SO.
    Once you do the above your query will be self answered, if you still face any issue then revert with the specific details.

  • Planned order qty. shodnt  change after copying quotation and creating SO

    Hi Guys,
    In my scenario i am creating a quotation of qty. 100. Sytem generates planned order of 100 qty.After i copy the quotation and creates a sale order changing qty. to 50, the system is changing the planned order qty. to 50 whereas the requirement is planned order qty. must not change i.e. it must be 100.
    Is there any setting for this.
    Regards
    Laxmikanth

    answered

  • First operation confimed - after system allowed changed order qty

    Hi,
    Production order first operation confimed - after user go change the produciton order qty, how to control this one, we need to config once first operation confirmed can't change the order qty. pls advise
    ex : when create production order 10001234 qty 100 pcs, has oper 10,20,30,40
    shop floor confirmed operation 10th 100pcs, after user change the qty 200 pcs, how to control this issue? pls
    Thanks,
    Sankaran

    Hi Muthu
    No need of exits , this can be done using status profile.
    1>Create status profile using BS02.
    2>give status no 10 as initial & 20 as the next .
    3> in lowest & highest for 10 give as lowest 10 & highest 20 . For status 20 give lowest & hightst both as 20.
    4> double click on status 10 & click on create & set what all business transactions u want to allow when the status is 10.
    5> double click on 20 & tick on the radio button set against the partial confirmation button so that when the order is partially confirmed the status is automatically set to 20. in this status do not allow change prod order business transaction.
    This should solve ur problem . Explore more about status profile in spro>production>SFC> order>create status profile documentation.
    Thanks & regards
    Prasad
    Reward if useful.

  • BADI For Changing Planned order Qty during MRP Run

    Hi,
      My requirement is i want to change Planned order qty based on some conditions during MRP run(MD02). Is there any BADI to fullfill my requirement.
    Thanks,
    Kishore

    Not sure I understand the situation correctly...You want to delete the planned orders before MRP runs again. WHy do you want to do that ? Are these firmed Planned orders ?

  • Order qty and confirmed qty mismatch

    Dear friends,
    My requirement is System should not allow to go further if the sale order qty and confirmed qty(after avaialbility check) mismatch is there.Pls suggest.
    Now currently system will check the availability qty and will show the information of confirmed qty in the another screen.and if we say continue the process, we can go ahead and save the document.but the document will be in open state.
    So pls suggest the way i can go ahead for this requirement.
    Regards
    Mahendar.

    hi,
    If u want to allow user to create SO as much as available qty..? means  system sud create SO for order qty is equal to availble qty ...? if yes
    then go the availbality check  and find out availability check and checking rule..
    and again go to OVZ9 remove the check box check with out RLT from rep.lead time tab
    Resul is: If u enter in SO a10 qty ,and if you have only 5 qty in hand or in plant ,then system after checking the items it will change the order qty in SO(i e 5) automatically,
    Caprin

  • Sales order qty display

    On my sales order qty only 'four digit' numbers show up.
    For example, 1000 will show up on the print out.
    However, 10000 will not show up and will be desplayed as *000 with an *
    How do i get all digits to display?
    Edited by: ManjeetSingh on Mar 16, 2010 1:42 AM

    Ask your ABAPer to do the changes in the Smart Form of Sales Order.It is due to settings maintained in the Smart Form which allow to show only 4 digit for Sales Order Quantity.
    Best Regards,
    Ankur

Maybe you are looking for