Create a reservation without a purchase order

Hi all,
I try to create a reservation without a purchase order for material T-RN133, and then i got a message, " Order 800040 is flagged for deletion". Then i tried to create another reservation, but still got the same error message.
THe movement type is 501.
Please help me out.

Hi
You should not be getting an error when you are using movement type 501 for creating reservation.. can you please check what that order is and give us more details so that we can help also please check there is an user exit or something Z developed to check against order..
As such Std SAP you should not be getting the error
Thanks

Similar Messages

  • How to Create inspection that assign to Purchase Order / Material Document

    Dear QM Master,
    I am using QA01 to create inspection lot but can any master tell me , How to Create inspection that assign to Purchase Order / Material Document ?
    Appreciate.
    Thank you.

    Hello,
    When you create an inspection lot manually, you cannot reference an original document (for example, a goods receipt document, an order, or a delivery note).
    In QA01 you can create inspection lot manually for all inspection lot origins except the following:
    10 - Delivery to customer with sales order
    11 - Delivery to customer without sales order
    12 - General delivery
    13 - Repetitive manufacturing
    14 - Plant maintenance
    You can also refer this link
    http://help.sap.com/saphelp_47x200/helpdata/en/2d/3519d8448c11d189420000e829fbbd/frameset.htm
    Please check and revert.
    Regards,
    Priyanka

  • How Create new Tax code in Purchase order

    Dear Sir,
    I have creat new tax code in Purchase order
    Basic value          3976876.53
    Ex Duty          10%     397687.6525
    edu.cess          2%     7953.75305
    s&h Edu.cess     1%     3976.876525
    Toatal               4386494.81
    CST          1%     43864.94807
    Addition                12550.00
    i have all ready tax code 1021+5vat

    Hi Sneha Patel
    Case1:
    If tax is applicable on the freight charges then create a Z condition in (Tocde M/06) and assign it in ur pricing  procedure (Tocde M/08) before the net value is calculated in ur pricing procedure so that it is taken for tax calculation.
    Case2:
    If tax is  not applicable on the freight charges then create a Z condition in (Tocde M/06) and assign it in ur pricing  procedure (Tocde M/08) after the net value is calculated in ur pricing procedure so that it is not taken for tax calculation.
    For both the conditions select
    Cond. class   A Discount or surcharge
    Calculat.type B Fixed amount
    Cond.category B Delivery costs
    Also mark as a header or item condition with accruals checked.
    If u are not sure then copy FRA1 condition in STD and change Calculat.type  as B Fixed amount instead of % in FRA1 so that u can enter the amount directly in PO.
    Also mark these conditions as manual in ur pricing procedure so that these can be entered manuall in PO if reqd.
    While creating PO u can select the reqd condition (with or without tax) under conditions tab and enter the amount.
    hope it clears ur issue
    Chk and revert
    Reg
    Raja

  • Call BAPI_GOODSMVT_CREATE to create a goods receipt for purchase order

    Hi,
    I'm calling the bapi BAPI_GOODSMVT_CREATE to create a goods receipt for purchase order, but the following code doesn't work. It doesn't give me any kind of error message but it does nothing as well...
    Can anyone help me please?
    Thank You
    Hugo
    Code
    DATA: wa_goodsmvt_header  LIKE bapi2017_gm_head_01,
                            wa_goodsmvt_code    LIKE bapi2017_gm_code,
                            wa_bapi2017_gm_head TYPE bapi2017_gm_head_ret-mat_doc.
                      DATA: it_goodsmvt_item LIKE bapi2017_gm_item_create OCCURS  0 WITH HEADER LINE,
                            it_return        LIKE bapiret2 OCCURS  0 WITH HEADER LINE.
                      wa_goodsmvt_header-pstng_date = SY-DATUM.
                      wa_goodsmvt_header-doc_date   = SY-DATUM.
                      wa_goodsmvt_header-ref_doc_no = '4500000020'.
                      wa_goodsmvt_code-gm_code = '01'.          "Goods receipt for purchase Order
                      it_goodsmvt_item-stge_loc  = 'BPF2'.
                      it_goodsmvt_item-move_type = '101' .
                      it_goodsmvt_item-entry_qnt = 17.
                      it_goodsmvt_item-entry_uom = 'KG'.
                      it_goodsmvt_item-mvt_ind   = 'B'.
                      it_goodsmvt_item-po_number = '4500000020'.
                      it_goodsmvt_item-po_item   = '00010'.
                      it_goodsmvt_item-material  = '50'.
                      APPEND it_goodsmvt_item.
                      CALL FUNCTION  'BAPI_GOODSMVT_CREATE'
                        EXPORTING
                          goodsmvt_header  = wa_goodsmvt_header
                          goodsmvt_code    = wa_goodsmvt_code
                        IMPORTING
                          materialdocument = wa_bapi2017_gm_head
                        TABLES
                          goodsmvt_item    = it_goodsmvt_item
                          return            = it_return.
                        data: begin of errmsg occurs 10.
                                include structure bapiret2.
                        data: end of errmsg.
                        data: wmenge like iseg-menge,
                              errflag.
                        clear errflag.
                        loop at errmsg.
                          if errmsg-type eq 'E'.
                            write:/'Error in function', errmsg-message.
                            errflag = 'X'.
                          else.
                            write:/ errmsg-message.
                          endif.
                        endloop.
                        if errflag is initial.
                          commit work and wait.
                          if sy-subrc ne 0.
                            write:/ 'Error in updating'.
                            exit.
                          else.
                            write:/ 'Ok'.
                          endif.
                        endif.
                        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
                        EXPORTING
                        wait = ' '.

    Hi,
    Thank you for the asnwer! I'm a rookie at ABAP so please forgive my stupid questions
    I've changed the code to:
    DATA: wa_goodsmvt_header  LIKE bapi2017_gm_head_01,
                            wa_goodsmvt_code    LIKE bapi2017_gm_code,
                            wa_bapi2017_gm_head TYPE bapi2017_gm_head_ret-mat_doc.
                      DATA: it_goodsmvt_item LIKE bapi2017_gm_item_create OCCURS  0 WITH HEADER LINE,
                            it_return        LIKE bapiret2 OCCURS  0 WITH HEADER LINE.
                      wa_goodsmvt_header-pstng_date = SY-DATUM.
                      wa_goodsmvt_header-doc_date   = SY-DATUM.
                      wa_goodsmvt_header-ref_doc_no = '4500000020'.
                      wa_goodsmvt_code-gm_code = '01'.          "Goods receipt for purchase Order
                      it_goodsmvt_item-plant     = 'BP01'.
                      it_goodsmvt_item-stge_loc  = 'BPF2'.
                      it_goodsmvt_item-move_type = '101' .
                      it_goodsmvt_item-entry_qnt = 10.
                      it_goodsmvt_item-entry_uom = 'KG'.
                      it_goodsmvt_item-mvt_ind   = 'B'.
                      it_goodsmvt_item-po_number = '4500000020'.
                      it_goodsmvt_item-po_item   = '10'.
                      it_goodsmvt_item-material  = '50'.
                      APPEND it_goodsmvt_item.
                      CALL FUNCTION  'BAPI_GOODSMVT_CREATE'
                        EXPORTING
                          goodsmvt_header  = wa_goodsmvt_header
                          goodsmvt_code    = wa_goodsmvt_code
                        IMPORTING
                          materialdocument = wa_bapi2017_gm_head
                        TABLES
                          goodsmvt_item    = it_goodsmvt_item
                          return            = it_return.
                          write:/ it_return-message.
    And the return message is : Material document data and PO data do not match (Material)
    Any idea of what might be the problem?
    Thanks

  • Create a large number of purchase order in ME21N

    Hello,
    Is there a CATT or LSMW transaction or a program to create a large number of purchase orders with the positions?
    Thanks in advice
    Fany

    you can LSMW with direct input method
    Object - 0085, method - 0001
    venkat

  • Creating inbound delivery for the purchase order line items

    Hi Experts,
    Please let me know how can I create inbound delivery for the purchase order line items?  Say, I have a purchase order with 5 line items in it.  I wanted to create an inbound delivery for only 2 line items at this point of time.  Which SAP Standard transaction I have to use and what all  data I need to populate?  I would appreciate any help on this and will reward the right answer.  Please let me know.
    Thank you in advance.
    with regards,
    Muthu Ganapathy.

    Hi,
    While creating the inbound delivery (VL31N), intially all the items will be shown, see the advance shipping notfication - from the vendor for which he has send confirmation & rest items you can delete simply & save. & next time when the vendor sends rest advance shipping notifcation (confirmation), you can receive them.
    Hope this answers your query.
    Regards
    Irfan.

  • Goods receipt without a purchase order

    hellow experts,
    I created a good receipt in MIGO with out a purchase order, the saving icon refuse to highlight i.e is not highlighted, so i cat save the goods receipt. I dont know if it has something to do with the configuration? if the system is configured not to accept a goods receipt without a PO.?. I will really appreciate if there is a way for me to make the save icon active, thanks

    Thanks experts for your reply so far,
    I would like to know the G/L account to assign to the good receipt without a purchace order, because most of the GL account I have tried from my list has been given me messages like, "it is not possible to post directly to this account", and some other errors 
    your contributions would be highly appreciated. Thanks

  • I need a BAPI or function that can create a PO without the purchase req.

    I need a BAPI or function that can create a PO without the reference to a purchase requisition. We are creating "direct POs" (with no reference to PR) manually. And we have a large amount of documents to create. I can't figure out if BAPI_PO_CREATE and BAPI_PO_CREATE1 can help us by doing this, because I've understood this BAPIs creates POs only with the reference to a purchase requisition.
    Thanks in advance!!
    Sebastian

    Sorry I'm late guys, I couldn't replay your posts because I was busy.
    Charlie,
    ...just because we have the data already in the SAP system.
    My client doesn't want purchase requisitions to be created from the PM orders. Instead he asked us to create the purchase workflow by generating direct purchase orders from the PM orders, basically taking the information from the purchase agreement within the order's tasks. Maybe you don't understand a bit what I'm saying, but let me get this straight: we can't use LSMW because data doesn't come from a legacy.
    Ian,
    ...after all, and like you've said, we're gonna use BAPI_PO_CREATE1 for creating the POs. Today I finally realized that, purchase requisitions aren't mandatory for the bapi to perform the process. If something goes wrong, I'll let you know.
    Thanks anyway for your attention.
    Sebastian

  • How to create a Reservation for my production order

    Hi,
    I have a production order for that I need to purchase 2 materials. but my problem is when the material come there is no reservation for my production order. someone can take it for another production order. How can I do that the system create a  reservation after the GR
    Thank

    Dear,
    When you create and release production order, the reservation is created for that order. Now you should first activate the Avelability check in production order.
    It is PP configuration
    Then you need to activate dynamic aveailability check in goods issue in MM configuration.
    Hence if the stock is reserved for your production order, then no one can issue and system will give error message.
    please come back if required.

  • Component Stock reservation during subcontracting purchase order

    Hi
    We have a below requirement..
    While creating subcontracting purchase order,using Me21 transaction for finished goods,we require Bill of material components stock to be allocated autamatically during ATP check..Can u tell us where exactly we need to do the config..We need similar settings like sales order(When sales order is created stock gets reserved autamatically ...)
    While creating sub contracting order using Me21 transaction,components stock to be be reserved for that order...And if requried we need to unblock the stock for that order and allocate to other order.....
    Regards
    Swetha

    Hi,
    As I have already stated, there is no standard way of achieving what you want.
    ME2o is the nearest thing you have to achieving what you want.
    Remember the main point I made that the stock sent to the subcontractor is NOT LINKED to the subcontract PO in any way. That is why you can issue a 541 as many times as you like.
    the 541 and ME2o are simply methods of maintaining the required stock level of the components at the subcontractor, they are not designed to be allocating stock to individual POs.
    As I also said, if you run ME2o regularly you will be shown all POs that have insufficient stock of components at the subcontractor. You do not need to be able to specify an individual PO number, simply enter the subcontractor number, tick the "only SC stocks with shortage" and you will see a list of every item with a shortage. Simply goods issue those items from within ME2o and ths stock will be "reserved" against that subcontractor and so it cannot be used for any internal movements etc.
    this is the closest you will get, it reserves the stock against the subcontractor and you wanted it reserved against the PO. This is surely close enough to mean that you don't have to generate a HUGE modification to the system to reserve against the PO. (It would be so big a mod that it would certainly NOT be recommended anyway).
    Please do try to see things from another view and consider trying to use ME2o as it was designed to "reserve" the stock against the subcontractor.
    Steve B

  • Stock reservation during subcontracting purchase order

    Hi
    We have a below requirement..
    While creating subcontracting purchase order,using Me21 transaction for finished goods,we require Bill of material components stock to be allocated autamatically during ATP check..Can u tell us where exactly we need to do the config..We need similar settings like sales order(When sales order is created stock gets reserved autamatically ...)
    While creating sub contracting order using Me21 transaction,components stock to be be reserved for that order...And if requried we need to unblock the stock for that order and allocate to other order.....
    Regards
    Swetha

    Hello Sheweta,
    This is not possible. When you create purchase orders for sub-contracting part ..sub requirements will be created from MRP for the BOM components for which you can again create purchaing orders and suplly to sub-contractor for making finish part. Once you supply this now this stock will be diaplyed in the sub-contractor bucket (which you can say reserved). if you want you can take out anytime.
    Hope the above calrification will help.
    Regards
    TAJUDDIN

  • IDOC - create SD Contract from a Purchase Order

    Hi,
    I need to know if exist an IDOCs to create a SD Contract from a Purchase Order and another IDOC to change a Purchase Order from a SD Contract.
    Regards,

    Hi again,
    1. PO will create ORDERS IDOC this is SAP Standard.
    2. ORDERS IDOC will be send
    3. IDOC Segment E1EDK14 qualifier 12 contains the order type. A contract is also a type of sales order. So we need to get the correct order type in the segment. One option is using the userexit proposed earlier another and even easier is asking the XI colleagues to do the change already in XI.
    4. During Inbound processing the contract will now be created.
    http://help.sap.com/saphelp_erp2004/helpdata/en/cf/ab3827940311d295e600a0c9306667/frameset.htm
    You will send a ORDRSP from your Contract (I made a mistake earlier and said ORDCHG this would be the update of the contract from the PO...)
    I think you will need to worry to much of the ORDRSP on the SD side as in fact the IDOC does not care if it is send from order or from a contract.
    Depending on your configuration in MM it will update the PO.
    http://help.sap.com/saphelp_erp2004/helpdata/en/1c/deffb0844f11d2b471006094b9476a/frameset.htm
    Bascally in regards to quantity you will need to do more on the MM side because usually it is not expected that the Vendor is chnaging quantities etc... So it is still possible:
    http://help.sap.com/saphelp_erp2004/helpdata/en/1c/deffb0844f11d2b471006094b9476a/frameset.htm
    By the way we are having the scenario with the contract in our SAP sending ORDRSP and ORDCHG for contracts and it is working fine.
    Hope it helps.

  • Invoice without referencing Purchase Order

    Hi
    When an invoice comes with out referencing purchase order then accounts payable does not have a way to look up the supplier and see if there is any PO issue against it .
    This causes as some invoices are being paid manually instead of from the issued PO which is more time consuming for A/P, the requestor and purchasing.
    This also means the requestor is being asked to reapprove and recode which is frustrating for them .
    If a PO is used the requestor should only need to verify the invoice.
    Another issue that crops up due to the above is that the PO never closes .
    Can any body provide a solution for the above that any invoice comes with out a referenced PO then what is the best way to match invoice with PO and close the PO .Is there any automation in the set up available that would seek the PO for invoice that has come with out any reference of PO??
    Thanks
    Jogendra
    Another issue is the PO is never closed.

    Hi
    Thanks for your reply .
    But here we donot want to hold the invoice instead make the payment immediately on knowing the status of the invoice .
    let me explain ,here there is only one Purchasing person,so the invoice does not go to him for verification instead goes directly for payables for payment .So,based on the PO number mentioned in the invoice payable makes the payment by matching the invoice with the relevant PO but in some cases there is no mention of PO in the invoice .so in that case payables are not clear whether the invoice has come with /without any reference to PO.
    So,payable needs a automated solution where in he could see the POs that are open against the supplier while making payment and match it with the invoice which came without any reference of PO.He will not go to Purchasing person for confirmation.
    Also,we dont want to give purchasing responsibility to the payable person.So something that he should view .Please advice.
    Thanks
    Jogendra

  • Production order created through procurement wizard but purchase order connected in SO

    SBO Localization: Korea
    SBO Version:SAP Business One 8.82 (8.82.073) PL: 10
    Production order created through procurement confirmation wizard on the base of sales order. In sales order "Procurement document" field production order number showing correct. But if click on document arrow then same number of purchase order opening where as we expect that production order should open. This is something like connection bug. This happens only if sales order approval workflow is active. In relationship map we can see production order is connected. See details in attached pic.
    I have also tested this case in Belgium localization the result is almost same. The difference is only if clicked on procurement document number arrow (from sales order document) then different number of purchase order opens.
    Is this known issue? Could someone please provide me the solution?
    Yogesh Chaudhari

    Hi,
    It is application error. Please check SAP note:
    1718843 - Blank production order or purchase request displayed if
    “Procurement Doc.” selected in “Form Settings” window
    Thanks & Regards,
    Nagarajan

  • Is there a BAPI to create Distribution demand for BOM purchase order?

    I have a scenario wherein Material# in ECC differs from that in APO. So when a BOM purchase order comes in the inbound CIF queue to APO, I am trying to create dependent demands manually reading the subsequent materials from ECC and mapping with APO data

    Please do not open a new thread with the same question:
    Re: Is there any FM to create manually Subsequent demands for BOM header product?
    Kind Regards,
    Mariano

Maybe you are looking for

  • Create a new library out of a huge mess?

    I was looking at the iTunes library that my wife has on her PC which is made up of a few hundred tracks all of which she has on her machine & all of which were copied from her CD's & thus don't have any DRM problems associated with them. Her file is

  • Firefox lags when it is running more than 16 hours

    I usually do not turn off my pc for weeks. In browser I am running about 20-30 tabs at the same time and I do not want to close it till I decide it is not needed anymore. But in firefox I forced to restart it every 10-12 hours as soon as it starts la

  • Using an another drive besides the c drive for itunes

    i have a computer with a 4 terabyte level 5 raid system on it. i want to store all of my itunes on my media storage rather than using the C drive as there is not enough room on it. i am not smart enough to figure out how to do this. please help

  • Need help Connecting to network

    I have tried everything to connect to my wireless network yet still continue to get stuck on "acquring nework address".  I have a linksys wrt54g wirelss router.  The computer I am trying to connect is a mini notebook I recently purchased.  It is an A

  • I am getting this error message when trying to install free version of photoshop..."This application

    I am getting this error message when trying to install free version of photoshop..."This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance. What am I doing wrong?