Find deleted sales order

hi all
can any one help me finding out the deleted sales order
what is the process for it.
thanks
sridhar

HI,
Try FTWB or SARA.
or
after deliting sales order its gone out of database, then also you can see the change history of who deleted the order and when. To do this (I'm on 3.1I), go to Sales Order --> Display --> put the number in and go to Environment --> Changes. Then Green check and it will tell you the history.
After the record (order) gets deleted from the database, to get a list of records deleted you will need to run a report (user defined), with the query for VBAK table, for order type and the missing numbers. The date may also be required. Once you get this, you can find out when and who changed (deleted) the documents.

Similar Messages

  • Finding Deleted Sales Orders

    Hi,
    Is it possible to find a deleted sales order in SAP?
    Thanks,
    Malini.

    Individually
    Even though the sales order is gone from the database, you can still see the change history of who deleted the order and when. ?To do this?go to Sales Order> Display>put the number in and go to Environment>Changes ?- then check and it will tell you the history. Hope this helps somewhat!
    As a List
    Though Sales orders are Deleted, they will be available in Change document tables CDHDR for header changes and CDPOS for item changes . Changes includes deletion also.
    So run a Logic based on these two tables.
    You shud get a report of all deleted sales order.
    Use the report in the following link to base your logic.
    http://www.sap-img.com/ab024.htm
    Hope this Helps
    VB

  • How to find out the deleted sales order

    hi,
    sap gurus,
    my core user has deleted one sales order
    its showing as sales order is ARCHIVED in the status when we go for VA02
    in SAP in which table the deleted sales order will be stored.
    so that i can
    regards,
    balaji.t

    Plz SEARCH in SCN before posting.
    You can get those details from CDHDR, CDPOS tables.
    Give OBJECTCLAS = VERKBELEG and CHNGIND = 'D' in CDPOS table.
    You will the List of all Deleted Sales Orders.

  • List of deleted sales orders

    How can we find the list of deleted sales order documents.
    Is there any specific table.

    hi,
    SE16--> CDPOS->enter Object class : VERKBELEG    table name: VBAK     & enter change id:D---> keep the max no of hits  has blank----> execute
    this is give u teh details
    regards,
    Arun prasad
    Message was edited by:
            arun prasad

  • Deleted Sales Order

    I would like to understand the possibility of looking the details abt a sales order that got deleted from the SAP system.
    I believe tables VBAK and Changes related tables will not help me out to find the same information as the deletion of the order will have the data deleted from these tables are there any other means by which i can get info on a deleted sales order .
    Thanks in Advance.
    Ilango

    this is not a process followed, but i just want to know if there are by any means we can see the line item level details (like material & Qty).
    CDPOS do provide information on the order but am unable to interpret the data i receive,
    passed the deleted order no, to the table and i could see only the values that got changed i can still see the information abt VBEP(sch line ) & VBAP. am unable to see the document details. i feel it shows only those fields that are changed inside the order before deletion, i cud see a document in the output of this table, wat is that document no.??

  • Retrieve deleted sales order

    Hi Everybody,
    Is there any way to find the date the sales order is deleted and who deleted it?
    Srinivasan Kannan.

    Hi Srinivas
    The following steps given will  give you all  the informatio you need.   I have tested the same here and it works.
    Regards
    Yatin Thakkar
    Re: Retrieve deleted sales order  
    Posted: Sep 10, 2009 4:00 PM    in response to: cheenu           Reply 
    Hi,
    Can you try step 1 with VA03. Dont hit enter button, just go to menu Environment ->changes.
    Regards

  • Deletion sales order

    Goodafternoon gurus:
    I have a sales order done in 02/02/2007, which is delivered and billed to.ooo...
    Can I delete that total sales order with delivery and billing?
    I have to do cancel billing, reverse goods, and then cancel delivery...etc...right???
    My client says he does not want it..how to delete that...nothing should be updated...the system should not find that sales order to billing doc again...
    Please tell me the steps how to do it..

    Hello,
    You will not be able to delete a sales order, unless the subsequent documents are cancelled. In your case you can cancel the invoice with transaction VF11, reverse the goods issue by transaction VL09, delete the delivery by VL02N, then as per your requirement delete the sales order by VA02.
    Prase

  • Deleted Sales Orders

    Hi,
        Business needs to get the data back for all the deleted sales orders for a period. Is there any way these data can be retrieved. When I put the sales orders number system says "Sales Document XYZ is not in the database or has been archived".
      Your views are much appreciated.
    Regards
    Raj

    Hi,
    There is only one option available by which you can track changes done for a particular sales order which has been deleted.
    thru VA02, go to an existing Sales order, click on tab ENVironment, changes.
    Here, you will find, the existing sales order number. Delete this number and enter the number of the sales order that was deleted & for whose details you intend to RETRIVE.
    You will get a change LOG, which will give u complete details of the changes done for that Sales order.
    Reward points if found useful.
    Regards,
    C. Ramakrishna

  • Log for deleted sales order

    Hi Gurus,
    Problem is: Some one has deleted some sales order from the system.
    Now we need to know who has deleted the sales order, can any one tell me how to find out the log for deleted sales order.
    Thanks,
    Abhishek.

    Hi,
    Check report RVSCD100.
    Thanks,
    Raja

  • Can i get my deleted sales order back

    Dear SAP Gurus,
    I need some information about deleted sales orders like the sales order value, sales quantity, customer material.  I am only able to find some information like sales order number, User ID but not other information like Sales order value, quantity, customer code and material code. Kindly help me how and where can i get these information.
    Thanks
    Tripathi

    hi ,
    Check this LINK
    Re : deleted sales order
    regards
    Deepak.

  • Report on deleted sales orders ( va02)

    hi,
    i got one requirement to write a program to display the list of deleted sales orders (through VA02 Tcode).
    to my knowledge when a sales order is deleted through VA02 the order will be deleted from the database itself and will be deleted from all the SAP tables.
    if that is correct, is there any possibility that we can create a Ztable and update the data before deletion or any other solution for the above requirement?
    thanks in advance,
    Rajani yeluri

    hi rajani,
    u will get deleted data from using tables CDHDR,CDPOS,CDRED and function module '  CHANGEDOCUMENT_READ'.
    i am sending u some sample code, i hope it will helps u
    DATA: it_editpos    LIKE cdred OCCURS 0 WITH HEADER LINE,
                                     "Change documents, display structure
          it_editpos1   LIKE cdred OCCURS 0 WITH HEADER LINE,
                                     "Change documents, display structure
          x_editpos1    LIKE cdred,  "Change documents, display structure
            x_editpos     LIKE it_editpos,
                                     "Change documents,display structure
    *-----Calling FM to populate the structure 'EDITPOS'
      CLEAR it_editpos.
      CALL FUNCTION 'CHANGEDOCUMENT_READ'
           EXPORTING
              objectclass                = ' ' 
           TABLES
                editpos                    = it_editpos
           EXCEPTIONS
                no_position_found          = 1
                wrong_access_to_archive    = 2
                time_zone_conversion_error = 3
                OTHERS                     = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      CLEAR: x_editpos,
             it_editpos1.
      LOOP AT it_editpos
        INTO  x_editpos
        WHERE tcode = 'ME21N' OR  "Here u have 2 pass 'VA02'
              tcode = 'ME22N' OR
              tcode = 'ME23N'.
        APPEND x_editpos TO it_editpos1.
        CLEAR x_editpos.
      ENDLOOP.
    now it_edipos1 has all CHANGENR numbers, so now u have to fetch data from F_NEW and F_OLD Fields
    i hope this will helps u
    Regards,
    prasad

  • How to find open sales orders.

    Hi Gurus,
    Can you please help me out How to find open Sales orders in SAP.
    Is there any transaction code available or we can get it through via tables.
    Your afforts are highly appriciated .
    SRavani.

    Dear SRAVANI,
    You can find open sales orders from the Transaction code "VA05N", You just run this report, Below the screen you can find open sales orders radio button , you select this and give execution parameters and execute(F8).
    You will get the all open orders.
    Hope it fixes your issue.
    Please check it and revert.
    Thanks&Regards
    Raghu.k

  • Reg:Deleting sales orders in bulk

    Hi Gurus,
    Can anybody through some light on the below mentioned queries.I faced this in one of my interviews .
    1.How to delete sales orders in bulk ?
    2.How to print invoices in bulk ?
    Thanking you in advance.
    With Regards,
    Sash......

    Dear sash
    1) To delete sale orders in bulk (subject to no subsequent documents), either you can use LSMW or BDC
    2) To print invoices in bulk, two options are there.  One is foreground and another one is background
    - To schedule foreground, run T.Code VF31
    - To schedule background, run T.Code VF06 where you can see a tab [Job started on]   If you fix a date and time here, that time, invoice will be printed out in mass
    thanks
    G. Lakshmipathi

  • How to view the cancelled/deleted sales order?

    Hi SAP Gurus
    I there any T.code/Table to view the cancelled or deleted sales order.
    I am not able to view the order even in VA03.
    Regards
    Giridhar

    Dear Sushmitha,
    T. Code: SE16
    Key-in -
    Table: CDHDR - Change Document Header.
    Table: CDPOS - Change Document Items.
    and "Enter". On to next page, Key-in
    Field: Change doc. object (OBJECTCLAS) as VERKBELEG
    Field: Transaction Code as VA02
    Field: Appl.obj.change, as D - Delete, and execute (F8).
    Then you will get object values (sales orders) and document numbers. Pass these two values along with objectclas: VERKBELEG) to table CDPOS to get more details about these deleted orders.
    Also, Go to -
    T. Code: SE38,
    and execute Report: RVSCD100.
    Enter Sales Document Number and Execute. This will provide information, who deleted the order.
    Best Regards,
    Amit

  • Information about the deleted sales order line item in idoc.

    Hi Experts,
    I am new to IDOC.We have the following idoc requirement,
    When a line item is deleted from the sales order(VA02) ,
    the outbound idoc getting triggered for the sales order has the information about the rest all line items other than the deleted line item.We now want the information about the deleted line item in the Idoc .
    Please help me in proceeding further.

    Hi,
    I am facing the same scenario of capturing the  deleted sales order line item in idoc.
    I am using ORDRSP message type , where in E1EDP01- ACTION contains value  "000" .
    And the Deletion line item is not been captured, is there any configuration setting required to
    capture the deleted line item in Idoc.
    Based on the posting in this thread i understand that there is an  indicator which has to be set .
    Please let me know what is that indicator and how to set it?
    Thanks
    Sathish

Maybe you are looking for

  • How to remove empty line in BW after data load

    Hello Experts, From standard SAP contents, I am loading Master Data (E-Recruiting) from R3 to BW. The thing is after loading to BW when I check the data, maximum of the MD tables shows all the data but first line is blank. Sometime it shows only date

  • After effects crashing after enabling 3D switch

    Hi All, I am running the latest CC suite and updated after effects a few days ago. I have now tried to do some simple 3D text by extruding them. Using the ray traced renderer and as soon as I click the switch for enable 3D on the text layer it crashe

  • Powerbook wont boot

    Hi - I recently purchased a used 12" powerbook (877:40:10.3) and within 2 days of use, when starting up, the apple will appear along with the 'timer' and it will continue to spin until out of battery (i.e. hours) without booting up (or going to the d

  • FCP Crashes when adding a Master Template

    Hi, I'm pretty new using fcp7, only been learning for about 2 months. I'm trying to use any Master Template but fcp crashes before it loads them. The program works fine while doing any other editing or bringing filters and transitions. Does anyone ha

  • C++ Executables

    Sorry for my ignorance if I am missing something obvious but I just can't get my code to run. If someone could give me simple steps to do the following: Open up a project in which I can build and run a C++ file that will do a simple cout