Outbound Delivery - VL01N

Guys,
When Im creating an outbound delivery in VL01N Im getting the following error.
1.Delivery has not yet been put away / picked (completely)
2.For plant VHYD, material type FERT is not defined in Table T134W
How to resolve this.
Regards
Ayyallas

1.Delivery has not yet been put away / picked (completely)
Delivery Qty = Picking Qty
2.For plant VHYD, material type FERT is not defined in Table T134W
Check material type is FERT for delivery material ??

Similar Messages

  • BAPI for posting outbound delivery (VL01n)

    Hi,
    I need some help in finding correct function module or BAPI for posting outbound delivery (VL01n), the requirement is I need delivery created with reference to sales order and must take following input.
    1. Shipping Point
    2. Sales Order
    3. Selection Date
    4. Delivery type
    I tried some existing ones and some do not have delivery type input and some without Shipping Point input.
    Please let me know.
    Regards
    Ram.

    Hi
    Please avoid the duplicate post .It is not as per the Forum rules.
    You have posted the same question with this title in ABAP General Forum:
    Outbound Delivery BAPI/Function module
    Neha

  • Packing logic in outbound delivery VL01N

    Hi All,
          We are creating outbound delivery using BDC. I am facing problem, while packing.
          Tcode : VL01n
          Screen  PACK (SHIFT + F6 )
         Tab        PACK MATERIAL
                 I am building the whole packing logic in BDC.
          Steps
                  #1 . Create Handling units - Table control 1
                 #2  . Pick the materials       - Table control 2
                 #3 . Hit the pack button .
                    I do this for all the HUs.
    Problem: The table control 2 has only 10 visible line._ I cannot find a consistent method to scroll the table._?
      Currently I am using the NEXT_PAGE button to scroll. [ PPLUS ]
         It displays the last 9 line items. 
    Scenario :
    Can you guys suggest me a consistent way to scroll?
    Please do not suggest the scroll bar option/ P+ / P++ - These are not working for this screen!!!

    Hello,
        There is this program MV50AFZ1 inside that you have the
    forms 1)USEREXIT_SAVE_DOCUMENT
             2)USEREXIT_SAVE_DOCUMENT_PREPARE.
    I think you can write your code to populate the fields here.
    Regards
    ashish

  • Enhancement for Outbound delivery(VL01n)

    Hi all,
             I have a requirement of making delivered quantity = picking quantity.
        which is the relevant enhancement for this requirement.
    thanks in advance
    sandeep.

    you have to change the kcmeng filed in xlips internal table in  the form user_exit_save_Prepare in the program MV50AFZ1 .
    you need to update the updkz field in xlips to 'U' to reflect the changes in the delivery.
    without updating updkz the delivery quantity will not change.

  • IDoc for creating VL01N (outbound) delivery

    Hi,
    I have an interface which provides a SO and need to create an outbound delivery (VL01N) in SAP. This Idoc will be inbound to SAP and requires to create an delivery (vl01n). I tried using delvry03 with message type desadv....but nothing is successful. pls can anyone provide ome help here?

    Hi,
    Check Line number 96 of This bapi
    perform delivery_replicate tables gt_komdlgn
    and the code written inside this sub-routine.
    call function 'GN_DELIVERY_CREATE'
           exporting
                vbsk_i         = gs_vbsk
                no_commit      = gc_true
                if_synchron    = gc_false................
    Though I have not used this BAPI, by going through the BAPI code, i think delivery will be created.
    Regards
    Vinod

  • Updating Serialnumbers automatically while creating Outbound Delivery

    Hi Experts,
    My requirement is to populate serial numbers automatically while saving the outbound delivery (VL01N).
    I tried with user exits, but I am unable to succeed.
    I am using ECC5.
    Any help would be greatly appreciated.
    Thanks,
    Veera K

    Hi Veera,
    For an example if there is a  need to update some table with delivery number and serial number on saving a delivery:
    in include MV50AFZ1:
    FORM USEREXIT_SAVE_DOCUMENT.
    *{   INSERT <TR#>
    "work structure LIKP has the header info here
    "Use that and fill the required workstructure and update the correponding table
    *}   INSERT
    ENDFORM.

  • Error in delivery -- VL01N

    Hi team
    Here is my problem I hope you can help me resolve it or give me some ideas to handle:
    I have the the sale order with 2 items  a material type that is the father (100) and the other releated to the first one (101)
    when we try to create the outbound delivery VL01N or through the sale order menu, we see that the delevery instead to show both item 100 and 101, only shows item 101. when i check the logs it said that: " No schedule lines due for a delivery up to the selected date".
    I have researched delevery in others environments and it works ok I mean delivery has both items.
    Researching the customizing I have not found diferences between them. Also I changed the date in the schedule tab in the sale order. and ot does not work
    If you have any idea.. it will be highly appreciated.
    thks

    Hi,
       Ideally when you select a later date, it should be able to create the delivery for both the items 100 and 101. Since as you say, it is not coming for the other items, can you confirm the delivery date of 100 and also the delivery date of 101. And also do let us know, when you are trying to create the delivery, is the delivery creation date is the latest of both the dates.
      And also when you entered some stocks in the wrong environment and tested, what is the log message you got when you checked?
    Regards
    Ashok.V

  • BAPI for Outbound Delivery Creation with reference to Sales Order - VL01N

    Hi Everybody,
           We are in ECC 5.0 version.
           I want to create a enhancement for Outbound Delivery Creation with reference to a Sales Order.
           Is any BAPI available for this ?
           Any input on this will be very much helpfull.
           Please suggest any BAPI available for this, or should I go for BDC using VL01N or VL04 ?
           Thanks in advance.
    regards,
    Nagarajan.J

    Hi Nagarajan,
    The BAPI BAPI_DELIVERYPROCESSING_EXEC meets your requirement. You can create delivery with reference to sales order.
    The below is the sample code...
      data:lt_request      like bapideliciousrequest
                                    occurs 0 with header line,
           lt_createditems like bapideliciouscreateditems
                                    occurs 0 with header line,
           lt_return       like bapiret2
                                    occurs 0 with header line.
        lt_request-document_type      = 'A'.
        lt_request-document_numb      = vbeln.
        lt_request-document_item      = posnr.
      lt_request-material           = matnr.
      lt_request-plant              = werks.
      lt_request-stge_loc           = lgort.
      lt_request-quantity_base__uom = base_uom_qty.
      lt_request-delivery_date      = sy-datum.
      append lt_request.
      call function 'BAPI_DELIVERYPROCESSING_EXEC'
      EXPORTING
        DELIVERY_EXTEND       =
        TECHN_CONTROL         =
        tables
          request               = lt_request
          createditems          = lt_createditems
          return                = lt_return.
      loop at lt_return where type = 'A'
                          or  type = 'E'.
        exit.
      endloop.
      if sy-subrc <> 0.
    Use the BAPI for Commit
        call function 'BAPI_TRANSACTION_COMMIT'
             exporting
                  wait = 'H'.
      endif.
    Thanks
    Ramakrishna

  • Regarding outbound delivery VL02n and vl01n

    Hi all
    i need a user exit which trigrred after saving the deivery data after PGI
    my requirement is to create a billing document using a bapi while doing the PGI.
    if the user press PGI in back ground we must create a billing document from VL01N now i could not find out a user exit after the delivery data has been commited to database.
    After commiting to the database we must create a billing document
    Can any one let me know is theere any exit to create billing document for delivery after commiting to the data base.
    Regards,
    siva prasad.

    Hi,
    These are all the exits related to outbound delivery. You can use as per your requirement.
    V02V0001
    V02V0002
    V02V0003
    V02V0004
    V50PSTAT
    V50Q0001
    V50R0001
    V50R0002
    V50R0004
    V50S0001
    V53C0001
    V53C0002
    V53W0001
    VMDE0001
    VMDE0002
    VMDE0003
    VMDE0004
    PS: Please reward points if you find this helpful.
    Regads.

  • Outbound delivery with order reference - VL01N

    Hi experts,
    I got this error while creating outbound delivery: "Error Info...   6R 094: There is no conversion factor for material E150C02".
    In develop environment it works fine !! I got this error just in production !
    What can I do ?
    Thanks a lot in advance.
    Regards.
    Marco

    Hi,
    The alternative UOM is not maintained for the material.
    Check in MM02 the material and maintain the alternative UOM whihc is needed to be maintained.
    Basically the UOM which is specified in the error message cannot be converted into the Base UOM. So maintain the same.
    Regards,
    Ankur Parab

  • How to create nested Handling units at VL01n Outbound delivery

    Hi
    Please assist me
    How to create Nested Handling units at the time of Outbound delivery VL01n

    Hi,
    go to Edit-Pack,
    In First tab will be "Pack Material", give Packing Materials & enter. You will get a HU Number generated. select this line & the line in Material to be packed. Click on Pack button. The material is packed into a HU.
    Now go to Second tab "Pack HUs". Here also give Packing Materials & enter. You will get a HU Number generated. select this line & the line in All Handling Units that can be packed. Click on Pack button. The HU is packed into another HU.
    Nagesh

  • Creation of Outbound delivery with respect to sales order

    Hi Gurus,
    I am an Abaper.
    I have a requirement to create outbound delivery with respect to sales order.
    Currently I have the purchase order details.  
    My coordinator has given me a logic.
    From the Purchase order, we have to get the Purchase requisition.
    From Purchase requisition, we have to get the sales order.
    From the sales order, we have to create the outbound delivery.
    Please explain me how to creaet the outbound delivery with respect to sales order.
    Also, how to get the PR from PO and SO from PR.
    Thanks in advance.
    Regards,
    Balaji. R

    Hi balaji,
    I will add the abap code since you are a ABAPER.
    1. To get the Pur. Req. from PO
    Note that PO_NO and PO_LINE_ITEM are variables.
           Select VEBLN VBELP  into (EBKN-VBELN,EBKN-VBELP)
           from EKPO inner join  EBKN on EKPOBANFN = EBKNBANFN
           where EKPOEBELN = PO_NO and EKPOEBELP = PO_LINE_ITEM
    2. And using VL01N you can create the relevant outbound delivery. Use above sales order for this. And record a BDC and write the code.
    Hope this will useful
    Thanks & BR
    sandun

  • Sort of positions by creation of outbound delivery

    Hi,
    we use a split of the outbound delivery by a special count of positions. Now it is necessary to get all special signed materials in the first delivery. I think that means, that I have  
    sort the materials during the start of the delivery creation process.
    But I hav'nt found a user exit (or copy requirement) where I can do this.
    We need the solution in the transaction VL01N / VL10A / VL10B.
    Do anybody know a solution or an other way ... ??
    Lutz

    Thanks for the information ...
    ... but unfortunately it dosn't works in batch processing. If I use the VL01 the sort of positions works, but it dosn't works in VL10.
    I think it is the problem, that the "Order requirements" should be used only for checks and not for changes.
    And my test show that changes in "Data transfer" or the includes LV50SF0S and LV50SF08 don't help to.
    Do you have another idea ??
    Lutz

  • Problem in Outbound delivery with order reference

    Hi,
    I am facing problem with creation of outbound delivery with order reference from transaction VL01N. When i enter into the transaction with order key in, but in the tab Picking there is one column Pick quantity which is showing as grey field with zero value(Grey field don't allow to change the quantity). This Pick quantity is always allow to put us required quantity but i come across this kind of scenario very first time. Can you please help.
    Thank you.

    Hi,
    Your combination of Plant+Storage location is enabled for warehouse management. So directly putting the picking value is not possible. You have two options now.
    1. If you know howto put pickign through transfer orders, do it through LT03 and confirm teh TO for picking quantity to be updated in delivery. You have to find out teh stock in the source bin and use it in transfer order. You may get in touch with WM consultant, if you dont know how to do it.
    2. If you are ok with just doing picking without WM, then you can change the storage location in delivery and then try picking in delivery itself. The storage location should not be enabled for WM for the plant.

  • Automatic creation of delivery(vl01n)

    Hello,
    I want to create a outbound / inbound delivery through t-code VL01N  with reference to salesorder / repair order.
    Please suggest me any BADI , BAPI of functional module..
    tHANKS,
    aNIL
    Edited by: anilpat1 on Mar 31, 2009 4:03 PM

    Hi Anil,
    Please find the BAPI's by using which you can create delivery :
    BAPI_INB_DELIVERY_CONFIRM_DEC     --- > BAPI for inbound delivery ... BAPI_OUTB_DELIVERY_CONFIRM_DEC  --->  BAPI for Outbound Delivery ...
    Regards,
    Vishnu .

Maybe you are looking for

  • HT1386 how do i transfer contacts from one iphone to another iphone?

    I have an old iphone that I need to transfer all my contact to my new iphone.  How do I do this?

  • Phone does not always ring

    Hello, I have been struggling with a wee problem. Our daughter has a Nokia 1650 phone, and when I or my wife call her it never rings. We've been playing hell with her for not answering our calls, but she told us something had been wrong with the phon

  • Dot1x authentication - Switch 3650 / Polycom phone 430

    Hi, I have a switch 3650 with the IP base image IOS 12.2(25) SEE3, a polycom phone SoundPoint IP 430 SIP, A radius server IAS 2003 and a Windows XP PC. I enabled the windows XP pc for wired authentication ( started the service Wired AutoConfig, added

  • CD Drive not working

    We have a CDRW drive that seems to work when it wants to we ran a cd cleaner and we can use the drive to write cds. In my experiance with this either the software is corrupt or possible the drive is going out. Can someone give me a heads up on this o

  • Java error Help!!!

    If I try to run Java I get the following message: Java Runtime Enviroment Cannot Be Loaded If I try to check to see if Java is still loaded I get this message: Several Java Virtual Machines Running In The Same Process Caused An error I am running Win