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.

Similar Messages

  • Automatic goods issue for outbound delivery without picking/packing

    Hi,
    I have the following flow: sales order -> outbound delivery -> goods issue.
    I would like to to be able to post an automatic goods issue on my delivery.
    Could someone please let me me know how to perform the customizing for this or give me the reference of the appropriate post which answers this.
    Thanks,

    Hi,
    Use t-code VL23
    select  varient SAP & STANDARD >>> Click on START IMMEDIATELY
    or else
    click on schedule >>> click on schedule periodically >>> select your option as Minute and maintain value 1 or ( 1 to 60 )
    it means sytem will run this program after every one minute
    Also You can able to create your own varients and speciefy criteris like form which sales orz, which delivery types etc.
    Kapil

  • 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

  • Automatic goods issue for outbound delivery, during the transfer order confirmation

    Hello,
    Could you please advise how to realize automatic goods issue for outbound delivery, during the transfer order confirmation in the WMS.
    Now after creation of outbound delivery, i can't post the goods issue. Before i have to make the transfer order and confrim it and only after this i can post the goods issue in the VL02 t-code.
    Could you please advise - what i have to customize that to make automatic GI for outb. delivery (i mean with creation material document) during the TO confrimation.
    Thanks in advance.

    Hi Iiya
    Check the below setting, might be helpful

  • 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 for outbound delivery without order reference???????????????????

    hello folks
    i want to a bapi for transaction <b>VL01NO</b>. this transaction is used for creating outbound delivery <b>wihtout a order reference</b>. I did a search but was not able to find a bapi pls help.

    Hi,
    Could you please send me the sample code for BAPI_DELIVERYFREE_PROXY_CREATE? I am using the IDOC for outbound delivery w/o order reference. I didnt find any standard process code for this..
    Any suggestions on the same??
    Thanks,
    Prasad

  • 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

  • Goods issue for outbound delivery

    Any example on how to simulate vl06g (goods issue for otubound delivery)?
    I'm trying it with BAPI_GOODSMVT_CREATE...
    Thnks.

    Hi Lopez,
    Post Goods Issue with MB_CREATE_GOODS_MOVEMENT FM in VL02N
    Regards,
    Sravanthi

  • Posting Inbound Delivery Without Reference using IDOC_INPUT_DESADV1

    Hello Experts,
    We have a scenario wherein we are required to post an IDoc into SAP which represents an Inbound Delivery without any reference. We tried using standard FM IDOC_INPUT_DESADV1 with below details to post an IDoc for an Inbound Delivery without any reference-
    Message Type    DESADV
    Basic type      DELVRY07
    However, we are not able to do it. Can you please advise any inputs how this can be achieved?
    Regards

    Have a look into OSS note 666591 - DESADV with text items without material number not postable
    It is actually older and fixes a certain issue, but the solution describes how it is designed. And there is it very clear that in case of material with  material number you need to have a purchase order reference.

  • Post Goods Issue for Outbound delivery return

    Hi, I'm trying to Post a Goods Issue for a returned outbound delivery but  I cannot find a function module to do this, I tried using SD_DELIVERY_UPDATE_PICKING but its creating the material against the outbound delivery with status archived, which means it wasn't created.
    I also tried using the MB_CREATE_GOODS_MOVEMENT, but this one is creating the material document but not updating the status and the document flow of the delivery.
    Thanks,
    Pablo

    Hi Lopez,
    Post Goods Issue with MB_CREATE_GOODS_MOVEMENT FM in VL02N
    Regards,
    Sravanthi

  • 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

  • Post goods issue for outbound delivery in previous month

    Hi experts,
    Pls help. Many thx.
    Due to roll out, some stock need to be issued in previous month. It works fine except some deliveries. Those deliveries have been cancelled goods issue due to wrong posting date.
    For e.g. the posting date in delivery should be April 1. Due to oversight, the date is entered as May 27. In VL09, the reverse date should be in May. Otherwise, the system disallows further.
    Now, the problem comes up. When doing those deliveries again (even create new deliveries), the error message pops up "Deficit of SL Unrestr. prev. 350 KG : XX material XX plant XX storage location
    Message no. M7021
    Diagnosis
    Shortfall below the specified stock level or quantity amounting to 350 KG.
    System Response
    If the message is an error message (E), the above is not allowed.
    If the message is a warning message (W), the system will allow your input, but the warning is intended to prevent you entering a wrong quantity.
    Procedure
    In the case of a warning message, check the quantity entered.
    In the case of an error message, change the quantity or terminate processing."

    Hi Lakshmipathy,
    I tried the same as you said but its throwing the error below:
    GI for delivery 80014996 cannot be canceled for the following reasons:
    Cancellation date 30.04.2009 is before the goods issue date 28.05.2009.
    I don't have the any issues but i tried whether its working or not.
    Kindly suggest...
    Regards,
    SK

  • SD: Need to cancel Goods Issue for Outbound delivery cancellation via VL09

    Hello.
    User have have canceled the GI for OBD via VL09. But the date of cancelation is 09.11.2010 though it should be 29.10.2010 (as it was in the initial document).
    Is there any possibility to cancel this cancellation?
    Best regards.

    hi
    once PGR happend basing on the document date we cannot reverse on the same.  functionally it is not possible because the entry has been registered/credited wirh COGS.
    hope this helps
    regards
    balajia
    Edited by: balaji timmampalli achari on Nov 14, 2010 2:43 AM

  • 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

Maybe you are looking for