Pick qty delivery qty----Pls help

Hi,
THe storage type as full stock removal checked without any returns to same bin and return storage type maintained.
A delivery is created for 5 pc but picked 9 pc so i am not able to do PGI,(TO Created and confirmed)
I think we cannot change the pick qty Pls suggest any workaround for this.
An OSS note exists for this to change the pick qty but business doesnot want to implement the OSS note 25151.
Pls help
Indhira

Hi,
From IMG>Logistics Execution>Warehouse Management>Interfaces>Shipping-->Define Shipping Control
There you can handle your case accordingly! Good luck
Nice Weekend
Tao

Similar Messages

  • Output type not triggered during Delivery Order - pls help

    Hi,
    Need some help.
    I'm trying to setup output determination for delivery. It's a new output type for delivery.
    There are some checking that I want to build in to determine whether the output type is to be generated. Therefore I have to make sure of requirement (routine). However, after putting in the configuration, coding the requirement and creating the condition record, the output type still cannot be generated. When I go to VL02N to check the Output Determination Analysis it says the requirement " " is not fulfilled. It's not even calling out the requirement number that I assigned in the access sequence.
    Any idea what could be wrong? 
    This is what I've done :
    1. Creating condition tables
    2. Creating access sequence & assigning the condition tables to the access sequence
    3. In the access sequence, assign requirement number 999. The "Exclusive" indicator is not ticked.
    4. Ensure that the requirement 999 is activated in tcode VOFM.
    5. Create output type, assign the access sequence to the condition type.
    6. Assign the condition type to the output determination procedure. Make sure the "Manual" checkbox is not ticked.
    7. Assign the delivery type to the output determination procedure.
    8. Create condition record. 
        Note : when i created the condition record, I am not able to assign a Partner Function (for eg. SH) to the record. However in the config for the output type I've already configured for that Partner Function "SH" to be allowed for that output type.
    Appreciate suggestions & feedback.
    Thanks
    Rgds,
    L

    Hi,
    When I go to VL02N to check the Output Determination Analysis it says the requirement " " is not fulfilled. It's not even calling out the requirement number that I assigned in the access sequence.
    This is because in requirement you put certain conditions should be fulfill then out put should trigered,
    Example - if you maintained condition in requirement that user must maintain loading point
    Now when creating delivery user not maintained loading point then output will not trigered, so user must maintain that then only it will trigered output.
    Same problem just now solved, check which data maintenance conditions in routine and try to maintain that.
    Kapil

  • Delivery Split - Pls Help

    Hi
      In our system we have multiple transportation groups. For a configurable material we maintain different transportation group and for the sub item we maintain different transportation group (because we sell the sub item separately too). So after order when I try to create delivery, the system splits into two delivery because of two transportation groups. But I want to have both the higher level item and the sub item to be in a single delivery. Could you please tell me where I can configure in copy control to have the them in one delivery.

    Hi,
    From IMG>Logistics Execution>Warehouse Management>Interfaces>Shipping-->Define Shipping Control
    There you can handle your case accordingly! Good luck
    Nice Weekend
    Tao

  • Can I use SD_DELIVERY_UPDATE_PICKING to change the delivery qty?

    hi experts,
    I have used  SD_DELIVERY_UPDATE_PICKING to updating the picking quantity in a delivery document and post goods issue. also want to use  the FM to change the delivery qty ,when the picking qty < delivery qty ; and do the post goods issue automatic .
    and i find the field :
       VBPOK-LIANP         *Change delivery quantity
    i do like this ,when  VBPOK-LFIMG > VBPOK-PIkMG ,
    VBPOK-LIANP = 'X'.
    VBPOK-LFIMG = VBPOK-PIkMG 
    but the FM also can't change delivery qty.
    please help me !

    Hi,
       We need only Delivery Number and its item for picking. I am not clear with what reference number you were referring to.
    Thanks,

  • Delivery Qty and OPEN Qty Field in SALES Order Delivery Reports.

    Dear All Experts.
    Please Help me for which field put for Delivery QTY. and it is necessary to calculate OPEN QTY. or we can put directly from field.
    i used this field for Order Qty : WMENG.
    Please Guide me.
    Thnks With Regards :
    Bhavesh Panchal.

    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.

  • Billing qty should be equal to or less than order and delivery qty

    Hi Gurus ,
    Can anyone tell me how to configure a sales document so that the order qty ,delivery qty does not exceed the billing qty.
    Thanks N Regards,
    Siddhartha

    Hi,
    Order qty will always be equal to Billing qty or more in case of partial delivery.
    eg. Order qty 10 EA
    Del.. Qty 10 EA  or lesser (in case of partial delivery)
    Billing Qty 10 EA or equal to Del. qty.
    So, order qty will be equal to bill. qty or more
    Can you please elaborate your requirement. It is not clear
    Regards,
    Sagar

  • Problem in FM:WS_DELIVERY_UPDATE to change picked qty and delivery qty

    Dear friends.
    i am trying to chande picked and del qty's through above fm.
    i am getting an error message like this:
    (Required field in interface to delivery update missing 0080000155 000010
    VBELN 000000            Message no. VL280 )
    i am pasing all requires parameters.
    please help me if any thing is missed..........
    here i am giving my code:
    DATA:i_vbeln TYPE vbeln,
         i_posnr TYPE posnr,
         i_new_delqty TYPE lips-lfimg,
         wa_lips LIKE lips OCCURS 0 WITH HEADER LINE,
         wa_likp TYPE likp.
    i_vbeln = '0080000155'.
    i_posnr = '000010'.
    i_new_delqty = '30'.
    SELECT SINGLE * INTO wa_likp
                    FROM likp
                    WHERE vbeln = i_vbeln.
    SELECT SINGLE * INTO wa_lips
                    FROM lips
                    WHERE vbeln = i_vbeln
                    AND posnr = i_posnr.
    DATA:gs_vbkok LIKE vbkok,
          gt_vbpok  LIKE vbpok OCCURS 0 WITH HEADER LINE,
          gt_prott LIKE prott OCCURS 0 WITH HEADER LINE,
          gs_prott LIKE prott.
    DATA:xfeld1 TYPE xfeld,
         xfeld2 TYPE xfeld,
         xfeld3 TYPE xfeld,
         xfeld4 TYPE xfeld,
         xfeld5 TYPE xfeld,
         xfeld6 TYPE xfeld,
         xfeld7 TYPE xfeld,
         xfeld8 TYPE xfeld.
    gs_vbkok-vbeln_vl = i_vbeln.
    gs_vbkok-vbeln = i_vbeln.
    gs_vbkok-brgew = wa_lips-brgew.
    gs_vbkok-kzbrg = 'X'.
    gs_vbkok-kzntg = 'X'.
    gs_vbkok-vbtyp_vl   = wa_likp-vbtyp.
    gs_vbkok-ntgew = wa_likp-ntgew.
    gs_vbkok-gewei = wa_likp-gewei.
    gs_vbkok-lgnum = wa_likp-lgnum.
    gs_vbkok-kodat =   wa_likp-kodat.
    gs_vbkok-KOMUE   = 'X'.
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-   = WA_LIKP-
    *gs_vbkok-    = WA_LIKP-
    gt_vbpok-vbeln_vl = i_vbeln.
    gt_vbpok-posnr_vl = i_posnr.
    gt_vbpok-matnr = wa_lips-matnr.
    gt_vbpok-charg =  wa_lips-charg.
    gt_vbpok-lianp = 'X'.
    gt_vbpok-kzntg = 'X'.
    gt_vbpok-kzbrg = 'X'.
    gt_vbpok-lfimg = i_new_delqty.
    gt_vbpok-lgmng = i_new_delqty.
    gt_vbpok-umvkz =  wa_lips-umvkz.
    gt_vbpok-umvkn = wa_lips-umvkn.
    gt_vbpok-TAQUI = 'X'.
    gt_vbpok-brgew = wa_lips-brgew.
    gt_vbpok-ntgew =  wa_lips-ntgew.
    gt_vbpok-gewei =  wa_lips-gewei.
    gt_vbpok-vrkme =  wa_lips-vrkme.
    gt_vbpok-meins =  wa_lips-meins.
    gt_vbpok-VOLUM  =  wa_lips-VOLUM.
    gt_vbpok-VOLEH  =  wa_lips-VOLEH.
    gt_vbpok-vbeln = wa_lips-KDAUF.
    gt_vbpok-posnn =  wa_lips-KDPOS.
    *gt_vbpok-vbeln = wa_lips-vbelv.
    *gt_vbpok-posnn =  wa_lips-posnv.
    gt_vbpok-umrev = wa_lips-umrev.
    gt_vbpok-vbtyp_n = wa_lips-vbtyv.
    gt_vbpok-werks =  wa_lips-werks.
    gt_vbpok-pstyv = wa_lips-pstyv.
    gt_vbpok-ormng = '15'.
    gt_vbpok-ndifm = '15'.
    gt_vbpok-orpos = i_posnr.
    gt_vbpok-pikmg = '1'.
    gt_vbpok-SPE_DLV_QTY_FROM = i_new_delqty.
    APPEND gt_vbpok ."TO gt_vbkok.
    gt_prott-vbeln = i_vbeln.
    gt_prott-posnr = i_posnr.
    gt_prott-matnr = wa_lips-matnr.
    gt_prott-vrkme =  wa_lips-vrkme.
    gt_prott-lfimg = i_new_delqty.
    gt_prott-vrkme = wa_lips-vrkme.
    APPEND gt_prott." TO gt_prott.
    BREAK-POINT.
    CALL FUNCTION 'WS_DELIVERY_UPDATE'
      EXPORTING
        vbkok_wa                           = gs_vbkok
       synchron                           = 'X'
       no_messages_update                 = ' '
       commit                             = 'X'
        delivery                           = i_vbeln
       update_picking                     = 'X'
      nicht_sperren                      = ' '
      if_confirm_central                 = 'X'
      if_wmpp                            = 'X'
      if_get_delivery_buffered           = 'X'
      if_no_generic_system_service       = 'X'
       if_database_update                 = '3'
      if_no_init                         = ' '
      if_no_read                         = ' '
       if_error_messages_send_0           = 'X'
      if_no_buffer_refresh               = 'X'
      it_partner_update                  = ' '
      it_sernr_update                    = ' '
      if_no_remote_chg                   = ' '
      if_no_mes_upd_pack                 = ' '
      if_late_delivery_upd               = ' '
    IMPORTING
       ef_error_any_0                     = xfeld1
       ef_error_in_item_deletion_0        = xfeld2
       ef_error_in_pod_update_0           = xfeld3
       ef_error_in_interface_0            = xfeld4
       ef_error_in_goods_issue_0          = xfeld5
       ef_error_in_final_check_0          = xfeld6
       ef_error_partner_update            = xfeld7
       ef_error_sernr_update              = xfeld8
    TABLES
       vbpok_tab                          = gt_vbpok
       prot                               = gt_prott
      VERKO_TAB                          =
      VERPO_TAB                          =
      VBSUPCON_TAB                       =
      IT_VERPO_SERNR                     =
      IT_PACKING                         =
      IT_PACKING_SERNR                   =
      IT_REPACK                          =
      IT_HANDLING_UNITS                  =
      IT_OBJECTS                         =
      ET_CREATED_HUS                     =
      TVPOD_TAB                          =
      IT_TMSTMP                          =
      IT_BAPIADDR1                       =
      SERNR_TAB                          =
      IT_HURES                           =

    Hi,
    Thanks for the repl
    i also passed..
    vbeln_vl,
    posnr_vl,
    vbeln,
    posnn
    Still not working...any other info to pass to FM
    Regards,
    Raj

  • WM Picking Qty more that Delivery Qty

    Hi Folks,
    I have a case as below.
    Sales Order Qty - 100 CS
    OBD Qty - 100 CS
    Picked Qty in OBD - 120 CS.
    WM Picking was done for excess Qty of 20 CS in the same Transfer Order (which was created against the delivery).
    I tried to test the issue in Quality Client but there I recieved an Error "Total for assigned quantities exceeds quantity to be removed" .
    I really don't understand why system allowd the picking of quantity more than delivery quantity in Production Client.
    Any guesses pls.
    Thanks

    Hi,
    Change to 1, copy WM qty as delivery qty and do the cycle in Quality.
    Surely it will work.
    Or
    Also check
    check in picking strategies Indicators  
    Fully stock removal requirement active and
    Return stock to the same storage bin

  • Picking qty less than Delivery qty

    Dear All,
    I want to enter less picking qty than delivery qty during delivery process.
    Now system is not allowing for this fuctionality.
    How to achieve this?
    Rgds,
    Senni.B

    Dear Senni.B,
    > I want to enter less picking qty than delivery qty during delivery process.
    As per the standard functionality picking quantity should be equal to the delivery quantity.
    And not advaisable less picking qty than delivery qty during delivery process.
    Can you plse give more details In which scenario you require this functionality and what is the use of that.
    I hope this will help you,
    Regards,
    Murali.

  • Picking qty less than Delivery qty alert - Urg

    Hi Guys,
    We have done a configuration for order to cash scenario on ECC6.0 now we have one requirement that if picking quantity less than delivery quantity it should send an alert to customer representative.
    I have few questions below before start up configuration for that process.
    1. How do i configure to the system to send an alert when there is short pick in delivery document? 
    2. When customer representative receives the notification he or she make the necessary changes manually change in delivery document of delivery qty to picking qty.
    3. How do i say the logic to ABAPer to do a coding, I think there is no standard configuration to do that or if it is please write back to me.
    I posted few questions but none of the questions answered to me.
    Please go through and reply me back... Urgent.
    regards
    rc gopi

    Dear Senni.B,
    > I want to enter less picking qty than delivery qty during delivery process.
    As per the standard functionality picking quantity should be equal to the delivery quantity.
    And not advaisable less picking qty than delivery qty during delivery process.
    Can you plse give more details In which scenario you require this functionality and what is the use of that.
    I hope this will help you,
    Regards,
    Murali.

  • Difference between pick qty and delivery qty

    Hi,
    My delivery qty is 5 pcs. However while making transfer order from within delivery, the Transfer order is being made automatcially for 17 pcs and so the pick qty is 17 pcs. Due to the differenc ein delivery qty and pick qty, I cannot do PGI in the delivery.
    When I use LT0G, and give the delivery and warehouse no and movement type 999, the system does not allow the transaction and gives a message that, function not yet supported for Handling units. But I do not have handling units in my delivery. Neither the system allows me to cnacel the Transfer order thru LT15.
    How to correct the above situation so that the TO does not pick up the qty greater than the delivery qty or what other alternatives are there. Also how to ensure that TO is made of qty which is equal to delivery qty.
    Iam not aware of WM module, so kindlyu tell in detial pls.
    regards
    sachin

    In IMG>LE>WM>Master Data> Define storage type.
    Check In stock removal control whether "Full stock removal reqmt act" is active.
    If this is active it will try to pull the total quant irrespective of your requirement.
    Reward if useful.
    Regards
    EDWIN.

  • Pick qty copied to delivery qty without creating TO.

    Hi,
    I have this issue, can some one help me out?
    We have Lean warehouse managemant configured.
    While I'm creating a delivery using VL10C, delivery is created subsequently the delivery qty is copied to Pick qty, whick disables my TO creation using VL06O Picking.
    Due to this filling of picking qty in delivery, the requirment is satisfied to trigger the TO during TO creation.
    Expecting a reply.
    Mahi

    Yes, I got to resolve this issue by myself.
    The problem is in the Transfer order Output condition type. I had dispatch time 4 - Send immediately assigned to the output condition record. This forces the TO order to be created immediately.
    As a rule to create TO the Pick qty field in delivery document has to be filled in with the delivery qty. Hence the delivery qty has copied into the pick qty field.
    I changed this dispatch time to 3 and now it works fine.
    Mahi

  • How to update picked qty as delivery qty while creating outbound delivery

    Hi,
    I am using badi definition LE_SHP_DELIVERY_PROC to update delivery qty as picked qty at the time of creating delivery. By using method SAVE_DOCUMENT_PREPARE I am populating delivery qt(yCT_XLIPS- G_LFIMG) to picked qty(CT_XLIPS[1]-PIKMG). and i am also populating update flag as 'I'. after saving the delivery document i am not able to update picked qty which was populated in BADI. could you please suggest anything needs to care. thanks in advance.
    Regards,
    Peranandam

    Hi,
    I did a little test and, within the method CHANGE_DELIVERY_ITEM, itu2019s possible to fill the picking quantity (structure CS_LIPSD) but unfortunately during the save the added information is lost.
    This is because the BAdI method is fired too soon and the routine PICKMENGE_BEARBEITEN (SAPFV50P) is not called at all.
    The problem is quite complex; even after changing the picking quantities, the picking status still remains open!
    The picked quantity is generally filled:
    u2022     by printing the picking list
    u2022     Warehouse Management by creating a transfer order
    u2022     or by manual entry
    Otherwise, it is assumed that picking has not yet been initiated and the result is that picked quantity is ignored.
    In my opinion itu2019s very difficult to solve your problem using only the BAdI implementation.
    I suggest you to propose an alternative solution such as the automatic processing of Picking Output EK00; easy to activate and absolutely standard!!!!!!
    Regards,
    Andrea

  • Delivery Qty for Material is less than P.O. while doing STO from Plant

    Dear All,
    Please help me in this issue.
    While doing STO from one Plant to another Plant, The picked Delivery qty in VL10D is less than P.O. qty for one perticular
    Material. What could be the issue and solution from it.
    Regards
    AJIT K SINGH
    Edited by: AJIT K SINGH on Jun 8, 2010 2:01 PM
    Edited by: AJIT K SINGH on Jun 8, 2010 2:03 PM

    >
    AJIT K SINGH wrote:
    > Dear All,
    >
    > Please help me in this issue.
    > While doing STO from one Plant to another Plant, The picked Delivery qty in VL10D is less than P.O. qty for one perticular
    > Material. What could be the issue.
    >
    > Regards
    > AJIT K SINGH
    Seems like the stock is not available for the particular material, thats why it is picking up the less amount which is available in stock, or the ATP check has blocked the stock available, and you have certain pieces available currently for the said material.

  • Delivery Qty. empty in VL01N

    The issue is at Delivery [VL01N]
    Delivery Qty. is empty for my item NucoIM_ which is a batch item { Batch No. 0000000352 not reflected in Order, So entered manually}
    When I gave Dlv Qty. and Picking Qty. THE ERROR IS
    Only 0 MG of material NUCO_IM 0000000352 available
    Plz. Throw some lights on the error. And let me know,
    should we enter batch number manually in order item or it will propose automatically.
    Thanks

    Hi,
    It seems you are in make-to-order scenario.
    you might have posted stock using MB1C in unrestristed stock, but when your order is make-to-order, you cant create a delivery with unrestricted stock.
    If you are in test system , then you can post the stock again with respect to a particular order and try to create a delivery.
    I hope it helps.
    thanks,
    Ashok Sakamuri

Maybe you are looking for

  • OBIEE 11g Scheduler installation error on Linux box. Please help!

    Hello, I'm trying to install OBIEE on a Linux box. The repository was created using a Windows PC on a separate Oracle database on another server. I have four of the five OBI components running but I keep getting this error for the Scheduler. [2011-09

  • Update termination error at the time of order creation

    Dear gurus, Facing an error at the time of creation of order. system is giving update termination error & when we are going in change mode of that order system is giving an error message " SD document XXXX is not in the database or has been achieved"

  • Inspection Lot not coming in QA16

    Dear Masters, I am using inspection lot origin 04.Inspection is carried out by uaing a task list.As soon as the production confirmation is done , inspection lot is cretaed and  it is seen in QA32.But the same lot is not coming in QA16 , Why?Please su

  • Electronic Signature using SAPUI5?

    Dear UI5 Gurus, Can we Implement Electronic/Digital Signatures using SAPUI5? Consider a business scenario which might require this functionality for some sort of auditing purpose based on Production Order Confirmation/Updation. Thank you in advance!

  • Auto payment under F110,

    Hi SDN,               While processing auto payment under F110, the adjustmemos are not getting adjusted. Only the negative figures are picked up from the vendors list an dnot the positives.  On processing, a text appears as "***Exceptions******". Wh