WM relevant ....Outbound delivery (without reference) VL01NO

Hi ,
I have created a delivery with Delivery Type WGO using T code VL01NO .... but in the picking tab of outbound delivery , it is neither showing me warehouse number nor OverAllWMStatus ( status is NOT relevant).
The material is available in warehouse which is link to the plant and storage locations used in this Outbound Delivery,
Regards

I did check the Item delivery Category and there PICKING flag is checked for it .... is there anything else I need to check
Regards
Sandeep marwha

Similar Messages

  • Goods Receive for Outbound Delivery Without Reference using MIGO

    Dear Colleague ...
    We might need your insight on the case below related to Goods Receive of Outbound Delivery without Reference using MIGO:
    (1) In the current SAP Enjoy screen of MIGO, we are allowed to select the reference document (e.g. = PO, Material Document, Inbound Document, Outbound Document, etc.)
    (2) We did 3 (three) kind of test set: GR for Inbound Delivery, GR for Outbound Delivery with STO and GR for Outbound Delivery without reference.
    (3) The first 2 (two) cases work just find with MIGO.  We believe it is because the receiving plant is pretty much determined in the reference document, which is PO (case 1) or STO (case 3)
    (4) However, the last case came up with the error message "Goods receipt not possible for delivery 8000610236: error code 5".  We believe that this is the standard design of SAP, that the receiving plant is required and it is not defined explicitly in the delivery document.
    (5) Moreover, we also believe that that's the reason why SAP (via the Logistic Execution module) provide the Handling Unit and Shipment, which can be used to perform such receive function, which will imply the MM posting (goods issue and goods receive) IF there is stock transfer involved.
    Appreciate for any thoughts or input on the above.  Many thanks,
    Alvon Sibarani

    use transaction mb0a it will work for the scenario.

  • Vendor subcontracting with outbound delivery without reference

    Hi Experts,
    please do you know if it is possible to manage subcontracting movement (541) using an Outbound Delivery without reference to any Sales Order nor Purchase Order?
    Can you send me please the detailed description of settings in master data and customizing?
    Thank you very much
    Kind Regards
    Andrea
    Edited by: Andrea on Jul 21, 2008 12:46 PM

    Hi,
    With ME2O, it's necessary to have a subcontracting PO in selection for your materials. From this selection, you have the requirement and the vendor stock for these materials.
    If the stock is negative, you can create a outbound delivery.
    For your information, this outbound delivery is as a delivery without reference. But, with ME2O, it's necessary to have PO in selection.
    Then, another solution is to update vendor stock with MB1B but not connection with LE.
    But, i tried to add item category LBN for LO delivery type.
    But, i have a error message during the GI (message M7 071).
    I'm not on real test environment.
    Can you try ?
    Regards,
    Lionel

  • RFC to Create Outbound Delivery without Reference

    Hello, we used the function module  "SHP_VL10_DELIVERY_CREATE" to create a PO and outbound delivery. Our business process has changed, just need to create an Outbound Delivery without reference to an order. Having trouble identifiying what function module to use? Looks like SHP_VL10_DELIVERY_CREATE is dependant on a sales order.
    Any ideas?

    Hi,
    BAPI_DELIVERYPROCESSING_EXEC
    refer this thread:
    Re: BAPI to create outbound delivery
    Best regards,
    Prashant

  • Outbound delivery without reference and customer-material info record

    We use outbound deliveries without reference (L0). Several customers want their own material number printed on the delivery notes.
    So we considered using customer material info records. Unfortunately, the customer material number is not copied from the customer material info record into the outbound delivery position.
    Do any customizing settings exist that we might have overlooked? Or is this behavior a "feature"? Any hint would be highly appreciated.
    Best regards,
    Gerald

    Hi Gerald,
    have you ever figured a solution for this issue?
    I'm now facing the same issue and could need some support. I found some documentation for the USEREXIT_CUST_MATERIAL_READ, but I don't know whether that could be used as a solution.
    Please let me know or if anybody else knows something, please feel free to chip in your knowledge!
    Thx & regards,
    Bobby

  • Create delivery without reference and without movement

    Dear All,
    I have a requirement to create an outbound delivery without reference (the easy bit) but also without movement for normal "FERT" stock items.
    The reason for the requirement is we have a production planning plant set up and the receiving plant is s short distance from the manufacturing plant. The transport between locations involves public roads and the products being shipped can contain hazardous materials.
    The thought is to create a delivery without reference assign the materials and pack within the delivery, the problem is that as the movement has already taken place this delivery line item must not be relevant for movement.
    I have tried assigning text and non stock item categories without success so I am hoping someone out there can give me some pointers on possible solutions
    Many Thanks
    Brian

    In case I have understod u correctly then u need to create a OBD with material with stock but no goods movement shoudl happen
    can u create a new item category which is not relevant to picking and no sloc is requried and when u create the delivery then system will mark it as complete even w/o PGI.
    tcode 0VLP

  • BAPI for outbound delivery without order reference - VL01NO

    Hi ,
    I need a BAPI to create a outbound delivery without a Order reference ( transaction VL01NO ). Please provide the BAPI. Sample code will be helpful.
    Thanks,
    R~

    Hi,
    Following is the sample code for creation of outbound delivery Using BAPI 'BAPI_DELIVERYPROCESSING_EXEC'
    Which may be helpful.
    PARAMETERS: p_vbeln LIKE vbak-vbeln.
    DATA: BEGIN OF t_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr,
    kwmeng LIKE vbap-kwmeng,
    matnr LIKE vbap-matnr,
    werks LIKE vbap-werks,
    END OF t_vbap.
    DATA: t_request TYPE STANDARD TABLE OF bapideliciousrequest
    WITH HEADER LINE.
    DATA: t_created TYPE STANDARD TABLE OF bapideliciouscreateditems
    WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapiret2 WITH HEADER LINE.
    SELECT vbeln posnr kwmeng matnr werks
    INTO TABLE t_vbap
    FROM vbap
    WHERE vbeln = p_vbeln.
    LOOP AT t_vbap.
    t_request-document_numb = t_vbap-vbeln.
    t_request-document_item = t_vbap-posnr.
    t_request-quantity_sales_uom = t_vbap-kwmeng.
    t_request-id = 1.
    t_request-document_type = 'A'.
    t_request-delivery_date = sy-datum.
    t_request-material = t_vbap-matnr.
    t_request-plant = t_vbap-werks.
    t_request-date = sy-datum.
    t_request-goods_issue_date = sy-datum.
    t_request-goods_issue_time = sy-uzeit.
    APPEND t_request.
    ENDLOOP.
    CALL FUNCTION 'BAPI_DELIVERYPROCESSING_EXEC'
    TABLES
    request = t_request
    createditems = t_created
    return = t_return
    READ TABLE t_return WITH KEY type = 'E'.
    IF sy-subrc = 0.
    MESSAGE e208(00) WITH 'Delivery creation error'.
    ENDIF.
    COMMIT WORK.
    READ TABLE t_created INDEX 1.
    WRITE: / 'Delivery ', t_created-document_numb, ' created'.
    Let me know if any issues.
    Thanks & Regards,
    Naveen

  • BAPI to Create Outbound Delivery Without Order Reference

    Hi everyone
    I need to create <b>outbound delivery without order reference</b> ( like i create manual in VL01NO) . Can anyone help me to find this bapi or function?
    Thanks & regards
       David

    Hi,
    Please check this BAPI.
    BAPI_DELIVERYFREE_PROXY_CREATE
    BAPI_DELIVERYPROCESSING_EXEC
    Regards,
    Ferry Lianto

  • Create outbound delivery without order reference but with order data

    I am interested in creating an outbound delivery without order reference...but include data from a sales order that has already been PGI'd. Has anyone come up against this and found a solution?

    There is a button on VL01N transaction saying W/o Order Reference...
    Click on that and then enter the shipping type, delivery type... and in the main screen enter the data that u have in ur order...
    try that.... all the best
    reward points if helpful...

  • Can we create outbound delivery with reference of purchase order

    Hi All,
    can we create outbound delivery with reference of purchase order?

    dear friend,
    as far as i know you can create it with the following references:
    -to sales order;
    -to STO;
    -to subcontract order;
    -to project;
    -without any ref
    are you talking about stock transport order ?
    regards,

  • I faile to create outbound delivery with reference to scheduling agreement by using BAPI_OUTB_DELIVERY_CREATE_SLS.

    Dear Team,
    Can you please help me by providing the BAPI name for creating the outbound delivery for Scheduling Agreement in SAP SD .
    I faile to create outbound delivery with reference to scheduling agreement by using BAPI_OUTB_DELIVERY_CREATE_SLS.
    The system says "missing data in the BAPI interface: VBAK VBTYP E". It seems another FM should be used for scheduling agreement only.
    Thank you for your help in this regard .

    Hi Raghu.
    As much as I don't want to do this but just to resolve this error I created an enhancement implementation in include LV50R_CREACSV form routine dcs_check_so_vs_interface and modified VBTYP to blank to avoid that error message.
    Got the tip from this thread http://scn.sap.com/thread/1972059
    Unless... anybody has a brighter idea (without modifying the standards)?

  • Delivery without reference for stock transfer within the same plant 311

    Dear all,
    I need to create a delivery without reference for stock transfer within the same plant, movement 311,  i.e. just from 1 storage location to another storage location.
    I tried to use VL01NO with delivery type UL.
    Now my question is how can I assign a receiving plant for a customer?
    I can't do the MIGO or MB1B document because I need the delivery document (packing list, forms, Texts,...).
    It's possible this option???
    Thank you very much.

    Hi,
    What is the item category you are assigning while doing VL01NO?  Check the schedule line category for that item category assignment.  That Schedule line category has an option for one step GI.  There you can assign 311 or create a separate item category and schedule line category and in that SC assign 311. 
    Thanks
    Krish.

  • LO - Delivery without reference

    Hi ,
    whats the puprpose of LO and in which scenario do we use this?
    What are the pre and post document for LO?
    Thanks,
    Ivy

    Hi Ivy,
    You can create outbound deliveries without referring to an order. This function is designed for activities such as the R/2-R/3 Link or for when order processing is carried out on another system. When you create a delivery without reference to an order, you must enter the ship-to party and the materials manually. Data is copied into the document from the appropriate master records. The system does not check whether the data is complete. Therefore, you can create a delivery without specifying a delivering plant or a storage location, for example.
    Hope this will help.
    thanks,
    Raja

  • Delivery without reference.

    Hello friends,
    We are writing a small ABAP program to create PO for calling back damaged materials from warehouse back to production plant.
    Then, there was a suggestion, as to why a PO is needed.  When we are creating them programmatically, why not create Delivery-without-reference directly instead of creating PO.
    I would like to know your views about advantages or dis-advantages of this suggestion in our above scenario.   Thanks for your help.
    - Chetan

    Hi,
    When you say "warehouse" do you mean another plant or do you mean a WM type warehouse?
    If the warehouse is another plant then why not just use a 301 movement to transfer the stock back (or a two step movement if you want a goods issue and a receipt)?
    Or do you want to produce an SD type delivery document?
    Steve B

  • Inbound delivery without reference

    Hi all,,
    we have a scenario, where we need to transfer goods from IM storage location to EWM location. For EWM we need to have inbound delivery to get processed. is there any way we can create an inbound delivery without reference or with refrence to stock transfer.
    Thanks all

    Check the configuration to crete delivery
    SPRO>Logistics - General>Handling Unit Management>Basics>Materials Management>Inventory Management>HU Requirement for Storage Locations and Default Values for Deliveries
    Activate storage location then it will create the delivery

Maybe you are looking for

  • Is there a way to open different books on various apps at the same time like in android devices?

    hello good peolpe, i bought an ipad mini retina for books reading and i would like to know if there is a way i can open a book with different apps like  i do on android device where you can use various apps to open differents books at the same time,

  • Two OSX LION APPS? Which one do I use?

    I recently bought a new macbook PRO. I had no idea Mountain lion was free so I ended up buying it off the app store. Once I became aware of the free upgrade I got a refund of my previous mountain lion and redeemed the new one. When I try download the

  • Problem using Export PDF

    i have just purchased another copy of Adobe ExportPDF annual online however when i try to convert a PDF to Word, it wont let me sign in ???

  • Console mode service pack install in 6.1

    Hi, I am trying to apply sp1 to WLS6.1 on solaris 2.8 in console mode java -cp wls61sp1_upgrade_generic.zip install -i console The above command goes through the choose locale step It then says press <enter> to continue. At the next point it should a

  • JScrollPane and TitledBorder spacing

    Hello, I have an issue with using a TitledBorder on a JScrollPane. The problem is that the border is noticeably larger than the JScrollPane inside of it. The problem can be clearly seen in these two images: What the problem looks like:     http://www