Problem with pgi for returns delivery

Hi,
I'm trying to do PGI for returns delivery through BAPI_GOODSMVT_CREATE.
The when the delivery is opened through VL02N, the Post Goods Issue button has Post Goods Receipt text written on it. When the GI is done, the material document has movement type 651.
However I'm not able to create the same through the BAPI. I have tried various combinations of GM_CODE and all other variables. Have anybody of you tried doing movement type 651 for a returns delivery using the same BAPI?
Please reply if you've come across some similar situation. I know how to use the BAPI,  I've been using it successfully for other movement codes etc. It's only in this case that I'm stuck up.
Regards,
Vijay

Hi Vijay,
can u pls tell me how  did u do  it....i am also having the same requirement....
Developed a custom program for creating and updating Goods Movement Document by using BAPI_GOODSMVT_CREATE & WS_DELIVERY_UPDATE_2.
thanks, Ankita.

Similar Messages

  • Problem while doing PGI for Returns Delivery

    Hi,
    We are facing some problem which doing PGI for a returns delivery. Our scenario is HU and WM managed. After creation of delivery I have created a TO and has two different valuation type of same material. Total quantity in TO is 2, 1 of each valuation type. So, automatically, batch split happened for the line item in delivery.
    Now when I am trying to do PGI for this delivery, I get en error message saying "Enter Valuation Type". The movement type used here is 161 (Vendor Returns)
    Same thing is happening successfully for movement type 643 (Transfer inter company code).  What I can gather is that while creating 161 document against delivery system is not automatically taking the valuation types mentioned in line item of delivery.
    Let me know possible reasons for this error and resolution.
    Regards,
    Vishal

    Implement the OSS note 965985

  • Problem with PGI for serialized materials

    Hello
    We have created a delivery out of a stock transport order.
    The materials are picked and we have specified which serial number were picked (the material has a serial number profile).
    When performing the post goods issue for the delivery, the following error message occurs:
    "Stock data of serial number 12345678 not suitable for movement
    Serial number 12345678 cannot be used here"
    I check the status of the related equipment via IE03 and the status is EDEL ESTO.
    Could someone please help out on what is causing this error message to occur and how we can proceed with the PGI?
    BR,
    OT

    Please check whether the following notes helps you
    Note 684326 - IO231 during goods receipt
    Note 316342 - IO231 during goods receipt for stock transport order
    Note 712985 - IO201, IO231 and IO305 occur for a delivery goods movement
    G. Lakshmipathi

  • Problem with creation of Return Delivery

    Hi gurus,
    I have created a return sales order without reference. But when I click on PGR, following error is shown
    1) Item 10, mtl staging data 10.03.08 replaced by current date
    2) Outbound delivery is on backorder.(check shipping deadline).
    Please let me know how to resolve this issue, since i am not aware of back order processing.
    Thanks in advance,
    Amol

    Hi Amol,
    Please ignore my earlier post.
    normally you create a Returns Order with reference to a earlier Invoice or Sales order .
    In your case ,Based on the returns order , u need to create a returns delivery and then do the PGR,
    later based on the returns delivery to need to create a returns credit memo.
    Thanks,
    Umesh.

  • PGI for returns using WS_DELIVERY_UPDATE

    Hi Friends,
    I'm using the FM WS_DELIVERY_UPDATE  to do PGI for outbound deliveries. It is not doing the PGI for returns delivery. Can someone help me on how to use this FM for returns delivery PGI or is there any other FM to do this. I do not want to use BDC.
    Appreciate your <removed by moderator> response.
    Thanks,
    Dikshitha G
    Edited by: Thomas Zloch on Jul 7, 2011 12:49 PM

    Use FM WS_LM_GOODS_MOVEMENT, pass the parameter IF_BITYPE = 'N'. Pass the table parameter CT_WORKTAB of type LIPOV. You can get the data from LIKP. The picking has to be complete on delivery. Use FM WS_DELIVERY_UPDATE to complete picking.

  • Billing problem for return delivery

    Hi Guru's
      While cretaing Billing for return delivery ,Excise duties were not picked in the billing .Wat may be the reason..
    rgds,
    subramanyam.

    Hi,
    Kindly refer the SAP note 304290 which will help you out. There are many SAP notes for the Return.
    889951
    794940
    789140
    Regards,
    Murali

  • Error while doing PGI for Outbound delivery using BAPI BAPI_GOODSMVT_CREATE

    Hi All,
    I am getting an below error while doing PGI for outbound delivery using the BAPI BAPI BAPI_GOODSMVT_CREATE:
    Goods movement not possible with mvmt type 601
    Can anyone suggest me what will be the solution for it?
    Regards,
    Raghuraman.k

    I tried with the above BAPI but it is not working.
    In my case a delivery has one line item with batch split and other line item without batch split.
    Below is my code :
    DATA : gwa_header_data TYPE bapiobdlvhdrcon,
           gwa_header_ctrl TYPE bapiobdlvhdrctrlcon,
           lv_delivery     TYPE bapiobdlvhdrcon-deliv_numb,
           git_item_data TYPE STANDARD TABLE OF bapiobdlvitemcon,
           gwa_item_data TYPE bapiobdlvitemcon,
           git_item_ctrl TYPE STANDARD TABLE OF bapiobdlvitemctrlcon,
           gwa_item_ctrl TYPE bapiobdlvitemctrlcon,
           git_return    TYPE STANDARD TABLE OF bapiret2,
           gwa_return    TYPE bapiret2.
    *Header data
    gwa_header_data-deliv_numb = '0808000002'.
    *Header Control data
    gwa_header_ctrl-deliv_numb = '0808000002'.
    gwa_header_ctrl-post_gi_flg = 'X'.
    *Delivery Number
    lv_delivery = '0808000002'.
    *Item data and its corresponding control data
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900002'.
    gwa_item_data-dlv_qty         = 4.
    gwa_item_data-dlv_qty_imunit  = 4.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900002'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '900003'.
    gwa_item_data-dlv_qty         = 6.
    gwa_item_data-dlv_qty_imunit  = 6.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '900003'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    gwa_item_data-deliv_numb      = '0808000002'.
    gwa_item_data-deliv_item      = '000020'.
    gwa_item_data-dlv_qty         = 10.
    gwa_item_data-dlv_qty_imunit  = 10.
    gwa_item_data-fact_unit_nom   = 1.
    gwa_item_data-fact_unit_denom = 1.
    APPEND gwa_item_data TO git_item_data.
    gwa_item_ctrl-deliv_numb      = '0808000002'.
    gwa_item_ctrl-deliv_item      = '000020'.
    gwa_item_ctrl-chg_delqty      = 'X'.
    APPEND gwa_item_ctrl TO git_item_ctrl.
    BREAK-POINT.
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CONFIRM_DEC'
      EXPORTING
        header_data    = gwa_header_data
        header_control = gwa_header_ctrl
        delivery       = lv_delivery
      TABLES
        item_data      = git_item_data
        item_control   = git_item_ctrl
        return         = git_return.
    BREAK-POINT.
    IF git_return IS INITIAL.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    ENDIF.

  • Output type for Proforma Invoice for return delivery from delivery type RLN

    Client require Output type Proforma Invoice for return delivery to vendor. As such return item category is not relevant for pricing so from delivery to proforma invoice can not have with p-ricing. I got quantity correct but pricing is coming Zero.
    Client have ZPAC as packing list output type from delivery which shows quantity and pricing. So decided to use the same logic to pull pricing for proforma invoice from delivery.
    Here delivery has standard output ZPAC as packing list with access sequence Z002 as Delivery Type.
    I want to pop up output type for all return delivery so using access sequence with delivery type/vendor.
    Vendor filed does not exist in delivery output type so brought that firld LIFNR.
    It is assigned to procedure and maintained ZPRO output type for Proforma invoice. Asigned VV21 on front end.
    Problem Still automatic output type ZPRO is not poping up. What type of access sequence will help me to pop up or what in configuration am I miising?
    Appreciate help for solution at earliest.

    Hi Padamsree,
    I know Pricing & output very well.  I need profomra invoice to be printed with quantity & value for return goods to the vendor. Pricing is associated with Item category RLLN for delivery type RLL which is return type delivery.
    I need to have pricing in my Proforma invoice which is copied from delivery to billing document VTFL. Just check well how it is working in the system & if you know please answer so that it should be workable on the system. As theoretical answer may not be helpful. Appreciate for your time.
    Thanks

  • Credit memo to be created with reference to return delivery

    Dear Gurus,
    We have a requirement for mapping return process
    Credit memo to be created with reference to return delivery (instead of with reference to return order)
    Following issue faced in mapping the same:
    Billing document No. 1234 dated 25.03.2010 where there is 4% VAT.
    when we are creating return order with reference to billing document 1234
    4% VAT is calculated since the Service Rendered date is 25.03.2010 (Copied form Billing document)
    return delivery is created today 08.04.2010. (VAT revised to 5%)
    when credit memo is created with reference to delivery document
    VAT is calculated 5% which is applicable from 01.04.2010
    since the service rendered date is appearing in billing document
    08.04.2010 (the date of Post Goods Receipt).
    The VAT should be actually 4% in Credit Memo.
    regards,
    Rajesh T

    In the copy controls from delivery to Invoice, at the item level try to use pricing type C and Pricing source Blank ( Blank is order).
    If it doesnt work , then you might have to go for a requirement routine for this Tax , based on the document category that is being processed, read the tax from the originating order.Assign the routine to tax condition in the pricing procedure.
    Regards
    Sai

  • Material document posted during PGI for Outbound Delivery

    Dear Experts,
    We have an Outbound Delivery having multiple line items.
    I have a couple of questions.
    1). How may material doc numbers will be generated if I do PGI multiple times?
    2). Can I have 5 different material docs if I post GI 5 times (Per line). Is this scenario possible?
    Your inputs are valuable. Kindly revert
    Thanks,
    Shetty

    Hi Harry
    In my scenario, Outbound delivery having 5 lines.
    I created TO a and confirmed TO for only 2 lines.
    Now when I do PGI for outbound delivery, GI is done for only those 2 lines with confirmed TO
    I will do the rest of GI again
    In this scenario, what will happen? how many material docs are posted?
    Thanks
    Shetty

  • Miro for return delivery mvt 122

    Hi experts
    I m doing miro ( credit memo )  for return delivery with mvt 122.
    in this case it is not bringing the quantity and amount of which i have made the return delivery.
    but it is bringing whole quantity and amount of PO.
    Please help how can i get the amount of return delivery in credit memo automatically.

    hi
    if you have already posted the invoice then dont go by the movement type 122
    the better way is to create an return Po with same vendor and material as before and in ME21N flag on the indicator return at item level.
    Then do the vendor return wrt to the return PO using trax MIGO the system will use the movement type 161 here post the document
    Then go to the MIRO trax and Post the credit memo.
    Award if usefull
    Regards
    Sujoy

  • What is t-code for return delivery to supplier ?

    what is t-code for return delivery to supplier ? I understand it can also be done through MIGO.
    And how can I get delivery number so that I can create invoice to send to vendor.

    Hi,
    If the Recieved material for any reason is rejected and needs to send back to Vendor.
    There is 2 options.
    1) At the time of GR if the material is rejected you can make return delivery in MIGO using Movement type 122 .
    with reference to this 122 document you can send the material back to vendor immidiatly.
    2)If the Material is accepted and Vendor invoice also processed and material is at production then if the material found rejected
    you need to create the Return PO for that vendor.
    Using ME21N enter all the details like Std PO and at item overview you need to select the check box Return.
    So the PO gets created.
    Against this returns PO you need to do the Goods reciept.
    So system will take movement type 161 automatically and your inventory stocks will goes less for that quantity.
    You need to raise the credit memo to debit the Vendor account in MIRO or any other process.
    So that your account also matched with qty & Value
    Then you send the Credit memo details to vendor along with material to the vendor.
    rgds
    Chidanand

  • Different shipping point for returns delivery

    How do i assign a different shipping point for returns delivery when the material was actually shipped from another shipping point?

    Hi Salag,
    As our expert suggested by using 2 shipping point you can create delivery. Delivery will create based on single shipping point.
    In you scenario if you want to ship the return goods with different shipping point then go with new configuration.
    For Normal sales order OR maintain the shipping condition 01 in the respective sales document type OR
    For  returns order maintain the shipping condition 02 in the respective sales document type RE.
    When comes to shipping point determination shipping point will determine based on
       Order:        SC Loading Group Plant -- Proposed S.P -- Manual S.poimt
        OR    :        01 0001AAAA -
    >     XXXX             --- YYYY
        RE     :        020001AAAA -
    >    YYYY
    If you don't want to go with different SC then manually change the Shipping Point in Returns sales order before creating delivery.
    I hope it reaches to ur requirement. revert in case of any query..
    Regards
    Durga Sana

  • Problem with mail for exchange after update on E72...

    Hi everyone,
      I updated Nokia E-mail to ver 3.9 on E72. Now I am facing  a problem with mail for exchange. I have configured gmail on mail for exchange. I recieve a warning that "unable to sync contact administrator if problem persist". It started to pop up just after the update was over and is very frustrating. Even previously i used to recieve mails instantly but now it generally takes half an hour for me to recieve them. I deleted and created mail for exchange several times but to no avail.
    Also i am not able to automatically recieve mails other emails which i have configured. every time I have to manually download them everytime.
    Can anybody suggest a way out.
    Thanks
    Anil

    It could be a problem if you're using your network's connections...
    I was on a Pay & Go tariff with o2 some time ago, and needed secure connections for various things, o2 told me they didn't provide secure connections on Pay & Go tariffs...
    Could be worth checking with them to make sure it's supported.
    Nokia History: 3110, 5110, 7110, 7110, 3510i, 6210, 6310i, 5210, 6100, 6610, 7250, 7250i, 6650, 6230, 6230i, 6260, N70, N70, 5300, N95, N95, E71, E72
    Android History: HTC Desire, SE Xperia Arc, HTC Sensation, Sensation XE, One X+, Google Nexus 5

  • Problem with facetime for mac

    hello guy! I've got a problem with facetime for mac.My sister has a I-pod touch fourth generation with factime but i cna't phone her a message come on my mac.It say "xxx can't receive facetime's calls"!Can you help me??

    Thanks, Dah•veed.
    I did see mention of using Google Public DNS while I was searching the forums prior to posting, but to be honest didn't think it was a DNS-related problem.
    However, to rule it out I've set the prefered DNS servers on my router to Google's, but FaceTime still disconnects after 4-5 seconds when calling between me and my brother-in-law.  It doesn't matter who initiates the call.
    As a test, before I made the changes to my router, I logged into FaceTime as him on my MBP and tried calling myself on my iMac, and that was successful.
    The same test between the two iMacs when they were here was unsuccessful, so now I'm definitely thinking it's something on the '08 iMac.
    Now I just need to figure out what...

Maybe you are looking for

  • Unable to change the item category in existing Scheduling Agreement

    HI, I have a schedule agreement where there are already list of line items but saved without the appropriate item category field in all of the line items. Now I see that the Item category column is greyed out & unable to edit or change thru ME32 T.co

  • HR_MAINTAIN_MASTERDATA issue with PA0171 defaults

    Greetings experts! I'm using HR_MAINTAIN_MASTERDATA to create a participant.  I'm running into trouble with PA0171.  The defaults are not correct and even if I hard-code values into the proposed-values table it ignores them. I thought I'd try just no

  • Apache Web Agent problem (web agent 2.0, Opensso 8.0) with IHS/WAS 6.1

    I installed a apache web agent 2.0 and opensso 8.0 on the same windows server. The web agent is running over IHS server. Opensso is running overs WAS 6.1 While attempting to access an application, after succesful authentification, i got on the web br

  • Java IDE's - Choices, choices, choices.

    Hey, I'm new to java and I hate having to program with notepad. So I got myself a trial version of Borland JBuilder. Boy, was that a bad experience. What I'm looking for is a simple program to help me get started with Java (auto formatting, pretty co

  • I don't know how to put a server name in in order to set up mail

    Aol is what I use for email but when FF asks me to fill in n ingoing & outgoing server, I don't know what I should type. I simply want to email a video and can't seem to access a mail account.