Purchase order from Purchase Requisition error  no selectable items found

while modifying the Purchase order item quantity, iam getting an error
Tcode me22n.
The order already released. now i want to ( change ) reduce the quantity.
No selectable items exist for Purchase requisition l_banfn.
message no 06053.
can anyone  please help me on this.
thanks
rajesh.

Check the status tab in ME53N whether all the qty in PR are already used up
Or
Check the line item in PR whether it is deleted
Edited by: Karthik on Jul 20, 2011 12:37 PM

Similar Messages

  • Create Purchasing Order from Purchasing Requisition

    Hi,
    I need to create in a report a Purchasing Order from Purchasing Requisition. I have seen the Bapi BAPI_PO_CREATE; Can I create order from requisition without fill all field and only 
    the requisition and ther obligatory field?
    Thanks
    Francesco

    Hi
    Try out what all parameters are obligatory in case of Purchase Requsition using the FM - 'BAPI_REQUISITION_CREATE' in R/3 back-end..
    and then try creating PO using 'BAPI_PO_CREATE1' or 'BAPI_PO_CREATE' Function modules.
    Also try creating P Req manually using ME51N / ME51 Transactions and debug the process to get further details, if any.
    Regards
    - Atul

  • Purchase order from Purchase requisition

    Hi all,
    How can we create purchase order from Purchase requisition number?
    Any BAPI or Function Module for changing purchase requisition  to purchase order .........
    Thanks in advance for all your help.
    Regards,
    Anukool

    Hi,
    Have you had a look through transaction BAPI to see if there is anything suitable?
    I've just had a quick look and found BAPI_REQUISITION_RELEASE_GEN which should release the PR and then maybe you could use BAPI_PO_CREATE1 and see if there is a way to reference the PR?
    Or what about looking at the transaction ME59N to see how that works?
    I'm just guessing here sorry.

  • Purchasing Controls - Purchase Orders from Purchase Requisitions

    I need some help with setting up purchasing controls.  We are looking to put in place a control that allows users to convert purchase requisitions into PO, but only create the purchase order for the quantity on the purchase requisition.
    As I see it, we need to do the following:
    1) Require that PO references a Purchase Requisition
    2) Do not allow the PO qty to exceed the Purchase Requisition qty
    Background
    - Purchase Requisition approval not needed for reqs created by MRP
    - Have investigated transaction OMET and function authorization, but does not fit the need.  If we require Purchase Req as reference, it does not allow reference to Contract.  If we select contract and purchase requisition, a PO can be created referencing Contract without a purchase requisition.
    Regards,
    Jeff

    1) Require that PO references a Purchase Requisition
    Use OMET adn do not select the ref to contract check box but select the ref to Purchase requistion
    now make the source list is required for mateiral and than create the source list and enter the contract in the source list.
    now  when user create the req and the source determination is check than system will put the contract as source in reqs and than you can create the PO using reqs.
    2) Do not allow the PO qty to exceed the Purchase Requisition qty
    Activate the message an error :  06 076 Materials of requisition & item & alr. ordered in full
    which will stop user to alter the quantity in the PO and will not allow to use again same reqs if orderd full

  • Automatic Creation of Purchase Orders from Purchase Requisition

    Hi,
    Requirement: When the Purchase requisitions is converted into Purchase Orders using ME59N, the document type of the PO should be ZCO (Z document type for Call off) and not NB.
    Issue:When the Purchase requisitions are converted into PO's using ME59N, noremal PO's(Document type:NB) are getting created.
    As per the business requirements, it should be ZCO.
    Please guide if I am missing anything.
    With regards
       Krishna

    Hi
    Please refer the below thread.
    OSS Note 114213
    [ME59N - Automatic determination of POdocument type|ME59N - Automatic determination of POdocument type]
    Gobinathan G
    Edited by: Gobinathan Govindarajan on Nov 26, 2009 11:15 AM

  • Create purchase order from purchse requisition number

    Hi guru's,
    I have a requirement that when ever i m creating the sales order through va01 and when i will click on save button it has to create an automatic PO from the PR number which will be there in the order. Functional consultant saying that he creates an output type and configured it in nace by assiging one driver program and he is giving the transmissionmedia as 8(Which is nothing but special function) for the output.....he is saying when ever i click on save button that driver program has to be triggered and need to generate PO.
    how i can implement this one....
    replay asap.....
    Thanks&Regards,
    R.P.Sastry

    Hi chenna kesava reddy,
    i dont hav any form....its not a printing output type...
    i vonfigured all d details.but my print program is not triggering when i m pressing the save button in va01.
    but it is triggering when i run the program rsnast00 by giving the output type..
    please help me any one.....how the transmission media number 8(means special function) will work....
    regards.

  • Re: Error in submitting Import Standard Purchase orders from Pl/Sql

    Hi All,
    Iam using the following code to submit a concurret program
    "Import Standard Purchase orders" from pl/sql
    Program is sucessfully submittted but it is Completing in error status i am stuck there please help me in resolving this
    My instance R12
    My Code
    ======
    DECLARE
    v_request_id VARCHAR2 (100);
    BEGIN
    mo_global.set_policy_context ('S', 204); --org_id for the operating unit which the purchase order records belong too
    mo_global.init ('PO'); -- sets the application
    FND_GLOBAL.APPS_INITIALIZE (1013436, 50578, 201); --Consists of the user_id, responsibility_id, responsibility_application_id which is 201 for purchasing
    v_request_id :=
    fnd_request.submit_request (application => 'PO',
    program => 'POXPOPDOI',
    description => NULL,
    start_time => NULL, -- To start immediately
    sub_request => FALSE,
    argument1 => '31348', -- Buyer_ID
    argument2 => 'STANDARD', -- Doc Type
    argument3 => '', -- doc subtype
    argument4 => 'N', -- update items
    argument5 => '', -- create sourcing rules not used
    argument6 => 'INCOMPLETE', -- Approval status
    argument7 => '', -- release generation method
    argument8 => '1021387', -- batch_id
    argument9 => '', -- operating unit null
    argument10 => '', -- global agreement null
    argument11 => '', -- enable sourcing null
    argument12 => '', -- sourcing level null
    argument13 => '', -- inv org enabled null
    argument14 => '' -- inv org null
    DBMS_OUTPUT.put_line ('Request submitted. ID = ' || v_request_id);
    COMMIT;
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line (
    'Request set submission failed - unknown error: ' || SQLERRM
    END;
    output
    =====
    when i check output i am getting the follwing error
    DECLARE
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at line 133
    Log message
    ==========
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    31348
    STANDARD
    N
    INCOMPLETE
    1021387
    Start of log messages from FND_FILE
    To get the log messages for PDOI, please use the following id to query against FND_LOG_MESSAGES table:
    AUDSID = 945297
    ORA-01403: no data found in Package po.plsql.PO_PDOI_PVT. Procedure init_sys_parameters.0
    ORA-01403: no data found in Package po.plsql.PO_PDOI_PVT. Procedure init_startup_values.10
    ORA-01403: no data found in Package po.plsql.PO_PDOI_PVT. Procedure start_process.50
    User-Defined Exception in Package po.plsql.PO_PDOI_Concurrent. Procedure POXPDOI.30
    End of log messages from FND_FILE
    Thanks
    Manoj kumar

    Pass NULL instead of ''
    Check the flag
    SELECT multi_org_category
      FROM fnd_concurrent_programs
    WHERE concurrent_program_name = 'POXPOPDOI'Update it as per the below MOS Doc
    R12 / POXPOPDOI - 'ORA-01422' Error While Running 'Import Standard Purchase Orders' [ID 457628.1]
    Otherwise,
    Follow the below doc and insert values to the interface tables (headers, lines and distribution) and run the Import Standard Purchase Orders from the front end.
    How To Diagnose Problems With Importing Standard Purchase Orders [ID 781351.1]
    HTH
    Cheers,
    ND
    Use the "helpful" or "correct" buttons to award points to replies / Mark the thread as answered, if your question is answered.

  • Error while creating work order from purchase order

    Dear All,
    We are having a subcontracting scenario where we are creating a Work order from PO but getting the below error.
    Error - "No master data assigned to partners-locations-product combination."
    Done all the setting mentioned in the below thread but the error still persist.
    Error in Generating Work order from Purchase Order
    Any suggestions on which master data we need to check?
    Thanks,
    mahesh.

    Hi Mahesh
    In the below transaction
    /SCA/MFGCFG - Work Order Configuration
    Can you maintain Master data Assigment properly
    Valid From
    Valid To
    Active---Checked
    Can you please list what you maintained
    Regards
    Vinod

  • Two purchase orders from one purchase requisition

    Hi experts,
    i'm getting this strange behavior. How is possible to create 2 purchase orders from one purchase requisition ??
    If i look to sales order flow i see two purchase orders.
    Thank you.

    Hello Dan M,
    When u enter the material and qty in Item the system might be doing Availability check. Then u might be going to schedule line and then "check mark on "Fix qty/date". Here once again the system might be doing Availability check and then u press  "Dely proposal".
    I suggest u to check the Purchase Requisition Item No. (the field next to Purchase Requisition No.). Keep watch here after every step u perform. Watch before and after u press every button.
    Do carefully analysis step by step u will get the reason.
    Any thing required write on the forum.
    Thanks & regards,
    Shailendra Panhale

  • ME58 : creation of purchase order only for requisition fixed

    Dear.
    In trx. ME58 when I create the purchase order from the purchase requisitions how can I select only the purchase requisitions fixed ?
    Thanks.

    there is no such selection in ME58.
    use ME57 instead and make use of dynamic selection
    if you tick the box for "assigned requisitions" in the middle of the selection screen, then the result is almost the same as in ME58

  • Automatic posting of purchase order from sales order

    hiii
    experts,
    i m doing automatic purchase order from sales order. i have generated purchase requisition number from sales order now when i m trying to do automatic po the system says no suitable purchase requisition available.I have maintained info record, source code,automatic po tick in material master and in vendor master.what could be the problem .waiting for ur valuable inputs.
    warm regards
    thanks
    subhash kulkarni

    Hello,
    Please check all the things mentioned by our experts e.g Source allocation ,infor record, source list.
    Beside that I would suggest check document flow whether already PO is created or not.
    If every thing is in place then try to create PO with reference to PR by transaction ME21N & see what error you receives.
    Hope this help you ,
    Regards,
    Prashant

  • Intercompany Text-Based Standard Purchase Order from Production Order

    We have a business scenario where a material is made in a plant and then another plant performs a service on that material.  The customer wants the purchase requisition that is created from the production order from the producing plant to apply a vendor that is an intercompany vendor.
    The issue is, these purchase orders are text based purchase orders.  This process works perfectly when there is a material master.
    Scenario:
    Plant X = Production Order to make Material A
    Plant X = Production Order creates a purchase requisition in Plant X; Intercompany Vendor is assigned
    Buyer = Creates the purchase order from the purchase requisition
    Error Message: SAP issues an error message that this vendor cannot be used.
    We are looking for a way to create a text based purchase order (that represents a service) and assign to a intercompany vendor.

    The exact error message we receive is:
    Diagnosis
    You are entering an ordering transaction involving a vendor to whom a plant has been assigned. Normally, materials would be supplied by one plant to another in such a transaction.
    This process involves a delivery and billing document in the SD system. The PO for this appears directly in the delivery due list of the issuing plant (vendor) and therefore does not need to be transmitted.
    However, items without a material master record cannot appear in the delivery due list.
    Procedure
    Items without a material master record can only be ordered from vendors without a plant assignment.
    The point is if we create a vendor without a plant assignment, how can the inter-company posting be accommodated.

  • How to make collective purchase order from planorder generated from MRP

    Hi Experts,
    I have 2 queries are
    1) Is there any option to create collective Purchase order or Purchase requisition from Plan order generated from MRP ?
    for e.g one packaging material is use in different finish goods products when we run MRP on all finish goods its generates Plan order of FG and BOM. In  packaging material it dependent of 3 to 4 FG and its generate 3 or 4 different Plan order.
    It is possible to create collective PR or PO ?
    2) Is there any possibility to convert Plan order onto Purchase order by vendor , material and delivery date ?
        I have use ME59N and MD15 but its not useful for me.
    Thanks
    Farrukh khan

    Dear farrukh,
    when MRP run You should set mrp control parameter
    Create Purchase requisitions :- 1
    then after mrp run Purchase requisitions created.
    and
    we can change collective Purchase requisitions in to one Purchase order.
    go to selection variant in ME21N,
    then select Purchase requisitions and put all Purchase requisitions.
    and adopt and create Purchase order.
    but condition is it will create only same material and same vendor.
    Jainashu

  • Tracing Planned Order from Purchase Req.

    I want to find the Table - field relationship to trace a Planned order from Purchase Requisition.
    Once we convert planned order to purchase requisition, system deletes planned order in MD04.
    Is it possible to find out which planned order had been used to create purchase requisiton.

    Hi Raj,
    Generally Peggeed requirement is nothing but it represents the Higer level material. For example if raw material purchase requisition for 100 nos, then it is a Pegged Requiremet of the Assembly or the FERT. Simple its a dependent requiremnt for FERT or SFG.
    MD09 is used to find out the Pegged Requirement. If you give the Purchase Requisitiion of the Raw material, then system will tell you the pegged requirement i.e. the production order order to which the purchase requisition belongs to.
    Pegged requirement may be a Sales Order,Reservation,Production Order,Project,Network,WBS etc.
    Select one MRP element in MD04 screen and if you select pegged requirements system will show you these elements created for any higher level material or not.
    Note :Once a GR is done to PO, there is no more pegging possible for the PO, as it is in Inventory. Pegging is possible as long as it is an open order (PO, PR etc.)
    Apart from above case If you have other requirment you to devlope your own.
    Regards,
    Ram

  • Purchase order and purchasing requisition .

    Hi
    What is the difference between Purchase order and Purchase requisition . ?
    And why cube are different for them ?
    Regards

    A purchase requisition is an internal document that's created to initiate a procurement transaction. The requisition is created to identify the materials that are needed to be acquired and when they're needed. Once completed by the initiator, it's sent to the appropriate approvers.
    Upon approvals of the requsition have been provided, and a vendor is selected, a purchase order is created. The purchase order is an external document whereby an agreement is made to procure the materials at an agreed upon price and delivery schedule
    The InfoCubes for each of these is different due to the nature of the documents (internal v. external).

Maybe you are looking for