Finding open qty

Hi Experts,
   I need to findout in which table the Open quantity is stored and How to
fetch the open quantity with respect to Purchase requesition.(ie. when I give PR as input I need to get the open quantity)
in ME53N in the tab Quantities/dates the open quantity field is there and the field name is OMENG , I need to know which table this field exits
Pls advice
Thanks in advance
karthik

Hi,
Check EKPO-MENGE
Thanks.

Similar Messages

  • View open qty and manually close SO

    Hi,
    Example : I have SO with qty 10pcs, but only 3pcs are delivered, the remaining 7pcs are yet to be delivered. Hence, this SO is still open. The thing now is that I want to see the open qty and manually close the SO.
    I tried with VA05 but it doesn't show the open qty. What transaction to view the open qty? How to manually close an open SO? Is there a button or checkbox that I can just click on it to close the SO?
    Thanks.
    Edited by: Wooi Ling Ng on Feb 14, 2008 2:56 PM

    Hi,
    As said that you want to close the sales order for 7 qty of total 10 qty.
    When do the following.
    Goto the sales order created, goto the line item eg 10 scroll towards right side of the screen to find the field " Reason for Rejection" assign the relavent message why you want to close the order for remaining quantity.
    If you have many line items you can reject the undeliveried line items if you want them not to delivery.
    Kindly Reward points if usefull.
    Regards
    vK

  • How to find open orders and open quantity

    Hi abap gurus,
    i want to find the open orders with the quantity  means those orders for which we don't have goods issues(and partial deliverys is also possible). i get this scenario but i don't know how to start.
      i think i should go to VBUP table and get all the orders
      which have overall status GBSTA = 'A' OR 'B'.
      So from this i will get all the open orders but i need to find open quantity also .
      please tell me how can i find out and  which table do i need to use.

    You need to check between delivery line item table as well sales order line item table.
    Sales order Line item table : VBAP
    Delivery line item table : LIPS
    if order qty and delivery qty are same then there is no open qty if not then there is open qty.
    Thanks
    Seshu

  • PO OPEN QTY AT PARTICULAR DATE

    Hi Experts
    I need to check the open qty of purchase order bcoz i have to upload the PO from old system to new system.
    so i want to get the Open Purchase order qty from particular date say 1st april .
    so that i can upload the same into new System with upload programme.
    Thanks
    Pankaj Agarwal

    If the legacy system is also a SAP system, you may refer to ME2* series reports (eg: ME2M, ME2N, etc).
    As regards to open, it depends on the definition of open PO, so PO's which are not delivered, those delivered but not invoiced etc. So use the selection parameter eg: WE101 to get the relevant data.
    If you wish to do the same at table level, then some of the tables which should help are EKKO,EKPO,EKBE,EKET,MSEG.
    However if the legacy system is not a SAP system, then get in touch with the client's IT team to do the extraction.
    Also do search in MM forum to find similar threads.

  • How to find deliverd qty and status ?

    Hi,
       I adviced to make use of follwoing tables VLPMA,VBUK and LIPS, to find deliverd qty and delivery status, i already got set of material number in an internal table, i have to join the above tables to get the values based on internal table.
    I gone thro the tables, but i could't get proper link, experts plz provide same sample code to proceed.
    Thanks and Regards,
    Babu

    Hi,
    For any SO check if any Delivery is created. If no, the SO Qty is open Qty.
    If yes, check the diff in Delivery and SO qty. The diff is open Qty.
    The joining condition is:
    LIPS-VGBEL = VBAP-VBELN and
    LIPS-VGPOS = VBAP-POSNR.
    or
    For each Sales Order Item (VBAP-POSNR) take the ORDER Qty field (VBAP-KWMENG) and substract the Del QTY field(LIPS-LFIMG).
    that gives the Open order Qty.
    or sum up at the order level.
    Sum up all Order Qty's and Del qty's .
    difference gives the open order qty.
    there is no straight field
    reward points for useful answers

  • Open Qty and Delivered Qty  remains same even after Return

    Hello
    After making return, the open qty remains the same and its not reflecting the return qty.
    for e.g.
    I have made a Sale Order of 100 qty
    I delivered 20
    In sales order my Delivered Qty is 20 and Open qty is 80
    Now I made a Return of above 20 Qty
    But after that the Order is still showing Delivered 20 and Open Qty 80
    The Open qty should be 0 at this stage.
    Regards
    Indrajit

    Hi Indrajit ,
    Your doubt is genuine .
    The Open quantity of SALES ORDER , at item level (row) does not increase by returning the goods.
    Once you have delivered the goods it will reduced from the Open quantity .
    .You have to create a new Sales Order for further Open quantity
    Thanks
    Ashish

  • Open Qty and Received Qty for Open Purchase Order.

    How to Fetch the open qty and received Qty of every Open purchase orders in EKPO table where ELIKZ = SPACE OR LOEKZ = SPACE. What are the table and field used? Kindly help me.

    Hello Senthilramkumar,
    Use ME2L/ME2N/ME2M with selection parameter WE101.
    Hope this will help.

  • Who has a find Open Path plug-in for CS4 Illustrator on WinXP and a close path also?

    Can anyone lead me to a plug-ins for finding open paths and closing them in CS4 on WinXP?
    Thanks

    Just a thought, but, have you tried using Live Paint?

  • How to find open orders with amount and open deliveries?

    Hi All,
    I want to find out the open orders with open amount and open deliveries for a particular customer.
    We need this for credit check purpose.
    Kindly guide us for this.
    Regards,
    Satish.

    Hi,
    To find out open order:
    data: c_bef_pgi(1) TYPE c VALUE 'A',
    RANGES: rg_wbstk FOR vbuk-wbstk."range for wbstk
      rg_wbstk-sign = 'I'.
      rg_wbstk-option = 'EQ'.
      rg_wbstk-low = 'C'.
      APPEND rg_wbstk.
      rg_wbstk-low = 'A'.
      APPEND rg_wbstk.
    1.first put query on vbak table
    2.Put query on vbuk table as
          SELECT vbeln bestk lfstk gbstk FROM vbuk
                  INTO TABLE it_vbuk_open
                  FOR ALL ENTRIES IN it_vbak
                  WHERE vbeln = it_vbak-vbeln AND
                        bestk IN rg_wbstk AND
                        lfstk = c_bef_pgi.
    so this wil give u open orders.
    3. Then according to vbuk, get the details from vbap.
    To find open delivery
    1. First put query on vbak table
    2. Put query on vbfa as
      SELECT vbelv posnv vbeln posnn vbtyp_n vbtyp_v FROM vbfa
                 INTO TABLE it_vbfa
                 FOR ALL ENTRIES IN it_vbak
                 WHERE vbelv = it_vbak-vbeln AND
                       vbtyp_n = 'J' AND
                       vbtyp_v = 'C'.
    3.Then from VBfa,get the details from LIkp
    4.Then put entry on vbuk as
    *entries from vbuk
          SELECT vbeln wbstk fkstk gbstk FROM vbuk
                 INTO TABLE it_vbuk_del
                 FOR ALL ENTRIES IN it_likp
                 WHERE vbeln = it_likp-vbeln AND
                       wbstk IN rg_wbstk AND
                       fkstk = c_bef_pgi.
    Thanks & Regards,
    Anagha Deshmukh

  • Open Qty for Contracts in Purchasing

    Hi,
    Is there a standard config for Open Target Quantities for Contracts, as there is for standard POs (there is Open Qty - 0BO_QTY - within the 0PUR_DS03 transformation), but I need to show an Open Target Qty for Contracts.
    The value exists within RM06A, field name OFZMG but it is not part of the standard Purchasing extractors, whereas the Target Qty is.
    Any advise appreciated.
    Thanks,
    Scott

    Hi Daniel,
    Thanks for the reply.
    Yeah, I know how to enhance the standard extractors but the logistics extractors are different where the standard LIS extractors actually contain a whole load of additional fields that you can ehnance via LBWE.
    If I enhance these with the append structure and some code, then it could cause issues with enhancing via the standard LBWE in the future.
    Thanks,
    Scott

  • Confirm / Fulfill Open Qty pulling in partial quantity in sales order

    Hello all,
        The inventory for item AA is 83.5 case for batch 123A.   In the sales order i create, for item AA with Order Qty of 83 cases, it pull in from batch 123A, confirming 83 cases.   Next line item AA, i need another 1 case. It goes to another screen  'Availability Control' where i click the 'Fulfil Open Qty Using Batches'.
    Sap pulled 0.5 from remaining batch 123A and confirmed 0.5 case.  It also confirmed the other  0.5 case from a new batch 456B.    It is breaking the cases into half from another batch.
    I DO NOT want to take in partial cases from any batch.  Is there a way i can make the system read in whole cases all the way ?   Is this config issue or programming ?  Any user-exit ?  Is this relating to sales order ?
    Pls share your thoughts and experiences you may have ?
    Thank you.
    Joyce
    Edited by: Joyce Chan on Feb 24, 2009 3:59 PM

    no replies

  • Open Qty Field in Outbound Delivery

    Hi All,
    I would appreciate any assistance that you could offer on this issue.
    It is concerning the little known 'Open Qty' field in the outbound delivery.
    The business process here is to create outbound deliveries, which are then continually added to as and when stock becomes available.
    The Open Qty field should display the open qty from the sales order line, which includes the qty just delivered.
    So for example, a user attempts to add several lines to an existing outbound delivery (ie outbound delivery > deliver sales order).
    The user would then compare the qty delivered against the Open Qty - if they match then ok.  If the qty delivered is less than the open qty, then the user would delete this line as they are only interested in delivering the full qty.
    However the 'Open Qty' is not working as expected.  Eg if open qty on sales order is 2000.  But qty delivered is only 1500, the open qty would = 1500.  This is incorrect.  After the user saves the deliver and then re-checks he would see qty delivered = 1500 and Open Qty = 2000, so then he would know that the full qty was not delivered.
    This business has just migrated from 4.6c (where this field behaved correctly) to ECC 6.0.
    Thanks for any advice.
    Regards
    Guy

    Delivery qty - LIPS-LFIMG.
    You cannot get open quantity directly.
    use this way.
    Delivery qty   - LIPS-LFIMG.
    order qty       - VBAP-KWMENG.
    open qty = delivery qty - order qty.

  • Even after billing the delivery show in VF04 & delivery shows open qty.

    Hi
    I have a issue. The billing document is created from outbound delivery,still the delivery is showing in the VF04 billing due list. The delivery shows open qty. In the order the same qty is shown delivered.
    please advise.
    The timely reply would be rewarded with full points.

    Hi James,
    I think you are creating the sales order with reference to a quotation.Go to copy controls and select OR and QT  and uncheck the complete reference indicator in the details screen.
    I think this give the delivery status "Completed" after creating the billing document.
    Regards,
    Raghav

  • Open Qty is not copied in Delivery for Stock Transfer Order

    Hi,
    In the Stock Transfer Order process, Once the STO Order is created, I am creating delivery in the transaction VL10B or VL10G.
    When I am clicking the background button Delivery gets generated. Then when i am going in the transaction VL02N and increasing the delivery Quantity which is more than STO order quantity, the system is accepting it. But i want the system to throw an error message if the delivery quantity is more than the order qauntity. For this I have made the following settings.
    In the Transaction Code 0VLP, i have selected B in Check Over Delivery field. But still it is not throwing an error.
    The reason for the same may be, the system is not copying the Open Delivery Qty from the STO Order (Which normally happens in Sale Order to Delivery process, bcos of Copy Control). This field has 0 value. So the system is not able check for over delivery.
    If I get this value in the delivery then it should be working fine and the sytem will throw an error for over delivery.
    Can you please suggest me a way to get this open qty value in delivery for STO order or suggest me some other option to check for over delivery in STO.
    Regards
    Vijay

    Dear Friend,
    If I can understand you clearly.
    to achieve your task the best way you can sit with your abaper and configure a routine and assign the same to T-code OVLK delivery type customizing :
    In the Item requirement : Generally it is 202
    reward points if helpful,
    regards,
    Amlan

  • How to find Opening balance

    Hi Experts,
       Is there any BAPI or Function Module to find Openning balance based on fiscal year, company code, GL account and cost center.
    Thanks In Advance.
    Regards,
    Praveen.

    Hi praveen kumar,
    this is sudharsan, working on abap, here i have an urgrnt requirement, that i want to display, Opening and closing balance for given GL a/c, comp code and fiscal year.
    could u plz give me the solution, it is very urgent for me.
    my id is : [email protected]
    regards,
    sudharsan.

Maybe you are looking for