What is a trusted program for document recovery?

Yes, I foolishly trashed and emptied a document - no backup.  I can find the file name in Word but there is no data.  Is there any program to potentially retrieve my work?  Thanks.

First you must stop using your MBP.  When trash is emptied, the data still exists UNTIL it is over written.  Then is IS lost.
There are various options available if you search the Internet .  Here is a comparison of some that are available:
http://mac-data-recovery-software.esoftreviews.com
Ciao.

Similar Messages

  • What's the best program for print? especially for newsletter, flyers, and catalogs?

    what's the best program for print? especially for newsletter,
    flyers, and catalogs? is FH going to be deprecated? thanks,
    bryan

    > what's the best program for print? especially for
    newsletter, flyers, and catalogs? is FH going to be deprecated?
    thanks, bryan
    If you have used FreeHand before it is sill FreeHand of
    course - as long as it works in our OS and there are no new
    features you like to use.
    If you have documents with a lot of text elements and
    multiple pages InDesign may be the second best choice. For
    typography it is the best tool available.
    Illustrator is more for illustrations, although it seems that
    it has good control for type it is clumsy and there are a few major
    bugs that makes it unsuitable for body text.
    Jukka

  • What is the bdc program for vendor master?

    what is the bdc program for vendor master?

    Hi,
    Find the code here.
    And do create your text file data in the order of itab structure.
    {report ZBDC_XK01
           no standard page heading line-size 255.
    data: bdcdata like bdcdata occurs 0 with header line.
    data: begin of itab occurs 0,
    lifnr like lfa1-lifnr,
    bukrs like RF02K-bukrs,
    ekorg like RF02K-ekorg,
    ktokk like RF02K-ktokk,
    anred like lfa1-anred,
    name1 like lfa1-name1,
    sortl like lfa1-sortl,
    land1 like lfa1-land1,
    spras like lfa1-spras,
    waers like lfm1-waers,
    end of itab.
    selection-screen begin of block blk1 with frame.
      parameters: p_file like rlgrap-filename OBLIGATORY.
    selection-screen end of block blk1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      perform f4_help_p_file.
    start-of-selection.
      perform get_data.
      perform upload.
    END-OF-SELECTION.
    *&      Form  f4_help_p_file
          text
    -->  p1        text
    <--  p2        text
    form f4_help_p_file .
    data: v_file like p_file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = v_file.
      CHECK sy-subrc EQ 0.
      p_file = v_file.
    endform.                    " f4_help_p_file
    *&      Form  get_data
          text
    -->  p1        text
    <--  p2        text
    form get_data .
    data: s_file type string.
      s_file = p_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = s_file
        FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
       DAT_MODE                      = 'D'
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      tables
        data_tab                      = itab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    stop.
    ENDIF.
    endform.                    " get_data
    *&      Form  upload
          text
    -->  p1        text
    <--  p2        text
    form upload .
    loop at itab.
    perform bdc_dynpro      using 'SAPMF02K' '0100'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-KTOKK'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'RF02K-LIFNR'  itab-lifnr.
    perform bdc_field       using 'RF02K-BUKRS' '0001'.
    perform bdc_field       using 'RF02K-EKORG'  '1000'.
    perform bdc_field       using 'RF02K-KTOKK' '0001'.
    perform bdc_dynpro      using 'SAPMF02K' '0110'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-SPRAS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'LFA1-ANRED' itab-anred.
    perform bdc_field       using 'LFA1-NAME1' itab-name1.
    perform bdc_field       using 'LFA1-SORTL' itab-sortl.
    perform bdc_field       using 'LFA1-LAND1' itab-land1.
    perform bdc_field       using 'LFA1-SPRAS' itab-spras.
    perform bdc_dynpro      using 'SAPMF02K' '0120'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFA1-KUNNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02K' '0130'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFBK-BANKS(01)'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPMF02K' '0210'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFB1-AKONT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02K' '0215'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFB1-ZTERM'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02K' '0220'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFB5-MAHNA'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_dynpro      using 'SAPMF02K' '0310'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'LFM1-WAERS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'LFM1-WAERS' itab-waers.
    perform bdc_dynpro      using 'SAPMF02K' '0320'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RF02K-LIFNR'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ENTR'.
    perform bdc_dynpro      using 'SAPLSPO1' '0300'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=YES'.
    call transaction 'XK01' using bdcdata mode 'A'.
    refresh bdcdata.
    clear itab.
    endloop.
    endform.                    " upload
    *&      Form  bdc_dynpro
          text
         -->P_0126   text
         -->P_0127   text
    form bdc_dynpro  using   program dynpro.
    clear bdcdata.
      bdcdata-program  = program.
      bdcdata-dynpro   = dynpro.
      bdcdata-dynbegin = 'X'.
      append bdcdata.
    endform.                    " bdc_dynpro
    *&      Form  bdc_field
          text
         -->P_0316   text
         -->P_0317   text
    form bdc_field  using    fnam fval.
    clear bdcdata.
      bdcdata-fnam = fnam.
      bdcdata-fval = fval.
      append bdcdata.
    endform.                    " bdc_field}
    Reward points if you find it helpful
    Thanks,
    Prasanna

  • What is the best program for designing event flyers? I am looking for something basic and simple.

    What is the best program for designing event flyers? I am looking for something basic and simple.

    Poor old Photoshop® is forever being put down when it comes to layout work, but it is perfectly capable, and can output a high quality print PDF the printer will be perfectly happy with.  OK you don't have the text flow between columns bells and whistles of InDesign and [spit] Publisher, but if you have a $10/month Photoshop/Lightroom subscription, instead of the $50/month full subscription, don't think you can't do a perfectly good flyer or poster.
    https://helpx.adobe.com/photoshop/how-to/align-objects-guides.html

  • What is the best program for playing games,dics,3d settings such as "groove setting"

    what is the best program for playing games,dics,3d settings such as "groove setting"?

    Aubry,
    why don't you send your sequences straight to Compressor first, encode your movies as MPEG 2 and AC3 audio and import all assets in DVD studio PRO?
    G.

  • What's the best program for making a header containing rollover navigation links?

    I have all CS4 programs and I'm looking to make a header that contains an interactive rollover nav bar. I want the bar to be located within the header. What is the best program for creating the header and rollover buttons. I'm aware i could manipulate the images in other programs, but placement and rollover button creation is what I'm looking for. Thanks. I'm thinking maybe flash or fireworks?

    Spry can do this for you.  See some samples here:
    http://labs.adobe.com/technologies/spry/samples/menubar/MenuBarSample.html
    Or there are commercially available menu systems from the likes of companies like Project Seven, whom I would personally recommend:
    http://www.projectseven.com/

  • What is a "Load Program" for material master?

    Hi All,
    What is a "Load Program" for the Material master? Is this the Mass Maintainence MM17? Can a Material be extended to all VIEWs + all Plants in one shot via MM17?
    What are the steps using MM17?
    Thanks in advance

    Yes, There is a Program to Upload Material Master Ie : RMDATIND, RMDATGEN
    Using the above Program you can Upload Material Master. And You can Also use Uploading Tools like LSMW / BDC etc.
    MM17 is For MAss Maintenance. Suppose If you want to Update Purchase Group / Purchase Value Key / MRP Controller / Etc... to 1000 Materials Using this MM17 you can Update in Bulk.
    For Extending Views You can Use MM50 with LSMW if Material is Bulk.
    Regards,
    Ashok

  • What's the standard program for smartform : HR_ECM_CRS

    Hi Friends
    what's the standard program for smartform : HR_ECM_CRS?
    <REMOVED BY MODERATOR>
    Regards,
    Sree
    Edited by: Alvaro Tejada Galindo on Feb 21, 2008 4:14 PM

    hi
    good
    check this link, hope this would help you to solve your problem.
    http://saphelpbykevin.blogspot.com/2006/09/compensation-review-statement-confusion.html
    thanks
    mrutyun^

  • What is the best program for panning across an illustration for an App i am working on?

    What is the best program for panning across an illustration for an App i am working on?

    What is the best program for panning across an illustration for an App i am working on?

  • What is the print program for adobe form MEDRUCK_PO, How would I know that?

    Hello All,
    I am new to ADOBE forms and I have a requirement to develop a new Purchase Order Adobe Form . I need to confidure output types too. I am copying 'NEU' to 'ZNEU', and form name 'MEDRUCK_PO' to 'ZMEDRUCK_PO', but what would be the program name and form routine? How would I know the program name and form routine for new output type/form combination.
    Any kind of help is highly appreciated and rewarded.
    Thanks in advance
    Abaper

    I am working on exactly same thing - customizing pdf form MEDRUCK_PO.
    I copied MEDRUCK_PO to Z_MEDRUCK_PO and put my changes into the form.
    You will use transaction SPRO to display the current routine and form and put your changes into effect.
    SPRO-> click tab SAP Reference Image->Material Management->Purchasing->Messages->Forms(Layout Sets) for Messages->Assign Form and Output program for Purchase Order.
    In the Form column change the form name to yours - Z_MEDRUCK_PO for example. You can also change the routine name if you want.
    Take a look at SAPFM06P, specifically at includes FM06PE03 and FM06PE04.
    You will find routines adobe_entry_neu, adobe_entry_mahn and adobe_entry_aufb in FM06PE03. They call routine adobe_print_output located in FM06PE04.

  • What is SAP PACE Program for NetWeaver Solutions

    Hi,
    Can anyone tell me about any details for the "SAP PACE (Pro-Active Customer Engagement) Program for NetWeaver Solutions".
    I want to know, what is this program or product?
    What does it do? is it good to recommend the client for implementing this product?
    Any inputs are highly appreciated.
    Thank you.

    Hi,
    I'm afraid in standard SAP do not have such report.
    As a workaround you could try the following: The correction would consist of the following steps:
    1) remove the link between the budget and the IT0759 in the IMG step "Assign Compensation Review Item Attributes"
    Here you will need to remove the "Budget Type"
    2) Then you should delete the IT0759 records for which the budget was not updated (revert the process completely, this means that if the status of IT0759 is "active" you will need to check IT0008 also)
    3) next step will be to reset the link removed in step 1) betweenthe budget and the IT0759
    4) create new IT0759 records as initially intended
    Please note that you should try this in a test or development system first and check if everything worked well before using it in the production system.
    Hope this help
    Sarah

  • HT1338 what is the best program for printing labels, business cards for a Mac book pro ?

    What is the best program or app for printing lables,business cards etc. for my Mac book pro ?

    I use Pages with the template from the manufacturer of the labels and cards. Works great for me.
    Allan

  • What's best TextExpander program for Mac ID5?

    I have latest Mac Sys. and use ID5  7.0.2.
    I know there’s a program called TextExpander. But, there are complaints about their new ver. 3 that don’t sound good.
    I'm currently using Typinator which I LOVE - and it works great in EVERY program, EXCEPT that just a few days ago it quit working (correctly) in ID. Don’t know if I got some kind of Auto update that conflicted, or what. Just know that it quit working well a week or two ago.
    ALSO - Spell Catcher would NEVER work right in ID5. It, too, always worked good with ALL OTHER programs. So, what’s up with ID5 and spell catching and word expanding? (I'm mainly interested in word expanding).
    Any suggestions for the best word expanding program for ID5? Or, what can I do to make these programs work good in ID5?
    Thank you.
    Jim

    Big Jimm wrote:
    I have latest Mac Sys. and use ID5  7.0.2.
    I know there’s a program called TextExpander. But, there are complaints about their new ver. 3 that don’t sound good.
    I'm currently using Typinator which I LOVE - and it works great in EVERY program, EXCEPT that just a few days ago it quit working (correctly) in ID. Don’t know if I got some kind of Auto update that conflicted, or what. Just know that it quit working well a week or two ago.
    ALSO - Spell Catcher would NEVER work right in ID5. It, too, always worked good with ALL OTHER programs. So, what’s up with ID5 and spell catching and word expanding? (I'm mainly interested in word expanding).
    Any suggestions for the best word expanding program for ID5? Or, what can I do to make these programs work good in ID5?
    Thank you.
    Jim
    I haven't followed the chat on TE 3.x. I'm using 2.8.1 and the main problem I've had in some apps or environments has been the expansion characters getting garbled. I used the option to have the expansion to take place after typing a delimiting character - my delimiters included space, parens, other punctuation - and also retaining the delimiter. When I changed the expansion to take place as soon as the final character of the expansion is typed, it looks like there are no problem areas, except for my having to change my expectation of when the expansion will occur.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • I recently got a MacBook Pro and want to burn my videos taken with my iPhone to DVD. What is the easiest program for me to accomplish this? Help!

    I recently got a MacBook Pro and want to burn my videos, taken with my iPhone, to DVD. What is the easiest way for me to accomplish this? I've been told I need to download a DVD creator/burner. I've downloaded 3 different free versions, but none of them seem to recognize the video files from my iPhone. I don't need anything fancy or complicated. I just want a way to store these vidoes and be able to play them on our DVD player. Help!

    Copy the entire /Music/iTunes/ folder on your PC to /Music/ on your Mac.
    Then delete what you don't want.
    You will need to authorize yrou computer for the iTunes account yoru mother has.
    You should create & use your own iTunes account for any more purchases.
    You don't need to export anything and definitely don't need to (and shouldn't) convert anything.

  • What is the best program for creating cd inserts for coverart of a  CD?

    I am in a band and need to know the best program for cd artwork.

    If you're more concerned about designing them than about printing them yourself (which would cost a comparative fortune using an inkjet printer, and look crummy using a color laser printer), then Photoshop and Illustrator are by far the best design tools available.

Maybe you are looking for