Change in PO Qty after GRN

Hi Gurus,
PO created on behalf of PR with 7000 of Quantity, now after delivering 2000 of Qty, vendor refuses to supply balance Qty.
Hence want to reduce QTY in  PO and make a fresh PO for balance Qty to other vendor.
But now unable to change Qty in PO/PR .How to handle this.
Thanks in Advance

Dear,
Do following way.
01. Change in original PO quantity in ITEM Header TAB-Quantity/Weight - PO Quantity-2000 ,using using T-code ME22N and save.
02. Change in PR ( Purchase Requisition) If you have used Desired Vendor , remove only Vendor name or Number from Column and save it.
03. Create New PO with balance quantity and New Vendor using same old PR No.(Purchase Requisition), if you enter in PR field then it will take balance quantity and material automatically and save it.
04. Do MIGO and post the document.
This will work as you required.
Thanks.
Piyush Patel
Edited by: PMPATEL on Feb 29, 2012 6:27 PM

Similar Messages

  • Change in PO Qty. after Inbound Delivery.

    Hi,
    Suppose against a Purchase Order  an inbound delivery of 100 pc. is created(PO Order Qty. is also 100).
    Once a delivery is created,then Iam change the PO qty. from 100 to 80(System only throws an info message ME545,which I tried to convert it into error,but still it throws an info.).
    Why system is allowing me to change the PO qty?Kindly advise.

    system will allow changes for all PO qty untill and unless the item is bloced or deletion indicator is set. the system will not stop changes to qty even if you recieve full qty of material.
    the only way to stop is to make use os user exit as prescribed by Charlie
    vikrama

  • How to forbid any further changes for PO (QTY and price ) after it has been

    Hi,
    How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Hi,
    Price anyway cannot be changed once GR is posted on the PO item, it can be changed only by cancelling the GR, the same applies to IR too.
    But quantity can be changed at any time.
    So if you are looking at blocking qty too, then a customized message through save exit is the option, I am not aware of any standard SAP messages that can be configured to achieve this..
    Ramesh

  • System not allow to change PR  QTY after create PO

    Dear Experts,
    I have one scenario after create RFQ & PO no body can change the PR qty.
    How can i restrict please guide me.
    Regards
    Aamir

    Use BADI :ME_PROCESS_REQ_CUST
    Here with the help of the ABAP person write a code like while saving the PR in me52n system will check in the background if there is any entry against filed EBAN-EBELN...if found then system will throw a customized error.
    you can also try out by making message 06-152 as error message.
    Regards,
    Indranil

  • How to forbid any further changes for PO (QTY and price )?

    Hi,
       How to forbid any further changes for PO (QTY and price ) after it has been done GR and LIV? Thanks.

    Better to post this in logistic forum.
    THere will be some config option to do so but normal FI perosn would need to dig deep, a MM perosn should answer quickly.
    Reg
    Hein

  • Tax code to make non-editable after GRN against PO

    Dear All,
    I want to make tax code non-editable in PO after GRN is done against the LIne item.
    Are there settings or User exit to do to make tax code non-editable?
    Regards,
    Rakesh

    thanx for reply.
    But the requirement is to make Tax code in PO non-editable after GRN (we don,t have CIN implemented.),
    What happening is after GRn if tax ocde is changed in print preview the total or tax value is showing as per new/changed tax code. Also same tax code picked up in MIRO.
    I want to avoid that.
    Regards,
    Rakesh

  • Confirmation to do MIRO after GRN

    Hi Friends,
    I want to have a check for making vendor invoice (MIRO) after GRN. The scenario is like this:
    I do GRN of 100 qty the stock goes into quality. After quality inspection I accept only 70 qty and reject 30 qty. I want to raise vendor invice for 70 qty only and not total 100 qty as received initially.
    Can someone please guide how can I do this.
    Regards,
    Wasim.

    Hi Wasim,
    Try to check settings of this block in
    SPRO-QM-QM in logistics--Define Control keys
    Here make sure Block Invoice is checked and Message mode is E (Defects)
    This will block the payment after MIRO.
    If you still want that MIRO is to restricted then you can go for a user exit with the help of ABAPER
    block MIRO before UD posting is done is thru an enhancement
    LMR1M001
    Here you need to post following code to block MIRO in include:ZXM08U16
    this code will cause an error message before UD and will allow MIRO for only qty posted to Unrestricted stock
    *& Include ZXM08U16
    Declaration of variables
    DATA: w_prueflos TYPE qamb-prueflos,
    w_lmenge TYPE qals-lmenge01.
    Declaration of Internal Tables
    DATA: itab LIKE qals OCCURS 0 WITH HEADER LINE.
    LOOP AT e_tdrseg WHERE selkz EQ 'X'.
    Checking whether the document require Inspection
    CLEAR: w_prueflos.
    SELECT SINGLE prueflos
    INTO w_prueflos
    FROM qamb
    WHERE mblnr = e_tdrseg-lfbnr
    AND zeile = e_tdrseg-lfpos.
    IF sy-subrc EQ 0.
    CLEAR: itab[], itab.
    SELECT SINGLE * INTO CORRESPONDING FIELDS OF itab
    FROM qals
    WHERE prueflos = w_prueflos
    AND stat35 = 'X'.
    IF sy-subrc EQ 0.
    READ TABLE itab INDEX 1.
    CLEAR: w_lmenge.
    Sum of quantity (Excludes Block stock)
    w_lmenge = itab-lmenge01.
    IF e_tdrseg-menge GT w_lmenge.
    MESSAGE ID 'ZMM' TYPE 'E' NUMBER '004' WITH w_lmenge e_tdrseg-lfbnr.
    ENDIF.
    ELSE.
    MESSAGE ID 'ZMM' TYPE 'E' NUMBER '005' WITH e_tdrseg-lfbnr.
    ENDIF.
    ENDIF.
    ENDLOOP.
    Cheers
    Kris

  • Po should not editable after grn

    Dear All
    My clint wants po should not editable after grn.
    pls help

    Hi,
    you can use user exit : EXIT_SAPMM06E_016
    Following Logic can be use:
    1. Validate the company code (BUKRS ) & Purchasing document type (BSART = F) from EKKO table for the Purchase order number (EBELN).
    2. Check the entries for the Purchase order and the item number in the Purchase order history table ( EKBE) and also Validate if there is no reversal document for goods receipt ..
    3. If we find GR doc in EKBE table with out reversal documents then display the warning or error message as POP - UP by using functional module POPUP_TO_CONFIRM.
    Step 1: Validate Company code and Purchasing Document type from EKKO table
    Step 2: Check the Purchasing document history from EKBE table
    Step 3: Check whether any reversal made for goods receipt.
    Step 4: Display popup message to user:
    Use the function module u201CPOPUP_TO_CONFIRMu201D to display the below message u201CThe PO has been already Receipted. Before changing PO please take care about GR document reversalu201D.
    Regards,
    Vikas

  • Bill booking after Grn cancellation

    Dear all ,
    I have booked one GRn on 31.07.2008 , The Same Grn is cancelled on the same date .
    But in Purchase Order history the MIRO has been posted for the Same on 08.08.2008
    is it posssible to book the Bill after GRn cancellation .
    Pl guide

    In this case the system will ask to ask to enter the qty and value as there is no GR done against the PO and when you do gr against this po value will be pick from invoice document you have posted. so you can post invoice after cancellation of GR doc also.

  • In Pages 5.1 how do I change the default spacing after a paragraph? I used to be able to do this with the inspector. I no longer see the option.

    In pages 5.1 I was wondering how to change the line spacing after a paragraph.

    This is from the online Pages Help . You have the option to the Help in your Pages Help menu
    Adjust line spacing
    You can adjust the spacing between lines in a paragraph, and change the amount of space before or after a paragraph.
    Click in the paragraph whose spacing you want to change, or select one or more paragraphs.
    In the Text pane of the Format inspector, click Style.
    Click the disclosure triangle next to Spacing, then choose an option from the pop-up menu:
    Lines: Choose when the distance between ascenders (parts of letters that extend to the top of the line) and descenders (parts of letters that extend below the line) should stay the same. The space between lines is proportional to the font size.
    At least: Choose when the distance between lines should remain fixed (but not to overlap if the text gets large).The distance from one line to the next will never be less than the value you set, but it may be larger for larger fonts to prevent overlapping text lines.
    Exactly: The distance between the baselines.
    Between: The value you set increases the space between the lines, instead of increasing the height of the lines. By contrast, double-spacing doubles the height of each line.
    Click the arrows next to the spacing field to set the amount of space for the option you chose.
    To adjust the amount of space before and after the selected paragraph, click the arrows for Before Paragraph and After Paragraph

  • I have change e-mail address after first registration and when I logged in it send new password to my old e-mail address. now I can't use my old profile

    I have change e-mail address after first registration and when I logged in it send new password to my old e-mail address. now I can't use my old profile.
    and I can't install my old adobe X anymore
    what to do?
    Mika

    Change Account https://forums.adobe.com/thread/1465499 may help
    -wrong email https://forums.adobe.com/thread/1446019

  • (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink?

    (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink eventhough the files are there.

    (final cut pro x 10.0.9 )After numerous troubleshooting tips, I am still getting the dreadful your disk have ran out of space, your events have moved or permissions have changed. This happened after I moved some files to another drive. They won't relink eventhough the files are there.

  • Not allowing changes to payment terms after the AR document is released to accounting

    Hi,
    Anyone know the best way to not allow a user to change the payment terms after the AR document has been created in AR? This is affecting aging because users are changing the payment terms without permission. What is the best way to control that?
    Thank you.
    AK

    Hi A K
    Frequent change in payment terms is something business should introspect. Payment term is decided and agreed upon with customer/vendor during the initial stages.
    However from IT perspective, it can be controlled keeping some system controls.
    1. Limit the Customer master change transaction to very limited users or to a manager. There should be internal approvals by management for business to make a change. Bring this into force.
    2. Regularly run the customer master change reports and provide the trend to management to restrict or limit the changes.
    3. Use Change Message control for master data by providing necessary warnings or error messages when master data is changed.
    4. In  the sales order level, there is every possibility to change the payment term. Based on the user authorization get the payment term field greyed out and provide change access to accounting or to a specific user upon approvals. This is a bit complex process but I feel this brings up controls and stops the process from exploitation.
    5. Also activate 'Sensitive fields' KNB1-ZTERM for payment term field in customer master. This brings up another layer of confirmation of change by other users.
    6. Another back route, not recommended in all cases, is to subsititute the required payment term during accounting document posting.
    Hope it helps.
    Thanks,
    Sekhar

  • How to change async to sync after deploying the process.? Thanks

    How to change async to sync after deploying the process.? Thanks

    you'd need to change the base wsdl, the generated one (_Name.wsdl) and the bpel.file .. and remove the generated classes .. (all in domains/you_domain/tmp/your_process dir)
    the wsdl needs to get the output msg to the input msg instead of a callback porttype, the same needs to be in the generated wsdl (don't forget to remove the callback role in plnk session).. and the bpel process needs to have a reply instead of the invoke ..
    this is what you would need to do .. BUT, maybe we can find a better solution for you, if you elaborate on the usecase..
    during design time this is easier :-)
    regards clemens

  • How to change the billing qty directly during VF01 in AFS?

    Dear experts:
       Can anyone advise how we can change the billing qty directly during VF01 in AFS? Can anybody tell me why i can modify the billing qty in SAP R/3 ECC6.0, but it fail to in AFS, why?
    The operation was:
    1、I have  to done one customising, in VOV7 for my Item category change the Billing Relevance to "K";
    2、We setting up as Delivery note  related billing and would like to change the qty at the point of billing;
    3、Enter the Delivery note number Do not Press Enter, Then Click on u201Cselection listu201D, however , the field of "open quantity"  is in greyed out mode !
    In SAP R/3 ECC6.0 ,In transaction VF01 put the Delivery note NO. and before entering or executing go to "selection list" and we will find the quantities in editable mode and we can change there and then execute billing,but in AFS,the field of "open quantity"  is in greyed out mode ! I asked a lot of friends in AFS, they also  have this problem!
    Thanks
    Peter.lee
    Edited by: peter.lee on Nov 19, 2011 3:05 AM

    Hi Guys,
    Contrary to others IS (retail, oil etc...), AFS has been almost fully redesigned in some areas. That's why SAP releases first EHP business functions for standard and then try to enhanced the new created features later in AFS EHP.
    In regards to the change of the billing quantity, from my prospective this is not supported. Quantity always comes from preceding document.
    AFS is implemented in many industries like workwear, fashion high fashion, sportwear, underwear, bags etc...However I never got the same requirement to change the billing quantity.
    For which reasons do you need to change the billing quantity ? Can this be done in the sales order (in case of debit/credit memo request) or in the delivery ?
    The billing area has some restrictions, such as doing a pricing redetermination, in AFS it must be done in the sales order for example.
    You could potentially ask SAP and see whether an advanced modification could be provided (this is chargeable).
    Hope this might help.
    Regards,
    Mehdi

Maybe you are looking for

  • My First VPN with a ASA 5505

    First of all, thanks for reading my post. I have a newly aquired asa 5505 that I just set up to the bare minimum configurations. I followed a cisco paper on how to create a "remote access vpn" setup for ipsec. I can sucessfully connect and establish

  • How to connect to wifi with ios6?

    Neither my iPhone or iPad will work after the software install. Any ideas?

  • Network don't play my music from Itunes

    Hi everybody on this line... I have a wireless network with one Airport extreme and two Airport Express in my flat. One express is in the living room and one express in my bedroom -both connected with speakers. If I play music from my Powerbook the m

  • Internal Error with Adobe Reader 9.3

    We have a web browser application(ASP) that receives a fax and saves it as a PDF.  We have people who go in and assign the individual faxes to different individuals to work.  We were using Adobe Reader 8.1.2 and upgraded to Adobe Reader 9.3. Since we

  • Does SAP support running Solaris10 X64 X86 on VMWARE?

    Does SAP support running Solaris10 X64 X86 on VMWARE? Thanks.