Goods Issue for a Return Outbound Delivery for both Sales Returns

Hi gurus..
tell me the approch for the following development....
custom transaction to perform a Goods Issue for a Return Outbound Delivery for both Sales Returns and Consignment Returns (Pickups) process within a lean warehouse in SAP.
it is vry urgnt
thnks

I seem to have found the information I required here:
http://wiki.sdn.sap.com/wiki/display/Snippets/Simulating+the+Sales+Cycle+with+BAPI's
I'm going to keep this post active because I'd still like answers to my questions and any advice that you might be willing to share in regards to what I am trying to do.
Edited by: Mikael Nensén on May 18, 2011 3:52 PM

Similar Messages

  • Cancell/reverse goods Issue WA 641 and outbound delivery

    Dear All,
    i have try to reverse goods issue with mbst, migo and also mb1a but it still can't reverse the material doc created.
    Regards,
    Jenny

    Hi
    Ask  your FI / MM consultant to do the setting for the same
    1.Go to OBYC -T code  and select the AUM transaction
    2.After selecting the transaction gives PoP up enter the Chart of accounts (check the chart of accounts in OB13 -tcode)
    3.then enter the details as below
        Valuation modification   Valuation class                            Debit               Creditg
         0001                              maintained in material master    G/L account   G/L account

  • 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

  • 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

  • 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

  • Goods issue for Individual PO

    Hi friend,
    when doing third-party "Individual PO" (item category group BANC, item category TAB) , do we do a Goods Issue?
    If so, what transaction for Goods Issue do we use (MIGO, MIGO_GI, MIGO_TR, MB1A, VL01) ? What Movement Type
    gets triggered when we do a Goods Issue for "Individual PO" ?
    Also, in the Sales Order(VA02) -> Procurement tab, the Schedule Line is CB which is tied to Movement Type 601 (tcode VOV6).
    Does this mean that the Goods Issue transaction i must use is VL01? In tcode OMJJ, it shows allowed transaction for
    Movement Type 601 is VL01.
    Can anyone provide some clarification on this?
    Thanks so much.

    X = customer
    Y = my company
    Z = vendor
    Based on my understanding, third-party 'Individual PO' is slightly different than the regular third-party
    PO process. In regular third-party PO process, X orders goods from Y, Y order goods from Z, then
    Z sends the goods directly to X, Z invoice Y, then Y invoice X.  Thus, this process, i know that there's
    no need to post a Goods Issue like you said.
    However, in the 'Individual PO' process (from what i've read),
    Z would send the goods to Y instead of sending it  directly to X. Then Y sends the goods to X after
    receiving the goods from Z.  Here, i would think we would need Y to post a Goods Issue (when Y is sending goods to X).  Because when i do a Goods Receipt during the 'Individual PO' process,
    transaction MB5B shows that the plant(i'm assumping it's Y's plant) shows "Total Receipts = 5,
    Total Issues = 0 "  and my inventory g/l account also gets Debited. Thus, i wonder if Y posting a Goods Issue to customer X would then result in "Total Receipts = 5 , Total Issues = 5"  in transaction MB5B
    and hopefully my inventory g/l account gets Credit as well.
    Perhaps i'm confusing "Goods Issue" with outbound delivery VL01N?
    Is there a difference between Goods Issue and Outbound Delivery?
    Thank you.
    Your reply has been very helpful.

  • Error while doing Good Issue for Production Order using BAPI

    Hi All,
    I am facing an error like 'u2018Content of order 1011907: MDT218AJ10 transferred to interface (IMSEG): T-86410-71".
    I have written the code as below. Please let me know what is missing when using the BAPI 'BAPI_GOODSMVT_CREATE'. What is the cause of this error ?
    *Action in Transaction (GM_CODE)
    *GM Code for Goods Issue for Production Order is 03
      gs_gmcode-gm_code = '03'.
    *Header Data
    *Posting date
      gs_header-pstng_date = sy-datum.
    *Document date
      gs_header-doc_date   = sy-datum.
    *Item Data
    *Material
      gs_item-material  = zptp_s_rf_migo_261-matnr1.
    *Movement Type
      gs_item-move_type = '261'.
    *Movement Indicator
      gs_item-mvt_ind   = 'F'.
    *Stock Type
      gs_item-stck_type = 'F'.
    *Plant
      gs_item-plant     = gv_plant.
    *Storage Location
      gs_item-stge_loc  = gv_str_loc.
    *Quantity
      gs_item-entry_qnt = zptp_s_rf_migo_261-menge2.
    *Unit
      gs_item-entry_uom = gv_uom.
    *ISO code for unit of measurement
      gs_item-entry_uom_iso = gv_uom.
    *Order Number
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = zptp_s_rf_migo_261-aufnr
        IMPORTING
          output = gs_item-orderid.
    *Reservation Number
      gs_item-reserv_no = gv_resv_num.
    *Reservation Item
      gs_item-res_item = gv_resv_itm.
    *Reservation Type
      gs_item-res_type = gv_resv_type.
      APPEND gs_item TO gt_item.
    Calling BAPI_GOODSMVT_CREATE to create the Material Document Number
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header       = gs_header
          goodsmvt_code         = gs_gmcode
        IMPORTING
          goodsmvt_headret      = gs_headret
        TABLES
          goodsmvt_item         = gt_item
          goodsmvt_serialnumber = gt_serial
          return                = gt_return.
    Thanks in Advance.

    hi,
    did you look at message ?
    System says, there are differences between the interface data and the order data. It can be anything. I think you should check
    data in the interface . 
    this is the long explanation of your message :
    Diagnosis
    When calling the function module MB_CREATE_GOODS_MOVEMENT or the BAPI GoodsMovement.CreateFromData (BAPI_GOODSMVT_CREATE) to post a goods receipt for a production order, there are differences between the interface data and the order data.
    Example: The order was created for plant 0001, but plant 0002 is passed on in the interface.
    The system checks this for the material and the order item.
    System response
    Due to this difference, the system cannot post the goods receipt.
    Procedure
    Check the data in the interface (IMSEG-WERKS, IMSEG-AUFNR). If necessary, correct the plant or the order number in the interface.
    << Moderator message - Point begging removed >>
    Edited by: Rob Burbank on Feb 6, 2012 11:24 AM

  • Goods Issue for BOM material thru SD route

    Hi Experts,
    I have to carry out Goods issue of BOMB material (Main Material + Components) using Sales BOM. Currently I donot find any config setting that allows me to carry out goods issue thru SD route. Currently we are carrying out this transaction using IS-OIL TD route which is a standard functionality.
    Can experts guide me how I can carry out this transaction using SD route. What will be the setting required etc.
    Thanks in Advance,
    Casimer.

    Hello Francis,
    I did not understand why master of Configurable material is required. It is simple oil bom. The bom is maintained using CS01. The item category is set as required.
    Sales order / Delivery gets created. As the main item is not in stock, no sloc is entered for this line item only the valuation type is assigned. For the component, the sloc and the valuation is assigned. After entering these data in the delivery and clicking on Post goods button, system gives error message like not stock for main item etc.
    Actually the system shall make material to material transfer in the background from component to main item and issue main item thru mvt 601.
    Can u adivse on this.
    regards

  • BAPI to reverse Goods Issue for movement type 601

    Hi Everyone,
    Does anyone know of any BAPI that could be use to reverse Goods Issue for Movement type 601?
    I tried using BDC of transaction VL09 and was able to reverse the GI document successfully but the return message type was 'E' with unreadable message -
    Tabelle 'E' enth#t keinen Eintrag f# 'Ch 004 &'
    When I tried using BAPI_GOODSMVT_CANCEL, I get the error message 'E M7 130 Material document cannot be processed'.
    Best Regards,
    Junwen

    hi, Junwen!
    the following code works pretty well:
          fp_vbeln = vbeln_val.
          fp_budat = budat_val.
          fp_tcode = 'VL09'.
          fp_vbtyp = 'J'.
          CALL FUNCTION 'WS_REVERSE_GOODS_ISSUE'
            EXPORTING
              i_vbeln                         = fp_vbeln
              i_budat                         = fp_budat
            I_COUNT                         =
            I_MBLNR                         =
              i_tcode                         = fp_tcode
              i_vbtyp                         = fp_vbtyp
            TABLES
              t_mesg                          = it_mesg
           EXCEPTIONS
             error_reverse_goods_issue       = 1
             OTHERS                          = 2.
    luck.

  • BAPI For Create Goods Issue for Sales order with picked quantity

    Hi friends,
            Is there any BAPI available to create Goods issue For sales order with picked quantity...............?
    we hv used BAPI_OUTB_DELIVERY_CREATE_SLS
    with sales order .......its creating delivery order but not doing goods issue with piked quantity........

    pls,reply its argent

  • Report for Goods Issued for a Project

    Dear Friends,
                           I want a report for a goods issued for a project.can any body convey the T Code Please...
    Regards,

    use mb51 and select q-special stock and enter wbs no. for which you want to see the details.
    if you have more than one wbs then also you can paste no.s of wbs in mb51
    regards

  • Goods issue for plant maintenance order

    Goods issue with ref to plant maintenance order( Componenets of the order) is not possible in transaction code MIGO. Error message " MIGO is not possible for the refurbishment order".
    Goods issue for the same order can be posted with transaction MB!A.

    hi santhosh
    kindly check the order type .i think you are using MB1A for refurbishment process.but it is not possible.only maintenance order can be posted via MB1A
    follow the procedure for goods issue in refurbishment order.
    Choose Logistics ® Plant maintenance ® Maintenance processing ® Completion confirmation ® Goods movement ® Goods movement.
    The entry screen for a goods issue appears.
    Choose the pushbutton For order.
    Enter the relevant order number in the dialog box and choose Continue.
    An entry screen appears.
    Choose Copy.
    The Maintain Serial Numbers dialog box appears.
    Choose Reference document.
    Enter the order number in the Refurbishment order group box and choose Execute.
    A list appears with the planned serial numbers for the refurbishment order.
    Check the selections of serial numbers, for whose material you want to post a goods issue, and choose Copy.
    The serial numbers are copied into the Maintain Serial Numbers dialog box.
    Choose Exit window.
    The goods issue is posted.
    regards
    thyagarajan

  • Different movement types for Goods Issue for different Order Types

    Hello Experts,
    Can we maintain different movement types for Goods Issue for different Order Types at the time of automatic creation of reservations?
    Thanks and regards,
    Satyajit

    Satyajit,
    Folow the link given,
    Re: How to add new movement types when creating reservation?
    Hope this helps you.
    SmanS

  • Goods issue for subcontracting

    Hi,
    when I post a goods issue for subcontracting with trx MB1B and mvt 541 the system replies with:
    For object XABBELEGNR , number range interval 01
    does not exist OMJ6
    It seems that numeric ranges are ok

    Hi,
    Number Range for GR/GI Slip Number
    Please check in OMJ6 t.code are anybody maintained number range,If not please maintain.
    Hope this would help.
    Regards,
    JS

  • How to execute 261 goods issue for REM order items other than with MFBF?

    Our users are looking for an easy way to post a 261 goods issue for a single component of a repetitive manufacturing order without using the MFBF transaction where they have to deselect all other components of the order.
    The ideal situation would be to use a transaction similar to MB1C or MB11 to simply enter the planned REM order, component material id, and its respective quantitiy and then post. 
    Any information you can provide will be helpful.

    Strat,
    Thank you for your response but LT01 does not seem to provide the functionality that I am looking for.
    To clarify, our users would like to complete a 261 movement for a single component within a particular repetitive manufacturing, without going into the MFBF transaction and having to deselect all of the unnecessary components just to single out one. 
    So ideally we would like to use the MB1C transaction for a 261 movement. Enter in a REM order, the material id, and the quantity to be issued and simply post a single material.  Currently when we attempt to do this with MB1C we receive the error M7162 that our order, which is a product cost collector, cannot be processed with this transaction.
    Hope this helps clear it up and thanks again for your response.
    - Nick

Maybe you are looking for

  • Is it not recommended to use a partitioned external hard drive for time machine?

    1. i hv a 1 tb seagate  back up plus hard disc ..,,i want to make partitions for  using it for time machine, mac, and window repectively . is it not recommended to use a partitioned drive for time machine? some where i have red that time machine wont

  • Output Type ZNEU not coming as default

    Dear Al, I have configured for output type ZNEU for PO printout.By entering manually znue in the message I can able to take printout. But I want to get ZNEU as default once I create PO. I have maintained condition also. Any tips?  please With Regards

  • How does waveform graph downsamples the data before it is plotted

    Hi, I'm interested in how does waveform graph downsamples the data before it is plotted and what algorithm is used for this purpose? My goal is to plot 30 plots that have 1M samples each and I would like to downsample them before plotting onto a grap

  • Range Partitioniung problems

    Hi All, I created a table as follows and wanted to test how a partition by range works. CREATE TABLE test_partition ( emp_id NUMBER,   time_period_from DATE,   time_period_to DATE,   time_period_desc VARCHAR(10),   empfigure NUMBER, CONSTRAINT pk_tes

  • Graphic in ORACLE 10g Developer(Forms Builder)

    Dear Sir/Madam, I am new on oracle I want to learn that how to create graphic in oracle forms builder, Can anyone help me I am very,very thankful to him/her With many thanks.