Cancel the delivery with HU

Hi All,
please help me in canceling of outbound delivery:
This is the document flow:
1) I have Sale order
2) I have outbound delivery
3) TO created
4) Handling unit
5) GD goods issue : delivery
6) invoice
7) Accounting document.
8) credit meno request
9) credit memo
10) accounting document
user unable to reverse the doc in VL09
please help the process how to reverse the doc.....

Hi,
you need cancel all the documents created before Goods Issue, then can do reversal using VL09.
Cancel the billing doucments also then try goods movement reversal .
Hope this will help you.
Rgds,
Kris.

Similar Messages

  • System allow to cancel the delivery with cancel the Billilng Doc

    Dear Guru's,
                           System allow to cancel delivery Doc & Reverse PGI  Before Cancel The Billing Document ,How to Control It P;ease Quide me.
    Regards.
    Sundhar.U

    i think it may happened if your item category is order related billing not delivery related billing
    in VOV7 check that the Billing Relevance in your item category is "A"

  • How to cancel the delivery number in the billing due list

    Hi Gurus,
    My User has created the Consignment Fillup order and Dlivery for that order.
    Now User asking that the delivery number coming into Billing Due list (VF04).
    As you know all for Consignment Fillup there is no invoice. Please suggest me
    how to cancel the Delivery number in Billing Due list for above scenario.
    Br,
    Satish

    What you have faced is not at all an issue.  Its a standard behaviour only.  Though you are not generating commercial invoice here, you can generate (F8) proforma via VF04 in bulk.  Either you can generate one proforma per delivery or consolidate multiple deliveries into one proforma which it depends on VTFL copy control for the field Data VBRK/VBRP.   There if you maintain 001 or 007, you can club multiple deveries and if you maintain 003, one proforma per delivery can be created.
    thanks
    G. Lakshmipathi

  • Can I cancel the contract with AT&T immediately after I purchased a refurbished ipad mini 2?

    Hello, I was a student in the US and I am exchanging to Europe for one year now.  I would like to buy a refurnished Ipad mini 2 with AT&T for my study in Europe, which means I don’t need to use AT&T in the next year.
    http://store.apple.com/us/product/FF066LL/A/refurbished-ipad-mini-2-wi-fi-cellul ar-for-att-16gb-space-gray
    It shows we can cancel the contract with out penalty on Apple website. However, I still have some questions:
    1. How to cancel the AT&T contract, if I am not in the US already.
    2. It is supposed can be use for other carrier in Europe, right? (Unlocked/ international)
    Is there anyone can solve my problem? Thank you so much!

    I am in Europe at this moment.
    If I just get a unlocked and without contract ipad mini that would be handy for me:)
    But the name of the product is "
    Refurbished iPad mini 2 Wi-Fi + Cellular for AT&T 16GB - Space Gray".
    I heard that the refurbished products do not under any contract....it was under AT&T before.
    Is it right?
    "Cellular for AT&T" confused me ;$

  • Can we create cancellation/return delivery with BAPI_CONFEC_CREATE

    hi experts,
    i want to use the above BAPI to create cancellations and return deliveries in SRM 7. i am not able to figure out the exact data that needs to be passed to the BAPI to create cancellation/return delivery. i have used class approach to do the same and able to create them, but i am specifically interested in FM/BAPI
    does anybody used this BAPI to create cancellations?
    thanks

    hi,
    i could not make this BAPI work for cancellations but found another way of doing confirmations and cancellations using std FMs
    here is the code for confirmation
    CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
       EXPORTING
         I_OBJECT_ID                      = is_conf_header-po_number
         I_WITH_ITEMDATA                  = 'X'
       IMPORTING
         E_HEADER                         = ls_header
         ET_ATTACH                        = lt_attach
       TABLES
         E_ITEM                           = lt_item
         E_ACCOUNT                        = lt_account
         E_PARTNER                        = lt_partner
         E_LONGTEXT                       = lt_longtext
         E_ORGDATA                        = lt_orgdata
         E_TAX                            = lt_tax
         move-corresponding ls_header to ls_new_header.
    ls_new_header-process_type = 'CONF'.
    ls_new_header-subtype = 'CF'.
    ls_new_header-src_object_type = 'BUS2201'.
    ls_new_header-src_guid = ls_header-guid.
    clear ls_new_header-object_id.
    loop at lt_item into ls_item.
      read table it_conf_items into ls_conf_items with key po_item_number = ls_item-number_int.
    if sy-subrc ne 0.
      continue.
      endif.
      move-corresponding ls_item to ls_new_item.
      ls_new_item-src_object_type = 'BUS2201001'.
      ls_new_item-src_guid = ls_item-guid.
      ls_new_item-final_entry = ls_conf_items-final_entry.
      ls_new_item-quantity = ls_conf_items-quantity.
      append ls_new_item to lt_new_item.
      endloop.
    loop at lt_partner into ls_partner.
       move-corresponding ls_partner to ls_new_partner.
       append ls_new_partner to lt_new_partner.
       endloop.
       loop at lt_orgdata into ls_orgdata.
         move-corresponding ls_orgdata to ls_new_orgdata.
         append ls_new_orgdata to lt_new_orgdata.
         endloop.
    loop at lt_account into ls_account.
       move-corresponding ls_account to ls_new_account.
       append ls_new_account to lt_new_account.
       endloop.
    lv_src_guid = ls_header-guid.       .
    CALL FUNCTION 'BBP_PD_CONF_CREATE'
    EXPORTING
      I_SAVE                           =  'X'
       I_HEADER                         = ls_new_header
       I_SRC_GUID                       = lv_src_guid
       IT_ATTACH                        = lt_new_attach
    IMPORTING
       E_HEADER                         = ls_e_header
       ET_ATTACH                        = lt_e_attach
      TABLES
      I_ITEM                           = lt_new_item
       I_PARTNER                        = lt_new_partner
       I_ORGDATA                        = lt_new_orgdata
       E_ITEM                           = lt_e_item
       E_ACCOUNT                        = lt_e_account
       E_PARTNER                        = lt_e_partner
       E_ORGDATA                        =  lt_e_orgdata
        e_messages                       = lt_new_message
    et_msg[] = lt_new_message[].
    ls_conf_documents-doc_number = ls_e_header-object_id.
    append ls_conf_documents to et_conf_documents.
    CALL FUNCTION 'BBP_PD_CONF_SAVE'
    EXPORTING
        IV_USERTYPE               = 'X'
       IV_HEADER_GUID            = ls_e_header-guid
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT
    code for cancellation
    get all the confirmations created for the PO
        CALL FUNCTION 'BBP_PD_CONF_GETLIST'
          EXPORTING
            i_for_po_id = is_conf_header-po_number
          TABLES
            e_pdlist    = lt_pdlist
            e_messages  = lt_msgs.
    delete GRS which are cancelled
        LOOP AT lt_pdlist INTO ls_pdlist WHERE subtype EQ 'CA'.
          DELETE lt_pdlist WHERE guid = ls_pdlist-src_guid.
        ENDLOOP.
    delete the cancelllation documents. we don't need them anymore
        DELETE lt_pdlist WHERE subtype EQ 'CA'.
        loop at lt_pdlist into ls_pdlist.
          CALL FUNCTION 'BBP_PD_CONF_GETDETAIL'
           EXPORTING
              I_GUID                           =  ls_pdlist-guid
              I_WITH_ITEMDATA                  = 'X'
          IMPORTING
             E_HEADER                         =  ls_conf_hdr
           TABLES
             E_ITEM                           =  lt_con_items
             E_PARTNER                        =  lt_con_partner
    move-corresponding ls_conf_hdr to ls_new_header.
    ls_new_header-process_type = 'CONF'.
    ls_new_header-subtype = 'CA'.
    ls_new_header-src_object_type = 'BUS2203'.
    ls_new_header-src_guid = ls_conf_hdr-guid.
    clear ls_new_header-object_id.
    loop at lt_con_items into ls_con_items.
      move-corresponding ls_con_items to ls_new_item.
      ls_new_item-src_object_type = 'BUS2203001'.
      ls_new_item-src_guid = ls_con_items-guid.
      append ls_new_item to lt_new_item.
      endloop.
    loop at lt_con_partner into ls_con_partner.
       move-corresponding ls_con_partner to ls_new_partner.
       append ls_new_partner to lt_new_partner.
       endloop.
          lv_src_guid = ls_conf_hdr-guid.
    after that call BBP_PD_CONF_CREATE as we did for the confirmation followed by BBP_PD_CONF_SAVE and commit work.
    Edited by: SRM7CON on Mar 7, 2012 12:04 PM
    Edited by: SRM7CON on Mar 7, 2012 12:25 PM

  • Cancel the Invoice with Combination of 2 orders

    Hi Gurus,
    Two sale orders were combined and invoice is generated based on the orders.
    So here in this scenario, we have two sale order numbers (one item in each order)
    and one invoice.
    My query is, is there any way to cancel the one item in the invoice I,e when we cancel the invoice we have to give the invoice number with this entire 2 orders will get cancelled, but here I need to cancel the only one order ,I one item in the invoice how to do this oneu2026u2026u2026.pls suggestu2026u2026.waiting for ur qucik replyu2026.
    Thnks in advance
    Mahendar.

    Hi
    It is not possible. You need to cancel full invoice and need to generate 2 seperate invoice.
    Else you can pass accounting entry in FI directly to nullify the effect or atjust through Debit Memo request.
    Regards
    Vijay

  • System allow to cancel the delivery  before  cancel the Billilng Doc

    Dear Guru's,
    System allow to cancel delivery Doc & Reverse PGI Before Cancel The Billing Document ,How to Control It P;ease Quide me.
    Regards.
    Rishaban.U

    i think it may happened if your item category is order related billing not delivery related billing
    check your item category in VOV7 ... check that the Billing Relevance is "A"
    hope it may help

  • Cancel the supmission with eurpsport

    How do I cancel my submission with eurosport player.

    There are instructions on this page for managing and stopping auto-renewing subscriptions : http://support.apple.com/kb/HT4098

  • I've cancelled the product with 1 months notice, system locked me out...

    I still have 3 weeks notice left on my subscription yet your system will not give me access.  I've tried now 3 times and never have time to follow up, perhaps you would like to refund me last months subscription...
    One of the reasons I cancelled was because your administration and support is so rubbish I have been unable to resolve the issue that stopped me using your product.

    Hi thewitchx1000,
    I'm so sorry that you're having trouble both using and canceling your subscription. If there's something that I can do to help here to get things working, I would be happy to.
    Do you get an error message when you try to log on? Let me know if I can help.
    Or, if you'd like to talk to somebody about a refund, please schedule a callback or initiate a chat session with Adobe Customer Care. Here is the contact information: http://helpx.adobe.com/contact.html?step=ACOM_membership-account-payment_stillNeedHelp. The contact options are listed at the bottom of the page.
    Best,
    Sara

  • How to cancel the connection with my HK BDS?

    Apperently my Harman Kardon BDS wants to connett my MackBook almost 30 times an hour. This is very anoying and I want to cancel this. Please help!!

    Your iPhone 4 should already be internet ready and you shouldn't need a dongle to use the phone. Depending on who you have your service with this is how they make there money by you using the Internet.. If I may suggest lookinto one of the plans that offers UNLIMITED Call, Text, Data, and everything else the phone is capable of for under $50.00 American there are several out there that offer this plan. T Mobile, Net10 just to name a couple. If your intent is to use a phone that has the capability but is not set up it is cheaper and less headaches in other ways.

  • Cancel the Confirmation with CN29

    Hi All,
    I have a activity with confirmed with the statsu of CONF. Now i need to concel the confirmation. Iam trying in CN29. But it is not turning back. Please guide for the solution.
    Thanks in Advance.

    in sap it will not turn back but post a reversal entry
    is settlement done? if yes you need to reverse settlement first then reverse confirmation

  • ITunes cancels the syncing with my iPhone.

    Okay this has bothered me since last month. When I try to sync my music, it will sync half of the songs, then will stop around the middle of them. It's so frustrating, I don't even know why. I have an iPhone 4S and it is up to date, as well as iTunes on my MacBook. I've looked for this problem on internet but I can't seem to find a proper solution for my problem. Can Apple do something for this? Seriously, it's the stupidiest problem I've ever had, if it has to do with iTunes or the last iOS update, PLEASE FIX IT.

    I'm having this problem as well.  iTunes will not finish syncing my phone.  It's been frozen with the status bar spinning.  I've rebooted both my mac and iPhone 4S to no avail.  I've checked and unchecked manual manage and that hasn't worked either.  This is incredibly frustrating.  Any help or suggestions that would resolve the issue would be very much appreciated.

  • Reversal of delivery with handling unit management/HU #

    Hello all,
    I would like to know whether the delivery with handling unit management is reversed using LTOG. if it is reversed using LTOG in which storage type would the stock be posted back and would the packaging material of the handling unit be the same when the delivery is canceled and posted back in stock. pl. advise.
    Thanks,
    Maxx

    Hi Ramana,
    Thanks for your reply.
    in your answer you have said  it is not possible to reverse a TO with HU.
    But is it possible to reverse a delivery where the HUs are created only after packing the delivery items. if it is possible then how the packaging materials in the handling unit that are reversed are handled and where are the stocks that are returned after the delivery is cancelled is posted - i would like to know the standard sap storage type in which the stocks are posted once the delivery is cancelled or reversed.
    Thanks,
    Maxx

  • Changing the Delivery

    Hi..
    if we create a delivery for a sales order and also do the PGI, can i go back and correct the quantity later or do i need to cancel the delivery and then re-post with correct units?
    Also, can you please tell me the transactions/steps to change / cancel the delivery?
    E..g: If you have an order for 50 units, and you created a delivery/ PGI  for 45 units and later can we go back and change the quantity to 50 units with out cancelling the delivery/PGI? If not, what is the standard way to handle this issue?
    Also, what is the back order processing? Can it be used in these scenarios?

    Hi,
    If you have an order for 50 units, and you created a delivery/ PGI for 45 units and later can we go back and change the quantity to 50 units with out cancelling the delivery/PGI? If not, what is the standard way to handle this issue?
    There are two ways
    A. If you want the goods to go in the same delivery, reverse (VL09) the existing delivery and change the delivery quantity as required and do PGI
    B. If the goods can go in a different delivery, creata a new delivery with the remaining goods and do PGI.
    And if the invoice has alreday been created , Cancel invoice (Vf11/Vf02) -- VL09 -- VL02 -- VF01.
    In the second case you can club both the deliveries into a single invoice.
    Backorders
    Orders for which goods are still pending to be shipped, this occurs when the quantity is insufficent.

  • Reverse/Cancel Outbound Delivery and Billing documents

    Hi all,
    My question is...How do you reverse/ Cancel Outbound delivery and billing documents and what will be the reversals in  Accounting document and how are they updated.
    Regards

    Hi,
    If billed delivery is to be reversed,  Then
    1. First cancel the billing with transaction code vf11
    2.Then reverse the PGI with the transaction code VL09
    3.Cancel or delete the Delivery in vl02n
    4.Delete the sales order.
    Accounting entries will be reversed by cancellation of the invoice and material movement will get reversed after doing VL09.
    Reward points if it is helpful

Maybe you are looking for

  • Can one computer have two iTunes accounts?

    I'd like to be able to plug and play my iPod on my girlfriends computer (and I'd like to get my library on here as well so I can get all my music off of my poor little laptop). I'm really not sure what version of Nano I have, all I know is that it's

  • Zen Images (Windows Vista - System error: 30)

    I am having problem with making an image of Windows vista dell laptop. I was trying to make image from Zen work disk and USB flash drive. It's giving me an error message System error: 30. Please help to resolve this issue so i take image of new compu

  • I had an addon that displayed RSS ticker in status bar. Now status bar is gone, how to I get an rss ticker?

    I had an addon that used the status bar to display information (RSS ticker). Now I upgraded firefox, status bar is gone and my addon doesn't work. I installed the status-4-ever addon that was recommended in one of the firefox pages but it doesn't wor

  • RE 2 bent machines

    I replaced mb, testing it first out of case, just psu 1cpu, 1 stick of mem and graphic card, powered up right away, and no probs at that point. tested old board 3 beeps, and no function. Sooooooooooo. Here is where i stand, new mb almost works flawle

  • Mapping Problem. Do I need a UDF?

    Hello, I have the following scenario. Source File <ORDER>   <ITEMS>     <ITEM>        <NUM>10</NUM>        <CONDITIONS>          <CONDITION>             <TYPE>T1</TYPE>             <VALUE>V1</VALUE>           </CONDITION>          <CONDITION>