Deleting the delivery number

hi
  some body deleted the delivery no. that delivery number has been updated to which  table tell me.let me know immediately. that deleted delivery number goes to which table.

I've had this problem in the past.
Deliveries once deleted are completed removed from LIKP/LIPS.
I've implemented in the past, using SAVE DOCUMENT PREPARE user exit (at the time no BADI was available), I updated z Z table everytime XLIKP-updkz = 'D'.
This way you will have a Z table with the deliveries delete, so you can store additional information like user, date and time.
It should do it. Just remember: DO NOT FORCE A COMMIT at that user exit... no explicit DB commits are allowed.
Leonardo De Araujo.

Similar Messages

  • How to delete a delivery number/note

    Hi All
    How to delete a delivery number/note
    Thanks for the help
    Rajendra Prasad

    Hello,
    Start with checking the document flow. If the invoice has already been generated to that specific delivery you need to cancel the invoice before you delete the outbound delivery.
    Step 1: T Code VF11 helps you to cancel billing document.
    Step 2: Then use T Code VL09 and reverse the goods movement by entering the values in the fields. Once you reverse the documents then you can delete the outbound delivery in VL02N under menu bar Outbound Delivery u2013 Delete.
    Step 3: If PGI has not done you can cancel the outbound delivery by editing the picking quantity to zero. If Warehouse Management installed then you can cancel all the transfer orders before you delete the outbound delivery.
    If invoice has not created and PGI done then proceed with
    step 2.
    If  PGI has not done and Picking completed then proceed with step 3.
    Regards,
    Vamsi

  • How to delete the Request Number

    Hi all,
                 How to delete the Requset Number in Development Client.Already i transported this Req. Number to Tesing Client.

    For what purpose, deleting the request number won't restore your dev system. You can remove the request from the import queues via transaction STMS to insure it will not be accidentally imported.
    You can usually only destroy a request in source system if it has not been released and all objects are unlocked, but this is risky in some cases and may cause a loss of information or coherence.
    Regards

  • Table in which if I put the delivery number ..I should get the HEADER TEXT

    Dear Members,
    I am checking for a table in which if I put the delivery number ..I should get the HEADER TEXT. Does such table exists or a Z report shoudl be created for this kind of setup.
    Regards,

    Hi,
    There are two Tables in which the texts will be stored
    One is STXH -
    TEXT HEADER
    other   STXL------- TEXT ITEM
    If you want to get the Header text then input the values in the table
    In STXH
    TEXT OBJECT     is    VBBK
    TEXT NAME      is      DELIVERY NUMBER
    TEXT ID             is       ZS01  ( this is the standard ID for the  Header note 1 )
    Now goto SE37 and give the Function Module READ_TEXT and maintain all the above details and get the TDLINE Which contains the TEXT of the Delivery
    regards,
    santosh

  • 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

  • TPSDLS idoc to be triggered only when deleting the delivery

    Hi,
    We have a requirement: We should be trigerring the TPSDLS idoc only when deleting the delivery in SAP. Currently, we generate the TPSDLS idoc when creating and deleting the delivery.
    The Changes we tried did not help us in anyway.As we are seeing deliveries created with no-output type linked to them and when deleting them, does not provide any TPSDLS idoc.Not sure, how deliveries are created without any output type assocaited to them and what could solve them.
    Any help would be appreciated.
    Thanking You,
    Anish Asokan

    a

  • How to get the delivery number for the sales order

    hi
    how to get the delivery number for the sales order

    Hi,
    1. IN VA03, enter the sales order and click on the document flow button. From there you can check the delivery document.
    2. In SE11, enter VBFA(Document flow) table and enter the sales order in VBELV field and in VBTYP_N field enter 'J' to specify that you want to check if there is already a delivery document for that sales order.
    Hope it helps...
    P.S. Please award points if it helps...

  • Deleting the personal number

    Hi Experts,
    I am trying to delete the Personal number of having Infotype 9001.When i tried to delete in PU00 tcode it is not able to delete the infotype can any one help for this solution.How to delete the infotype.This is urgent.

    You can delete the infotype from PA30. The only thing is u need to check if the time constraint for infotype is 1, then you need to change is for moment and delete the records. Once you deleted, you set it back to as original.
    BTW i am not sure why you are not able to delete it directly from PU00. May i know what is the error you are getting in that.
    Edited by: Praveen Tiwari on Aug 25, 2011 12:48 PM

  • HT5661 I sold my iphone and the new owner is trying to register it under his apple account. How do I delete the serial number from mine?

    I sold my iphone and the new owner is trying to register it under his apple account. How do I delete the serial number from mine?

    https://register.apple.com

  • Saving Delivery text without the delivery number

    Hi,
    during delivery creation I need to create a standard item text. I did this using SAVE_TEXT in userexit_save_document and it works fine on the central system. But, the delivery is replicated to our decentral system and the text value is not there. The reason it fails is that the function SHP_BAPI_DELIVERY_REPLICA is called before the COMMIT so the new text is not saved yet.
    I cannot find any userexit before the SHP_BAPI_DELIVERY_REPLICA where the delivery number exists - the number is '$        1'. 
    So...._is it possible to create a text where the delivery number is not generated yet?_
    This is what I have tried with VBELN = '$        1'  and  'XXXXXXXXXX':
            CONCATENATE lips-vbeln lips-posnr INTO l_textname.
            l_headertext-tdobject = l_stxh-tdobject.
            l_headertext-tdname   = l_textname.
            l_headertext-tdid     = l_stxh-tdid.
            l_headertext-tdspras  = l_stxh-tdspras.
            CALL FUNCTION 'SAVE_TEXT'
                 EXPORTING
                      header          = l_headertext
                      savemode_direct = 'X'
                 TABLES
                      lines           = lx_lines
                 EXCEPTIONS
                      id              = 1
                      language        = 2
                      name            = 3
                      object          = 4
                      OTHERS          = 5.
    Any ideas?
    Thanks.

    Hi,
    Try calling the function module SAVE_TEXT with parameter
    insert  = 'X'
    fin orm routine 'USEREXIT_SAVE_DOCUMENT_PREPARE" ,user exit 'MV50AFZ1'.
    Regards
    Vinod

  • How to look as to who has deleted the Delivery note

    Hi
    I have a issue from one of my customers who mentioned in his problem that he needs to find out as to who has deleted a Delivery note. He has mentioned the Delivery note number.
    I have tried looking at SM21 & tables CDHDR and CDPOS but I could not find. I tried to simulate the similar issue in my development environment by deleting one of the deliveries and checking in Transaction SM21if it displays my name, but it did not.
    Please help me in this issue or at least let me know how to approach this problem.
    Thanks

    Hi,
    You can find the Information from the CDHDR table
    Goto the table in SE16 and ehter the details for the table like
    OBJECT CLASS   As   LIEFERUNG
    OBJECT ID    As   DELIVERY DOCUMENT NUMBER ( It should be 10 digits)
    Now execute.
    It will all the information on who deleted.
    regards,
    santosh

  • My daughter has and ipod touch with free texting I would like to delete it and open a new app for her with a new number..I deleted the old number and when we downloaded the new app it gave her the same number how can I change text

    My daughter has an ipod touch with free texting, she received an inappropriate mssg and I would like to delete it and download it again to receive a new number. when I download the new app it gives her the same number?  can i do this?

    Have you tried the developer's support web site?  Withut you providing the name of the app makes it very hard for us to give specific recommendations.  The only one that i can thin of is to purchase the app using a diffeent iTunes account.

  • Deleting the personnel number.

    Hi,
      I have created the personnel numbers from the T.code PA40.
      This i have done in the development (TEST Client).
      Know i dont want that personnel, so i want to delete that personnel numbers wht is the way for deleting the personnel no. And in future i can create that personnel numbers. please help me out

    Hi Manoj,
    U must have created few infotype records using PA40 (Personnel Actions) as well.
    Know u have to delete individual infotype record using PA30 (Maintain HR Master data). run PA30 --> type the pernr u want to delete. know delete the record. do this for all the infotype entries that u have created using PA40 for this pernr.
    Hope it helps
    Regards
    Dev

  • How to get the Material-Document-Number wie the delivery-Number+Position???

    Hi,
    we want to connect mseg and likp+lips.
    But therefore we need the Material-Document-number concerning this
    delivery and in likp+lips isn't a Material-Document-Number!
    Could anybody help me to connect likp+lips with mseg!

    ok, NICE!!! But how should I get with these information a unique Material-Document-Number for a delivery+deliveryposition?

  • How do I group delete the large number of duplicate songs I have accumulated?

    I have accumulated a large number of duplicate songs (1600+) due to several passes at restoring data to my itunes library.
    Is there a way to delete all but a single version of the files that show up when I click on "show duplicates"?

    Hey applejcn,
    I'd read over this article, it'll go over how to use the Show Duplicates feature in order to remove those 1600 duplicates from your library:
    How to find and remove duplicate items in your iTunes library
    http://support.apple.com/kb/ht2905
    Cheers,
    David

Maybe you are looking for

  • 10.2.8/Shuffle/USB 1.1 Issues

    -450 Sage iMac -USB 1.1 -OS X 10.2.8 -iTunes 6.0 Just purchased a 1G Shuffle for my daughter's Xmas gift. The manual stated that my Sage 450 or iTunes 6.0 will not recognize the iPod through the USB 1.1 port. It stated I need to have at least 10.3.6

  • JVN invokcation Problem in Solaris 10

    Hi, I am invoking JVM from executable(exp: Sample). To invoke JVM from executable, I am invoking as follows, 1) pszJvm_path = "/usr/jdk/jdk1.5.0_11/jre/lib/sparc/client/libjvm.so" ( Java is installed "/usr/jdk/" ) 2) g_handle_open = dlopen(pszJvm_pat

  • BED,ECS and SECess value not defaulted in J1IS for return purchase order.

    1)I have created return purchase orde for an excisable material. 2) In the purchase order i am able to view the BED,ECS and SEcess values. 3) I have created MIGO, for the return purchase order with excise as part 1 only. 4) While doing J1is or the 16

  • First digit disappears

    I am facing a peculiar situtation in our multiple forms application. The situation is like this- In form A I have a text field named TEXT1 with data type as number.I navigate from form A to Form B and perform some update in Form B. After this I come

  • Hi, i am new to PDF forms & need to make drop down menu with pictures, how do i do that ?

    Hi, i am new to PDF forms & need to make drop down menu with pictures, how do i do that ? some one suggested to use coding to achieve similar results,  but i don't know where and how to use it, please help!