File deleted from Kpro

Experts, I have  LOIO ID and PHIO ID's for documents which are checked in and stored in KPro. I am unable to open the original files from SAP.
How can I find where these files are available in Kpro. Appreciate your responses.

Hi,
on possible check to see if the files are still on the content server would be to use report DMS_KPRO_READ for the affected document info record. This report reads the original file data and in its result you will find also a small green download button.
This button will do a download directly from the content server to your local PC. If this fails it seems that the file cannot be found on the content server.
Best regards,
Christoph

Similar Messages

  • How do i recover a file deleted from iCloud on my iPad

    how do i recover a file deleted from iCloud on my iPad? It's a pages document

    check at https://www.icloud.com/ to see if the file is saved there in documents or iCloud drive
    if not check under settings > iCloud > storage > manage storage and see if there is a backup of the iPad from when the document was still saved
    if there is restoring your iPad form that backup may recover it
    Restore your device from an iCloud or iTunes backup - Apple Support
    if there is not then check to see if it is still saved on any other computers or devices to see if it is saved there
    good luck

  • Files "Deleted from Disk" not deleted

    I was under the impression that this problem related to the appearance of "Ghost" drives (duplicate drives appearing in the LR after I edited a file. The folder duplications are no longer a problem in LR 2.1
    HOWEVER, when I use the option "delete from disk" (vs. remove)these files are not getting deleted from my hard drive. They reappear on the next folder synchronization I run.
    I am either asking for input on how to make deletions stick and/or requesting that Adobe look into this before releasing the release version of 2.1
    Thanks - Kevin
    System info:
    LR 2.1
    Windows Vista Home Premium
    Quad Core PC with 4GB RAM
    1 TB "RAID 5" system drives (4 of them make up the 1 TB)

    Thanks for the suggestions but they didn't work:
    1- Cleared preferences by hitting the various reset to factory buttons. Then closed and restarted LR. Is there another way to do this?
    2- The foloder quantity goes down when I delete and goes back up when I synchronize
    3- File manager shows the same number of files as LR BEFORE I delete and then shows more AFTER I delete. Then, after synchronizing they are back to equal.
    Finally, I tried deleting a file in windows explorer to see its effect. It immediately showed as missing in LR. I synchronized and that file was deleted.
    Any other ideas?

  • Is there a way to recover files deleted from a time machine backup

    My time machine backup drive was full so I wanted to delete some of the Virtual Machine files created with VMWare Fusion from the time machine backup.  I accidentally deleted them all, instead of just some older ones, so I want to know if there's a way to recover or salvage the files I deleted from time machine.

    If is possible do you have a Time Machine backup, What type of files are missing?

  • Is there a way to recover files deleted from icloud?

    I inadvertently deleted a Pages document from my iPhone and it has disappeared from my iPad and iCloud.  Is there any way to recover it?

    Deleting won't make the files erased permanently.As long as those files are not overwritten by new data, it's highly possible to recover them.Those deleted files is still stored on the hard drive, it's just invisible or inaccessible.And the most effective
    way is to rely on some data recovery programs.
    Try this one called Tenorshare Data Recovery. I also encountered the same trouble before.Finally this program helped me recover the file I accidentally deleted from the recycle bin successfully.
    One tip here:Your files will be recovered into the recycle bin.So you'd better not to delete any other files into the recycle bin.Once the deleted files were overwritten by new deleted files,they are all historys!
    You can get it from:  http://www.any-data-recovery.com/product/index.htm

  • Excel file deletes from Shared location

    While accessing an excel file from a shared location, if the file hangs during opening or saving and if I go to Task Manager and end the EXCEL process, the file gets permanently deleted from its location.
    I have faced this issue multiple times. What should I do to avoid this?

    Hi
    This is the forum to discuss questions about Microsoft Excel develop. For your question is not about Excel develop, I recommend post
    the question to the TechNet forum for Excel
    https://social.technet.microsoft.com/Forums/office/en-US/home?forum=excel
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners
    who read the forums regularly can either share their knowledge or learn from your interaction with us.
    Thank you for your understanding.
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can i find an excel file deleted from the server

    In our office we all have access to the main server. Recently a document that we need was deleted from the server. It's not in the trash. Can and how would we be able to find and recover this deleted document? Specifically I am looking for an excel document, and I already checked the recent docs on excel.
    thanks!

    Have the admin for the server restore the file from the backup

  • Specific Files Deleted from All Time Machine Backups

    Greetings all!
    I hope you may be able to solve my problem here. Today I purchased a new late-2013 iMac 3.2 GHz i5, running OSX 10.9.3. I've had several computers this year and chose not to restore from my many backups, but rather transferred all documents, data, settings, etc. from my latest backup (completed today, which I know had all the original files) via Migration Assistant. Upon completion, I noticed that many of my folders and files were missing! My first response was to simply check my month-long list of backups for those specific folders and they were all missing as well. This came as quite a scare, as I run a design business and this is my main backup. Note: these are not files that would be on the list that Time Machine skips over; they're just my regular files (docs, pics, pdfs, etc.).
    Now, in a few of the backups, in my User folder, there are more folders than others, along with a few seemingly random files (i.e. company A -> contracts -> onlyme.pdf), but the rest of the files are missing! Some backups include the main Music, Pictures, Documents, etc. and some only include a few. I've verified and repaired the disk, but this only made more files vanish from the backups! I have hidden files visible, which also has not helped. Is there something I'm missing? Disk permissions on Disk Utility are greyed out and I don't know of any other options. Can anyone advise? Are these files simply lost forever?
    Thanks in advance!
    Tim

    If repairing the volume caused more files to disappear, then the drive is malfunctioning and must be replaced. That's why one backup is not enough to be safe. You need at least two independent backups on different storage devices.

  • FILE DELETE FROM FOLDER

    HI ALL,
    I AM USING THIS METHD FOR DELETING THE FILE FROM THE
    FOLDER  BUT I DONT KNOW WHAT VALUE SHULD I PASS TO THE RC.
    CALL METHOD cl_gui_frontend_services=>file_delete
      EXPORTING
        filename             = 'E:\FOLDER1\TEST1.XLS'
      changing
        rc                   =
    THANKS AND REGARDS,
    SUGEET.

    Hi,
    You should declare a local variable of TYPE I and pass it to RC. RC is nothing but a return code set by system upon successful deletion or otherwise of the file that you have specified for filename.
    Some thing like the following,
    DATA: lv_subrc TYPE i.
    CALL METHOD cl_gui_frontend_services=>file_delete
    EXPORTING
    filename = 'E:FOLDER1TEST1.XLS'
    changing
    rc = lv_subrc.
    IF lv_subrc NE 0.
    ****Deletion failed..
    ENDIF.
    Hope this helps..
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • File deleted from /oracle/ZPQ/sapdata2/undo_1

    Hi,
    I have deleted the undo.data1 from the path /oracle/ZPQ/sapdata2/undo_1.
    However, we created a new tablespace and some losses were covered.
    But, now we are not able to create project from the DTR. Whenever we try to do so, an error is shown 'internal VFS error' and a project is created with some changes lost in the code.
    In the DTR logs, some statement is there like ' not able to locate undo.data1 file '.
    it seems af if both the DTR and CBS have gone out of sync and we are also not able to create a new track with the latest backup of .sca Software Components.
    Please advise how to handle this situation.
    Regards,
    Nikhil

    resolved

  • File Deletion from PL/SQL using Java

    I'm able to delete a file on the OS from PL/SQL by calling a java class. But there is a problem if I am trying to delete any file located on any machine othere than the one on which the Database is hosted.
    Can anyone tell me how delete a file which is on anothere machin using PL/SQL with Java ?

    You can use a FTP Call: http://www.savarese.org/oro/software/NetComponents.html

  • File deleted from file manager

    By mistake I deleted a file from phone memory in the file manager. Is to important to have all the orgianal files in the file manager or do I reload the software. What do I do. i have a E 7.

    Is this a personal data file you deleted (e.g. a text file, picture, etc.) or just some random Nokia file?  If it's the latter, do you remember the name or location of the file?  (Nokia's File Manager gives you access to only a small subset of the data on the phone, making it generally very safe.)  If your phone still works normally, I wouldn't worry about the loss.  I have never used an E7, but the phone memory on my E73 contains only a few log files and remnants of system .sis files that my phone will never miss.
    If you've accidentally deleted a personal file from the phone memory and don't have a backup, then you may be out of luck.  I am not aware of a "file undelete" utility for Nokia phones.
    Hope that helps!

  • Music files deleted from Memory Card..(5800XM)

    Hi..
    I have a Nokia 5800 XpressMusic. Music files used to get deleted earlier automatically from the music player, but this problem stopped for a while. The other day, I transferred about 20 songs to my phone via Mass Storage mode through my PC. After a couple of days, all those 20 songs are missing from my music player. They've disappeared from the Memory Card as well, leaving behind only the folder in which they were.
    Please help. This is REALLY annoying. 

      Yes, may be you are right. Something was wrong with my memory card and i figured out this morning. its an 8gb card out of which my personal data was about 4 gb. yet i could see that almost 7gb was used and only about  0.5gb was free. what i did was that i pulled all my data out of the  mem card and found that still 3gb was used up. hmmm...this was very weird. Not too sure but i guess it may be occupied by .arc files which are created when i do backup on the memory card. This was leaving very little space on my mem card , so whenever new data was added to the card, it was flushing out some existing data randomly (which is actually very sick!). 
    So, i removed all my personal data from card and then formatted it. Now my card is clean and has lot of free space. Hopefully the problem won't repeat anymore.
    Its actually quite annoying that data is deleted randomly without prompting that disk has run out space. quite weird actually.
    List of Nokia phones I've used: 3310, 3315, 3200, 6600,3250, N73 ME, N95 8GB, 5800 XpressMusic and Nokia X6 16 GB (currently using this).

  • Is it possible to download files (deleted from my computer) by going to my download history, and doing something with that?

    I'm trying to recover a file from my computer. I downloaded some important work files off of an email and then idiotically deleted the email. I had them up until recently, but then my son deleted them (he's five and likes to play around with things). I know that Firefox has a download history, but is it possible to use that information to actually download the files again?

    Download history usually will have the link back to the original source location. Assuming that still exists, it's worth a try. When you right-click (Ctrl+click) an item, the small context menu should let you copy the URL of the original source, which you then can paste into the address bar to fetch it again. If the original download required you to be logged in to the source site, you should log in again first to increase your odds of getting the download.

  • Music files deleted from hard drive and iTunes library

    Often, after iTunes software updates, I find that some of my music files that have been uploaded from cds are completely erased from my music library and from my external hard drive, where I keep all my music. I always make sure I turn on the external drive before opening iTunes, and I quit iTunes before turning off the external drive.
    So why is my music disappearing?! Where does it go? This has been a problem for a long time and I can't find any solutions online. Please help! Thank you!

    When you have the unit in the dock, anytime you sync, you have to make sure that it will sync again to the folder. If it isn't set to sync the same folder where you had the music sync before, it'll delete the file.
    That's just the way it's set up. So you have be conscious of it.

Maybe you are looking for

  • Document relates to CO

    MODERATOR: Do not post your email address or links to copyrighted information on these forums. If you do, the thread will be LOCKED and all points UNASSIGNED. If you have some information, please consider posting it to the Wiki rather than sharing vi

  • New Cinemagraph 3.5.4.10 saves as JPG, not GIF any...

    Hi everyone, especially Lumia users Have you install the new version of Cinemagraph? Last days I read news on WPCentral, said that Cinemagraph bumped to the new version with 720p animations capabilities. Well, it's a good news after all, so I updated

  • Changing the page margins when printing

    I have searched this forum and have not found an answer. I am trying to print my resume, which is a web page, to a PDF. The default makes the page margins too narrow for my taste but no matter what I do, I cannot seem to change it. I tried to define

  • [svn:fx-] 21428: Removed flex/sdk/trunk

    Revision: 21428 Revision: 21428 Author:   [email protected] Date:     2011-06-21 08:34:23 -0700 (Tue, 21 Jun 2011) Log Message: Removed flex/sdk/trunk Removed Paths:     flex/sdk/trunk/

  • Tabbed Panels: load tab content Ajax style

    What changes need to be made to load the content of each panel only when the corresponding tab has been clicked? I want each panel to contain several images, but don't want to load all of the images when the page loads.