How to view Retrieved file in DMS Archiving.

Dear All,
My client is specific about DIR Archiving. Now the scenario is DIR has been marked for Deletion and archived and Stored in a repository successfully. After Archiving DIR has been deleted from the Database.
Now using SARA Transaction using "Storage System" archived file has been Retrived and File name has been created in Archive Administration. System is displaying File name, Logical path and Physical File name. Below Physical File name it is showing "Archive File is accessable".
When I check using T-code CV02N Nothing is Displayed.
Please guide me how to see the Retrived File. My client wants to see the DIR with attched originals.
Please let me know if any configuration is required.
with regards,
S.Dayanand

HI Dayanand,
Execute SARA transaction. You can set a deletion flag for document info records that you no longer require for managing
documents and their original application files. Archiving object CV_DVS enables you to archive these document info records. After the archiving run, you can delete the archived document info records.
The document info records that you archive and delete with archiving object CV_DVS are
identified by the following data:
Document,Document type,Document part, Version
Follow the steps
1. Goto DIR which u want to archive and set them deletion indicator On from document tab
2.Go to transaction CVAR and create Varient for DMS.
3. Select the selected Varient
4. Click on Start date
5. slect the start time for writing,You can choose immediate or schedule later also
6. Select spool parameters, give output device and press procced, now archiving job wil be scheduled
7. Now u can check scheduled job by clicking Shift + F4 in same transaction
8. Select the job & click on Joblog
9. Note down The archiveing session no. is 0000xxx
10. Now execute transaction CVRE and enter read program as DVSARCH3 and execute
11.Provide the archiving session Number 0000xxx and execute u get archived document list.
12. For deleting archived documents execute CVLO transaction, Select the archived file
13. Select the No 0000xxx. & click on Continue
14. Select the start date,You can choose immediate or schedule later also
15. Enter spool parameter and execute
16. Now deleting job will be scheduled,
17. Check the DIR in CV02n, u wont get those archived DIRs
Hope this will solve your query
Regards
Kannan

Similar Messages

  • How to view pdf file in java/jsp?

    Hello Everybody,
    Any one help me how to view pdf file in jsp using java application.
    I have pdf file c:\app.pdf.
    How can i display the pdf file.
    Please help me.................
    Thanks

    Hello,
    You can use the below code, but i am not sure how far is this a startard way of doing it.
    # <%
    # ServletOutputStream servletOutputStream = response.getOutputStream();
    # File reportFile = new File("C:\\Tomcat 5.0\\webapps\\TestApp\\myfile.pdf");
    # FileInputStream fis = new FileInputStream(reportFile);
    # byte[] bytes= new byte[128000];
    # int count=fis.read(bytes);
    # try
    # response.setContentType("application/pdf");
    # response.setContentLength(bytes.length);
    # servletOutputStream.write(bytes, 0, bytes.length);
    # servletOutputStream.flush();
    # servletOutputStream.close();
    # }catch(Exception e){}

  • HOW TO VIEW HIDDEN FILES?????

    i have searched for days on my computer for some hint a program or option that allows me to view any hidden files in an application folder, but it has yet eluded me.
    I am having trouble with a program of mine, and the tech service there told me to send them the programs log file, which they named. i looked in the applications folder, and the only files i saw was the program icon, and the uninstall folder, which contained the uninstall icon. i told them this, and they replied:
    "i'am sure that these files are on your computer. Maybe they are invisible.
    Please search (automatic) the folder ".********" ."
    if anyone knows, eitehr what this means, or how to view hidden files, please let me know
    Thanx

    To see inside an application package select the application then CTRL- or RIGHT-click and select Show package contents from the contextual menu. You can navigate through the application package's content. It's unlikely you will find anything useful there.
    To see invisible files open the Terminal application in your Utilities folder and at the command line prompt enter or paste the following command then press RETURN:
    defaults write com.apple.finder AppleShowAllFiles TRUE
    To turn off the display of invisible files substitute FALSE for TRUE in the same command line.
    Invisible files are invisible for a reason - to hide them from the prying eyes of novice users and ignorant tech support people. Perhaps it would be more helpful if you could detail the problem you are having.

  • How to View/manage Files on Internal Storage?

    Does anyone know how to view/manage files on the Droid Mini? I did find a list of 'Misc. Files' in 'Settings' under 'Storage'. But it only gives the option to delete. My old phone had a 'Files' app (that came on the phone) where I could view/manage all files. I'm sure I could just plug into my laptop, but I would like to have file access on my phone. Is that even possible? Is there a *good* App I could upload perhaps? Any suggestions?
    Thanks =)

    The Play Store. Search for "File Explorer". Select one from the several found.

  • How to view  .mov files on a pc?

    how to view  .mov files on a pc?

    Thank you for your prompt responses. Thought this was the correct answer. Didn't want to pass on incorrect information.
    Thanks

  • How to view .shtml files locally? I have added "Open in Browser" but still not able to see the local .shtml file.

    I have added Open in browser add ons in Firefox browser, but still not able to see the .shtml files on local machine.
    Can any one please tell me how to view .shtml files in Firefox?

    SHTML files are regular HTML files that make use of Server-Side Includes. In some server configurations, the special file extension is required to instruct the server to parse the file for SSI code.
    If Firefox doesn't recognize the file type, it is likely the MIME type is incorrect.
    Try this Addons
    *https://addons.mozilla.org/en-US/firefox/addon/open-in-browser/

  • How to view pst file without Microsoft Outlook?

    How to view pst file without Microsoft Outlook? Please suggest viewer for content of corrupted PST files.

    Hi,
    If the .pst file is corrupted, I suggest you run Scanpst.exe to repair it:
    http://support.microsoft.com/kb/272227
    If you need to view .pst file without Outlook, we may use some 3rd-party tools, there are a lot on Internet.
    Regards,
    Melon Chen
    TechNet Community Support

  • Kindly help me how to view html file in swing using jbutton

    hello..im a begginer at j2se language and im working on my school project..kindly help me how to view html files by clicking button at javax.swing..thanks

    Here you go:public class HTMLViewer implements Runnable, ActionListener
         public void run() {
              JFrame frame = new JFrame("View HTML");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JButton button = new JButton("Click me!");
              button.addActionListener(this);
              Container cp = frame.getContentPane();
              cp.add(button, BorderLayout.CENTER);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setVisible(true);
         public void actionPerformed(ActionEvent e) {
              if (Desktop.isDesktopSupported()) {
                   Desktop d = Desktop.getDesktop();
                   try {
                        d.browse(new URI("www.google.com"));
                   } catch (IOException ex) {
                        ex.printStackTrace();
                   } catch (URISyntaxException ex) {
                        ex.printStackTrace();
         public static void main(String[] args) {
              EventQueue.invokeLater(new HTMLViewer());
    }If that's not what you're looking for you need to ask more specific questions.

  • Can someone give me step by step directions on how to view temporary files on an ipad2?  Thank you.  Carla

    Can someone please give me step by step directions on how to view temporary files on an iPad 2.. Thank you

    What temporary files are you talking about?

  • How do I retrieve files from a backup hard drive (was backed up using Time Machine) on a different computer

    how do I retrieve files from a backup hard drive (was backed up using Time Machine) on a different computer?

    Please visit Pondini's Time Machine FAQ for help with all things Time Machine.

  • How to view .vmsg file format of backed up SMS dat...

    Hello Champs,
    How to view .vmsg file, which is backup of SMS from Transfer my data.
    I want to view in any PC.
    Regards, Siraj.

    Hi, siraj720. You can open the .vmsg file using a text editor app on your PC. You may click here for more info. The link is intended for the US, but it's still applicable regardless of the location. 

  • How do i retrieve file not found music

    how do i retrieve file not found music

    According to your post, you're using Leopard, so FileVault only encrypts your user folder (unlike Lion). On the mounted external drive, in your user folder, you should see a file called username.sparsebundle, with username being your user name. Double-click that file to open it and it should prompt you for a password. Type in your password and the file will mount as a volume in Finder. You should be able to copy all of your files over.

  • How to view cc files on a computer that only has photoshop cs6

    I have the new version of photoshop on my computer that only allows me to save files as: photoshop cc.  However, I would like to transfer these files to view on a computer, which is at school, that only allows me to view files from photoshop cs6 or older (cs4, etc.).  I would like to work on projects on my personal computer at home and finish them on the computer at school.  So, how can see my files that are in creative cloud on a computer that only has photoshop cs6?

    Need a little more information.  Never heard of a Photoshop cc file, maybe I'm missing something.  When you save a file the first time there is a drop down menu allowing you to save the photo as a number of different file extensions, i.e.. PSD, tiff, jpeg.  There is no photoshop cc.  File uploaded to your folder on the cloud retain their extensions.

  • If my ipad data/files are backup in icloud, how do I retrieve files from icloud?

    If my ipad files/data are backup or stored in icloud, how do I retrieve feiles from icloud?

    Restore from iCloud Backup (see #10)
    1. Erase all contents and settings
    2. You'll be asked twice to confirm
    3. You'll see Apple logo and progress bar
    4. You'll see a big iPad logo on screen
    5. Configuration start
    6. Set language
    7. Set country
    8. Enable Location Service
    9. Select network, enter password and join network
    10. You'll be given 3 options (a) Setup as New iPad (b) Restore from iCloud Backup (c) Restore from iTune Backup
    11. Selected Restore from iCloud Backup
    12. You'll be required to enter Apple ID and Password
    13. Agree to Terms and Conditions
    14. Select Backup file
    15. You'll see progress bar
    16. Red slider will appear; slide to unlock; step #1 to #16 is fast
    17. Pre-installed apps will be restored first
    18. Message: Purchased apps and media will now be automatically downloaded
    19. You'll see a pageful of apps with Waiting/Loading/Installing
    20. Message: Some apps cannot be downloaded, please sync with computer
    Note: This restore from iCloud backup was performed with IOS 5.1.1
    Message was edited by: Diavonex

  • How to view .flv files?

    How view flv files in nokia 5233?
    Moderator's Note: We have moved your post and changed the title into a subject-related title. This is to keep the forum organized and let other forum users easily see and respond to this post.

    the only way really to view .flv files on older Symbian 5th edition devices was thru baseline updates to the built-in video player (in many cases, RealPlayer). this was achieved only thru ensuring that you had the latest firmware installed on your device, via checking via Nokia Suite on your PC.

Maybe you are looking for

  • ORA-06550: line 5, column 57: PLS-00103: Encountered the symbol "F01_" when

    Hello, I wanted to use the APEX_ITEM.DISPLAY_AND_SAVE Here is my query: DECLARE QUERY VARCHAR2 (2000); BEGIN QUERY := 'SELECT ' ||'APEX_ITEM.DISPLAY_AND_SAVE(1,REGISTRATION_ID,'f01_'||ROWNUM, NULL) REGISTRATION_ID, ' ||'APEX_ITEM.DISPLAY_AND_SAVE(2,S

  • Error during "duplicate target ... from active database"

    hi: RMAN duplicate failure after the auxiliary instance mounted,we want to create a physical standby database . Platform: solaris10 spark 64bit Version: 11.2.0.1.5 (both primary and standby) thank you.. RMAN log: rman target sys/password@his_primary

  • [SOLVED]Errors? on startx

    I normally do my login at tty and then issue the startx command. When I hit Ctrl + Alt + F1 to see the vc/1, it has a bunch of things listed xauth : creating new authority file /home/inxsible/.serverauth.xxxx X.Ord X Server 1.4.2 Release Date: 11 Jun

  • IPhoto library. How does it work ?

    Hi there. I am new to the whole iPhoto thing. But I went out and bought the iLife 08 and for me it just rocks. Everything I need to do.. It´s there. Great. But I can´t really figure out how the iPhoto library work !?... Normaly I just had all my pict

  • No authorization to purchase from product category X

    Hello, when I click on shop and select the product (relicated from BE), while adding this item to SC got the error 'No authorization to purchase from product category xxx', but for the same material and product category I can create a free form SC or