Cannot create delivery for sales order though stock exists in location

We have a consignment issue sales order for which we're unable to create a delivery.  In MMBE we can see that stock exists for this part/batch# at this particular consignment customer location; however, when we try to create the delivery for this, we get an error saying that no stock exists.  My assumption is that something else is "holding" that stock (another un-issued delivery maybe?)  How do I find out what is reserving this material/batch?
Thanks in advance for your help.

There are different ways to find out such delivery documents.
      - in VL02N - press F4- enter your shipping point ( if this material delivery happens from single shipping point)
     - VL06O - enter relevant selection criteria & Material- enter the status not equal to "C- completed'.
Regards,
Reazuddin MD

Similar Messages

  • Why cannot create delivery for Sales Ord in SAP, even there is enough stock

    Hello
    I am trying to create delivery for sale order. I did for some lines. But it shows meassage "An item with no delivery quantity is not permitted. Item will be deleted." for the other lines, even there is enough stock.
    Appreciate your comments:)
    BR
    Happy

    Hi Happy,
    Please refer following link for better understanding the concept and functionality :--
    Re: Schedule line control in sales order
    http://www.sapfans.com/forums/viewtopic.php?f=5&t=127586
    Re: Delivery without Sales order? If yes,how can we track those materials?
    Regards
    Rajesh

  • FM:create a delivery for sales order in the background.

    Hi experts
    I want  Function Module to create a delivery for sales order in the background for both inbound and outbound.
    tcode : VL10A.
    Thanks in advance.
    kiran j

    Hi Kiran,
    Welcome to SDN Forums
    Please use the correct or most appropriate forum.
    The ABAP Objects Forum should be used for: ABAP Object definition and implementation including encapsulation, interfaces and inheritance in ABAP Objects.
    This thread will be moved from to .
    The forum is dedicated to: Data Transfer Techniques, Batch Data Communication, Legacy System Migration Workbench, Application Link Enabling, IDOCs, BAPIs.
    Please see the [Forum Rules of Engagement|https://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement] before posting.
    Also read this thread Welcome and Rules of Engagement.
    Greetings,
    Marcelo Ramos

  • Budget error while creating delivery from sales order

    hi Gurus,
    System is throwing error PB603 "Item 004 WBS element ABC-XXX budget exceeded" while creating delivery from sales order.
    I am picking material from unrestricted plant stock (not in project stock).
    I am also confused as sales order has 3 line items & error shows Item 004 !

    Hi Kuldeep,
    Check this note,
    Note 159387 - Message BP603: incorrect line item is displayed
    Its valid only till 4.6. Might give you some idea but.
    Regards,
    Gokul

  • Create STO for sales order stock

    Hi,
    My client requirement is to move the sales order stock from one plant to another plant using STO. We have STO scenario for cost center, but we don't have for sales order stock.
    Could anyone tell me about the missing config for sales order stock.
    Thanks and regards
    Durai

    Hi Durai,
    In the shipping data for plants change the DistChannelIB to Intercompnay OR cross plants for each of you plant.
    Hope this helps!
    Abhi.

  • Create Delivery from Sales Order Document

    Hello all,
    I have a business requirement to create deliveries from sales orders in the most effcient way possible.  Our current program uses BDC and calls transaction VL01N, however this has been found to dramatically increase the run-time of this program.  I have been searching for a BAPI to essentially do the same thing. 
      I came across one BAPI, BAPI_DELIVERYPROCESSING_EXEC, but have been getting inconsistent results.  It will create deliveries for some line items and not others with little rhyme or reason.  The return table is not being populated unless it is a high level error, such as the quantity passed being 0.
    To the BAPI, I am passing: Sales Doc Number, Line Item, Quantity, and Document Category.  This is done through an internal table.  I also pass internal tables to receive the return messages and the created documents. 
    Has anyone seen the same thing with this BAPI? Is there a better BAPI to use for such a purpose?
    many thanks for any help,
    brian

    Hi!
    For delivery creation you can use FM SHP_VL10_DELIVERY_CREATE:
        DATA:
          if_ledat TYPE lfdat_a,
          if_nur_vorgabe_pos TYPE xfeld,
          it_key_to_enque_t TYPE shp_vl10_package_t,
          it_key_to_enque LIKE LINE OF it_key_to_enque_t,
          it_komdlgn_t TYPE shp_komdlgn_t,
          cx_sd_order TYPE shp_vl10_sd_order,
          ct_vbsk_all_t TYPE shp_vbsk_t,
          ct_vbls_t TYPE shp_vbls_t,
          ct_key_late TYPE shp_vl10_package_t,
          ct_vorgabe_daten_t TYPE shp_vorgabe_daten_t,
          ct_vorgabe_daten LIKE LINE OF ct_vorgabe_daten_t,
          wa_dlvsrc LIKE LINE OF m_it_dlvsrc,
          msg TYPE string.
        LOOP AT m_it_dlvsrc
          INTO wa_dlvsrc.
          CLEAR it_key_to_enque.
          it_key_to_enque-panum = '1'.
          it_key_to_enque-vbobj = 'A'.
          it_key_to_enque-vbtyp = 'C'.
          it_key_to_enque-vbeln = wa_dlvsrc-vbeln.
          it_key_to_enque-posnr = wa_dlvsrc-posnr.
          it_key_to_enque-id = '1'.
          it_key_to_enque-tabix = '1'.
          it_key_to_enque-vstel = wa_dlvsrc-vstel.
          APPEND it_key_to_enque TO it_key_to_enque_t.
          CLEAR ct_vorgabe_daten.
          ct_vorgabe_daten-vgbel = it_key_to_enque-vbeln.
          ct_vorgabe_daten-vgpos = it_key_to_enque-posnr.
          ct_vorgabe_daten-lfimg = wa_dlvsrc-lfimg.
          ct_vorgabe_daten-akmng = 'B'.
          ct_vorgabe_daten-postab_tabix = it_key_to_enque-tabix.
          ct_vorgabe_daten-panum = it_key_to_enque-panum.
          ct_vorgabe_daten-id = it_key_to_enque-id.
          APPEND ct_vorgabe_daten TO ct_vorgabe_daten_t.
        ENDLOOP.
        if_ledat = sy-datum.
        if_nur_vorgabe_pos = 'X'.
        CALL FUNCTION 'SHP_VL10_DELIVERY_CREATE'
             EXPORTING
                  if_ledat           = if_ledat
                  if_nur_vorgabe_pos = if_nur_vorgabe_pos
                  it_key_to_enque    = it_key_to_enque_t
                  it_komdlgn         = it_komdlgn_t
             CHANGING
                  cx_sd_order        = cx_sd_order
                  ct_vbsk_all        = ct_vbsk_all_t
                  ct_vbls            = ct_vbls_t
                  ct_key_late        = ct_key_late
                  ct_vorgabe_daten   = ct_vorgabe_daten_t.
        COMMIT WORK AND WAIT.
    All created deliveries numbers:
    SELECT vbeln
          INTO TABLE m_it_vbeln
          FROM vbss
          FOR ALL ENTRIES IN ct_vbsk_all_t
          WHERE sammg = ct_vbsk_all_t-sammg.
    All errors during processing:
          SELECT msgid msgno msgv1 msgv2 msgv3 msgv4
            INTO TABLE it_msg
            FROM vbfs
          FOR ALL ENTRIES IN ct_vbsk_all_t
          WHERE sammg = ct_vbsk_all_t-sammg.
    Regards,
    Maxim.

  • Error in PGI delivery for sales order

    Hi Experts,
    Can any tell me why do I get an error message
    "You are not authorized for given plant and mvt tpe"
    when I try to do a PGI for a delivery of sales order.
    thanks in advance.

    Hi Ashwin
    In realtime there will limit to user to access to some Plant Data.
    For SD guys access to sales order only it will not allow to create delivery for that product..for thts y u r not allowed to access  for delivery.
    In real time they will create user profiles for each document type.
    Regards
    Srinivas.

  • Create delivery with sales order reference.

    Dear all,
           I created a sales order with sales area (1000,10,00) and order type(or).
           when i am creating a delivery with sales order reference , error is occurring.
    error:(Order cannot be delivered (see long text)).
           plz solve the problem urgent.
                                          Regards,
                                v.mallikharjuna rao.

    Hi,
    You must do the PGI before creating the delivery. Please follow the below mentioned procedure carefully and you will be able to do that.
    Once you create a Sales order, go to the transaction VL01 and do the PGI. To do PGI (from transaction VL01), in the menu, go to Outbound Delivery->Save and Subseq.Func->Transfer order. This will take you to Transfer order transaction. click on Generate TO and save. Now return to transaction VL02 and click on Post Goods Issue. This will do the PGI and save the Delivery document. Now go to VF01 and you will have the delivery number just created as a line item. Select it and click on execute button. Save once the execution is done and a Billing doument (invoice) is created. Now if you go to the sales order and click on document flow all these documents will be displayed.

  • BAPI to create Delivery from Sales Order posting EIKP data

    Hi All,
    I'm searching for BAPIs to create a Delivery from Sales Order which I can update/insert data into EIKP table because I am receiving data that it must be saved into ZOLLA and ZOLLB fields (Customs Office: Office of Exit/Entry and Destination for Foreign Trade).
    I tried with BAPI_OUTB_DELIVERY_SAVEREPLICA, BAPI_OUTB_DELIVERY_CREATE_SLS and BAPI_DELIVERYPROCESSING_EXEC but I didn't find structures with these fields.
    Please, I need some help to resolve this issue.
    Thanks in advance.

    Hello Manoj what you have to do to create PO from PR is that
    1) Use   BAPISDORDER_GETDETAILEDLIST (pass sales order number in sales_document table) and then get PR (Purchase requisition number from this BAPI.
    2) Use  BAPI_REQUISITION_GETDETAIL to get PR items
    3) Use BAPI_PO_CREATE1 to craete PO from PR then.
    to create goods movement you can use
    BAPI_GOODSMVT_CREATE
    REWARDS IF USEFUL.

  • How to create Delivery with sales order FM/BAPI

    Hi Gurus,I'm new to  SAP  platform
    I have created sales order ,
    with this i need to create Delivery(vl01n)
    so i need to give 'Shipping Point','Selection Date','SD Number'
    so could any one tel me which FM/BAPI is suitable to create
    Outbound delivery with 'sales order number', 'Selection date' and
    "Plant or Shipping Point'.
    With these Import parameters i need  FM/BAPI .
    Thanks  in Advance
    Siva Kumar kasa.

    I   have created delivery  with  that  BAPI 
    giving   'batch number'  but  it was  not  updated,so  can u tel me
    any related field  which need give to change batch field  also.

  • Authority check for sales order and stock transport order

    In my code i have a requirement to enter sales order and Stock transport order. However i want that a WM resource should not be allowed to enter sales order and an SD resouce should not be allowed to enter stock tranpsort order. Please suggest.

    Hi,
    Another way to solve this is create a Z table with field user name and Resource type and compare the user id ( sy-uname) with the Z table and allow accordingly.
    In production environment controlling authorization in this approch is much easier.
    Hope this helps.
    Regards
    Bikas

  • Bapi to create delivery for purchase orders

    Hi Expets,
    what is the bapi to create a delivery for purchase orders.urgent.please do the needful
    kiran j

    Hi,
       Check below link.
    Re: BAPI for Inbound delivery
    Re: BAPI_OUTB_DELIVERY_CREATE_STO

  • SCE for Sales order reserved Stock

    Hi Friends,
    During the SCE in CK40N, it is working fine for all materials except Sales order reserved stock. It is not updating the prices of Sales order stock prices in accounting view and not making valuation on the basis of new prices in MB52 stock report.
    Can you please provide me the solution so that we can get the valuation of Sales order reserved stock(MTO) updated by SCE run.
    Rgds, Krishan Raheja

    Dear Friends,
    Requested for your kind help on the matter.
    Rgds, Krishan Raheja

  • Error PGI delivery for sales order

    Hi Experts,
    Can any tell me why do I get an error message
    "You are not authorized for given plant and mvt tpe"
    when I try to do a PGI for a delivery of sales order.
    thanks in advance.

    Dear,
    Check with basis peson for authorization.for perticular movement type. Check OMJJ also.
    System ask the user with the authorization problem to run SU53 transaction after getting the error message and pass that screen to your BASIS/ Authorization guy to add the required authorizations to your users.
    Regards,
    R.Brahmankar

  • Shipping point to create delivery for purchase order

    Hai,
          I have created PO in ME21N and I need to create delivery for this, so I have used VL10B Tcode, here it is asking for shipping point, which value we need to give for this. Actually I have given the plant which was given in ME21N, but I'm not getting PO number here to deliver, Is there any problem, or which value we nee to give as shipping pioint.
    thanks in advance,
    dhanush

    Hello,
    Check shippinng tab on your PO item level. If you can not find shipping tab that means shipping point is not determined.
    Shipping point determination :
    In SPRO>>Logistics execution>>Shipping>>Basic shipping functions>>Shipping point Determination->>assign shipping points>> For your Loading group,Shipping Condition and Supplying plant combination >>Assign shipping point here
    Also check shipping condtion in yor coustomer master and loading group in material master.
    Regards,
    Shailesh

Maybe you are looking for

  • Need a mini display port and audio to HDMI adapter for mid 2009 13" macbookpro

    Can some body recomend an adapter cable that plugs into the audio (mid 2009 MacBookPro 13") and mini display port and outputs to HDMI with audio and video all together for a TV?  I would rather not run a separate audio cable in addition to the HDMI c

  • OfficeJet Pro 8600 N911g cannot complete s/w installation on laptop running XP

    Initially, successfully installed the 8600 s/w on a Dell D810 laptop running XP which is linked both via Ethernet and wirelessly to the same LAN as the printer.  The printer is wirelessly linked to a port on a WAP device connected to the LAN/router.

  • Time Machine crashing

    Hi, This seems to be a common problem, however maybe someone has an answer! I have just moved to a Time Capsule for back ups. As in many previous posts my iMac 'freezes' at random points during the back up and has to be re-booted. I have tried using

  • Access Reports to CR

    Does or will SAP have some conversion in the future to take Access Reports ---> Crystal Reports?? I am aware of some on the market but would be nice is CR has the feature built-in. Edited by: palta_s on Jan 12, 2011 5:44 PM

  • The Color of Clipped Highlights

    After watching Jeff Sengstack's Color Correction series over on Lynda I dove into correcting for the first time with a home movie.  All is going well but when I'm using the RGB Color Corrector to brighten things up highlights from lit sources like li