Error in unix System

I written a program to read the pdf file using Mulivalent.jar...
The program is well executed in windows....
When i run the same program in unix(Server)unser headless mode It will give the result like
Exception in thread "main" java.lang.ExceptionInInitializerError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:217)
at multivalent.Behavior.getInstance(Behavior.java:192)
at multivalent.std.adaptor.pdf.FontPDF.createFont(FontPDF.java:357)
at multivalent.std.adaptor.pdf.FontPDF.<init>(FontPDF.java:109)
at multivalent.std.adaptor.pdf.FontPDF.create(FontPDF.java:96)
at multivalent.std.adaptor.pdf.PDFReader.getFont(PDFReader.java:2303)
at multivalent.std.adaptor.pdf.PDF.buildStream(PDF.java:966)
at multivalent.std.adaptor.pdf.PDF.buildPage(PDF.java:331)
at multivalent.std.adaptor.pdf.PDF.parse(PDF.java:1818)
at extract1.extract(extract1.java:83)
at extract1.main(extract1.java:136)
Caused by: java.awt.HeadlessException
at sun.awt.HeadlessToolkit.getScreenResolution(HeadlessToolkit.java:184)
at tex.dvi.DVI.<clinit>(DVI.java:112)
... 12 more
is there anybody know the results plz inform me...
thanx a lot

Where fonts are involved (as in PDF), Unix often requires the X-Windows to be running. That might not be the case for a webserver unix box.
Other than that I've got no idea.

Similar Messages

  • ABAP to FTP connect to non SAP UNIX system

    Greetings~
    I'm looking for a way (via function modules and/or BAPI) to transfer data in flat files from an SAP UNIX system to a non-SAP UNIX system using an ABAP program. I see FM's FTP_CONNECT and FTP_COMMAND however these seem to only work with UNIX systems running SAP as they require RFC_DESTINATION information. Anybody know which (if any) FM's can be used without the necessity of the target system running SAP/RFC?
    Thanks!

    Hi Joseph,
    Please refer the below program.
    REPORT  ZHR_T777A_FEED.
    tables: t777a.                        "Building Addresses
    Internal Table for  Building table.
    data: begin of it_t777a occurs 0,
            build like t777a-build,       "Building
            stext like t777a-stext,       "Object Name
            cname like t777a-cname,       "Address Supplement (c/o)
            ort01 like t777a-ort01,       "City
            pstlz like t777a-pstlz,       "Postal Code
            regio like t777a-regio,       "Region (State, Province, County)
          end of it_t777a.
    Internal Table for taking all fields of the above table in one line
    separated by ‘|’(pipe).
    data: begin of it_text occurs 0,
          text(131),
          end of it_text.
    Constants: c_key  type i value 26101957,
               c_dest   type rfcdes-rfcdest value 'SAPFTPA'.
    data: g_dhdl type i,      "Handle
          g_dlen type i,      "pass word length
          g_dpwd(30).         "For storing password
    Selection Screen Starts
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE TEXT-001.
    parameters: p_user(30) default 'XXXXXXX'          obligatory,
                p_pwd(30)  default 'XXXXXXX'          obligatory,
                p_host(64) default 'XXX.XXX.XX.XXX'   obligatory.
    SELECTION-SCREEN END OF BLOCK blk1.
    SELECTION-SCREEN BEGIN OF BLOCK blk2 WITH FRAME TITLE TEXT-002.
    parameters: p_file like rlgrap-filename default 't777a_feed.txt'.
    SELECTION-SCREEN END OF BLOCK blk2.
    Password not visible.
    at Selection-screen output.
      loop at screen.
        if screen-name = 'P_PWD'.
          screen-invisible = '1'.
          modify screen.
        endif.
      endloop.
    g_dpwd  = p_pwd.
    Start of selection
    start-of-selection.
    To fetch the data records from the table T777A.
      select build stext cname ort01 pstlz regio
             from t777a
             into table it_t777a.
    Sort the internal table by build.
      if not it_t777a[] is initial.
        sort it_t777a by build.
      endif.
    Concatenate all the fields of above internal table records in one line
    separated by ‘|’(pipe).
      loop at it_t777a.
        concatenate it_t777a-build it_t777a-stext it_t777a-cname
                    it_t777a-ort01 it_t777a-pstlz it_t777a-regio
                    into it_text-text separated by '|'.
        append it_text.
        clear it_text.
      endloop.
    To get the length of the password.
      g_dlen = strlen( g_dpwd ).
    Below Function module is used to Encrypt the Password.
      CALL FUNCTION 'HTTP_SCRAMBLE'
        EXPORTING
          SOURCE      = g_dpwd          "Actual password
          SOURCELEN   = g_dlen
          KEY         = c_key
        IMPORTING
          DESTINATION = g_dpwd.         "Encyrpted Password
    *Connects to the FTP Server as specified by user.
      Call function 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          text = 'Connecting to FTP Server'.
    Below function module is used to connect the FTP Server.
    It Accepts only Encrypted Passwords.
    This Function module will provide a handle to perform different
    operations on the FTP Server via FTP Commands.
      call function 'FTP_CONNECT'
        EXPORTING
          user            = p_user
          password        = g_dpwd
          host            = p_host
          rfc_destination = c_dest
        IMPORTING
          handle          = g_dhdl
         EXCEPTIONS
            NOT_CONNECTED.
      if sy-subrc ne 0.
        format color col_negative.
        write:/ 'Error in Connection'.
      else.
        write:/ 'FTP Connection is opened '.
      endif.
    **Transferring the data from internal table to FTP Server.
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          HANDLE         = g_dhdl
          FNAME          = p_file
          CHARACTER_MODE = 'X'
        TABLES
          TEXT           = it_text
        EXCEPTIONS
          TCPIP_ERROR    = 1
          COMMAND_ERROR  = 2
          DATA_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.
      ELSE.
        write:/ 'File has created on FTP Server'.
      ENDIF.
    Call function 'SAPGUI_PROGRESS_INDICATOR'
        EXPORTING
          text = 'File has created on FTP Server'.
    To Disconnect the FTP Server.
      CALL FUNCTION 'FTP_DISCONNECT'
        EXPORTING
          HANDLE = g_dhdl.
    To Disconnect the Destination.
      CALL FUNCTION 'RFC_CONNECTION_CLOSE'
        EXPORTING
          destination = c_dest
        EXCEPTIONS
          others      = 1.
    Regards,
    Kumar Bandanadham.

  • Boot up - Error Message: "File System not clean"

    <blockquote>Locked by Moderator as a duplicate/re-post.
    Please continue the discussion in this thread: [tiki-view_forum_thread.php?locale=en-US&comments_parentId=667528&forumId=1]
    Thanks - c</blockquote>
    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    At start up displays error message: File System not Clean"
    == start up computer
    ==
    == Troubleshooting information
    ==
    WebOfTrust, AdBlock Plus 1.2, Ubuntu Firefox Modifications 0.7, Firefox Universal Uploader (fireuploader) 0.4.1, Foxytunes 4.0.6
    == Firefox version
    ==
    3.0.19
    == Operating system
    ==
    Linux
    == User Agent
    ==
    Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.19) Gecko/2010040116 Ubuntu/9.04 (jaunty) Firefox/3.0.19 GTB7.0
    == Plugins installed
    ==
    *-The default plugin handles plugin data for mimetypes and extensions that are not specified and facilitates downloading of new plugins.
    *The demo print plugin for unix.
    *Shockwave Flash 10.0 r45
    *DivX Web Player version 1.4.0.233
    *The Totem 2.26.1 plugin handles video and audio streams.

    http://ubuntuforums.org/

  • How to import .tdms file to Matlab running in Unix system?

    I was using DAQmx to acquire 16 channels of sampled data to .tdms format and later on will need to import the data to a Matlab programme. My question is, the Matlab we have is installed in a Unix system. But the tdms to Matlab example given in NI website, as in the link below, has problem when i run it in Unix system.
    http://digital.ni.com/public.nsf/websearch/0EEADA9​9DC7D00A4862572E30037C3A2?opendocument&Submitted&&​...
    Errors occurred in the "loadlibrary" function. I was told that in Unix system, a different file instead of .dll file shall be used?
    Can anyone make an example to read tdms data,  that will work in a Matlab installed in Unix system?

    I have plenty of experience working in LabVIEW and with TDMS however very little in using it in other software. I have downloaded the example code on this end but since I don't have your software installed on my machine, there is not a ton I can do in walking you through it. However, I understand this is a very helpful newsgroup for that environment.
    Since you said you modified the header, to make sure everything is in line prior to entering other program, this is a good resource on the TDMS file structure.
    Logan H
    National Instruments
    Applications Engineer

  • Can use STSongStd-Light-Acro.otf font in unix system(aix)

    In unix system (aix 5.3)
    as 10.1.2
    NLS_LANG=AMERICAN_AMERICA.ZHS16GBK (chinese charater)
    Now run report, output charaters is not right,why?
    In windows system,I modify uifont.ali file,as the follow
    [ PDF ]
    .....ZHS16GBK = "STSongStd-Light-Acro"
    and the report run well,but the same config in unix system (aix 5.3),output charaters is error.
    why?
    Can anyone tell me step by step?
    Thanks in advance!

    Welcome to OTN
    Check the two link..
    1. Re: Oracle Reports 10g Fonts issue
    2. Re: Adding new font to my Reports Setup
    Hope this will help you
    Hamid
    If someone's response is helpful or correct, please mark it accordingly.

  • New to the Unix system

    Hello all, now that I know the hardware aspects of the mac I thought it's about time I learned the Unix system. I really only know DOS commands, windows, and anything else dealing with the Windows system. I'm ashamed to say I can't even figure out how to use a .tar.gz file even though I researched it too.. I don't truly want to waste anyone's time but if you would it is greatly appreciated.

    Hi 21q,
    I was just passing by. Would you like some names of classical introductory books (primers) that present +unix wizards+ used when they were in your place? They're likely unwanted today, so sell for pennies on places like
    http://www.bookfinder.com/
    +Panther's Darwin+ used Linux, and Tiger's used +BSD Unix+ (the Berkeley Service Distribution), +AT&T's System V+ with many networking additions to help academics & students communicate. Unix was an elegant 'system'. The beautiful book by Steven Bourne, however, you'll find useless without its commands, at least, re-installed to Darwin.
    Some Berkeley extensions, such as finger, were removed when the internet went public. You can still use these on your LAN, though! One day I was using spell and its list in text of all words in +Webster's 2d International Dictionary+ to create limited vocabularies for my 5-year old granddaughter The next day the list was gone. So, ask these knowledgeable people where to get these commands. (Archives other than Fink require you know unix already to get it.) It's free, and the source code is included!
    It is very helpful to know what the 2- or 3-letter commands mean, because there are hundreds (as opposed to a dozen on DOS). Though I thought they were designed short & in lower case so several could be on one line, Ken Thompson said he was just a poor touch typist.
    The low-level unix 'commands', designed to be incorporated into C programs, are still here, so you can write C-language applications using these. Again, we can refer you to the best introductions.
    Note that 'tar' stood for 'tape archiver', which concatenated & copied many files as one, and 'gz' likely stood for the compression utility 'GNU zip' (as it zipping your suitcase). No list of 'official meanings' exists, so guessing their meaning is an ongoing puzzle. 'Biff', however, you'll never guess: this command, which beeped when mail arrived, was the name of its author's dog, who barked instead. The pair, '.tar.gz' is often referred to as a 'tar ball'.
    I shan't discuss why Unix, originally built for use by two people on one small machine, spread like fire throughout universities, but the original unix was a work of art. You can appreciate this if you can get most of it back, though you can no longer use such scripts as 'rc' (run command?) in /etc to configure your system.
    With primers on programming, books by Comer or Tannenbaum, and the source code on archives, you can use your Mac to master programming to any level. Though Objective-C, I'm told, is elegant, and AppleScript powerful; these are not ISO standard languages, portable to any computer. So I'd recommend learning Unix & C early, using either the vi or emacs editor.
    This is a slight expansion of Neil's reply.
    Bruce
    PS. Unix has three 'standard' devices to work with: standard input, standard output, and standard error. These were originally displayed on separate monitors, but standard input is now your keyboard & mouse, standard output the 'Terminal', and standard error is the 'Console' (named after a network administrator's console). I direct all errors to the console, and placed it in my dock.

  • Error on load: System.IO.IOException: The process cannot access the file : error in event viewer when users want to view documents from this third party deployed scan solution

    Error on load: System.IO.IOException: The process cannot access the file
    '\\server1\SCANSHARED\.pdf' because it is being used by another process.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
       at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
       at System.IO.File.WriteAllBytes(String path, Byte[] bytes)
       at abc.Scan.Layouts.ICC.Scan.View.Page_Load(Object sender, EventArgs e)
    I faced this  error in event viewer  when users want to view documents from this third party deployed scan solution
    here I have two WFS servers  and they configured with load balancing in F5 .
    when I enable both servers in F5 I receive this error messages in 2nd server,
    when users want to view documents
    adil

    Do you have antiVirus installed on the sharepoint servers?
    These folders may have to be excluded from antivirus scanning when you use file-level antivirus software in SharePoint. If these folders are not excluded, you may see unexpected behavior. For example, you may receive "access denied" error messages when files
    are uploaded.
    Please follow this KB and exclude the folders from Scanning.
    http://support.microsoft.com/kb/952167
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • An error in the system has occurred. Please contact the system admin'

    Hi chaps
    So I get this message when I try and click "Solved" :
    An error in the system has occurred. Please contact the system administrator if the problem persists.
    And then when I try to send a 'comment' AppleCare I get
    "An error has occurred. Please try again later".
    Is it me or them ?
    Many thanks Roger

    Hi Roger!
    My reply here Error when trying to mark a reply as "solved" , also has additinal information.
    ali b

  • An error in the system has occurred. Please contact the system administrato

    This error appears when I try to access the Leopard Server- Advanced forum:
    Error
    An error in the system has occurred. Please contact the system administrator if the problem persists.
    Useful links :
    Forum Home -- browse the forums here.
    Search Forums -- visit the search page to query all forum content.

    Hi Roger!
    My reply here Error when trying to mark a reply as "solved" , also has additinal information.
    ali b

  • How to run a JAR file in Unix system?

    hi there
    ca anyone tell me how to run a JAR file in unix system or X window, thank you

    You want to create an executable JAR file? You do it in the following way.
    Create a manifest file such as manif.txt and the contents should contain
    Main-Class: foo
    assuming foo is the name of your main class. Then create the jar as follows
    jar cvfm foo.jar manif.txt foo.class
    I hope that helps you!
    you can find more info here http://java.sun.com/docs/books/tutorial/jar/

  • Failed to open package file due to error 0x800C0006 "The system cannot locate the file in C# code.

    Hi, Am facing issue when I try to run SSIS package via C# code, I have given full access to all the folder in which the package is available.
    In the below line am getting error,
    using Microsoft.SqlServer.DTS.Runtime;
    Application app=new Application();
    Package package=null;
    package=app.LoadPackage("PackageFullPath",null) --error line
    Failed to open package file "C:\SSIS\Package.dtsx" due to error 0x800C0006 "The system
    cannot locate the object specified.".  This occurs when loading a
    package and the file cannot be opened or loaded correctly into the XML document

    Are you trying to run this code from job or something? Check if account executing the package has access to the path. Also check if path value passed is correct. If its a remote system path pass it in UNC format (ie //machine/...)
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • ERROR MESSAGE sap system manager:work process restarted, session terminated

    Hi,
    i am a beginer in SAP administration, users are getting this error message and i have done all my research and not able to resolve this issue. Here are the details
    SAP Version :ideas 4.7
    Database :Oracle
    OS : windows 2003
    Module user is working on MM
    user working on it is a Super user with all the permissions
    SAP is configure to run under the  European date and decimal format.
    I have never done any database administration on it, it is a new install and has been rarely used.
    User creates a RFQ and when he tries saving it , seems like for the first time after either restarting the macine or restarting the service it might work and at time it might not, this is a very sporadic error and most of the times it crashes out with the message "sap system manager:work process restarted, session terminated" and kicks the user out of the session.
    Below are the details of the error message from ST22 :
    name of the runtime error : system_core_dumped
    below are the details of the error message and its resoltion as suggested by sap help :
    ========
    Runtime Errors         SYSTEM_CORE_DUMPED           
           Occurred on     01.02.2008 at 07:52:19
    Process terminated by signal " ".                                             
    What happened?
    The current ABAP program had to be terminated because the                     
    ABAP processor detected an internal system error.                             
    The current ABAP program "SAPLCLSC" had to be terminated because the ABAP     
    processor discovered an invalid system state.                                 
    What can you do?
                                                                                    Make a note of the actions and input which caused the error.                                                                               
    To resolve the problem, contact your SAP system administrator.                                                                               
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer      
    termination messages, especially those beyond their normal deletion           
    date.                                                                               
    Error analysis
    An SAP System process was terminated by an operating system signal.           
                                                                                    Possible reasons for this are:                                                
    1. Internal SAP System error.                                                 
    2. Process was terminated externally (by the system administrator).           
               Last error logged in SAP kernel                                    
                                                                                    Component............ "Taskhandler"                                           
    Place................ "SAP-Server server1_DEV_00 on host server1 (wp 1)"      
    Version.............. 1                                                       
    Error code........... 11                                                      
    Error text........... "ThSigHandler: signal"                                  
    Description.......... " "                                                     
    System call.......... " "                                                     
    Module............... "thxxhead.c"                                            
    Line................. 9555                                                                               
    How to correct the error
    The SAP System work directory (e.g. /usr/sap/c11/D00/work ) often             
    contains a file called 'core'.                                                                               
    Save this file under another name.                                                                               
    If you cannot solve the problem yourself, please send the                     
    following documents to SAP:                                                                               
    1. A hard copy print describing the problem.                                  
       To obtain this, select the "Print" function on the current screen.         
                                                                                    2. A suitable hardcopy prinout of the system log.                             
       To obtain this, call the system log with Transaction SM21                  
       and select the "Print" function to print out the relevant                  
       part.                                                                               
    3. If the programs are your own programs or modified SAP programs,            
       supply the source code.                                                    
       To do this, you can either use the "PRINT" command in the editor or        
       print the programs using the report RSINCL00.                                                                               
    4. Details regarding the conditions under which the error occurred            
       or which actions and input led to the error.                                                                               
    System environment
    SAP Release.............. " "                                                                               
    Application server....... " "                                                 
    Network address.......... " "                                                 
    Operating system......... " "                                                 
    Release.................. " "                                                 
    Hardware type............ " "                                                 
    Character length......... " " Bits                                            
    Pointer length........... " " Bits                                            
    Work process number...... " "                                                 
    Short dump setting....... " "                                                                               
    Database server.......... " "                                                 
    Database type............ " "                                                 
    Database name............ " "                                                 
    Database owner........... " "                                                                               
    Character set............ " "                                                                               
    SAP kernel............... " "                                                 
    Created on............... " "                                                 
    Created in............... " "                                                 
    Database version......... " "                                                                               
    Patch level.............. " "                                                 
    Patch text............... " "                                                                               
    Supported environment....                                                     
    Database................. " "                                                 
    SAP database version..... " "                                                 
    Operating system......... " "                                                 
    User, transaction...
    Client.............. " "                                                      
    User................ " "                                                      
    Language key........ " "                                                      
    Transaction......... "ME41 "                                                  
    Program............. "SAPLCLSC"                                               
    Screen.............. "SAPMM06E 0320"                                          
    Screen line......... 71                                                       
    Information on where termination occurred
    The termination occurred in the ABAP program "SAPLCLSC" in "EXECUTE_SELECT".  
    The main program was "SAPMM06E ".                                                                               
    The termination occurred in line 131 of the source code of the (Include)      
    program "LCLSCF2G"                                                           
    of the source code of program "LCLSCF2G" (when calling the editor 1310).      
    =============
    i even tried increasing the dialog processes but with no use.The same error occurs.
    I appreciate every one of help i can get, i am working on a deadline which is tomorrow evening to resovle this issue, any kind of help is highly appreciated.
    thanks
    mudessir.

    Hi
       follow correction method suggested in this dump,
    " The SAP System work directory (e.g. /usr/sap/c11/D00/work ) often
    contains a file called 'core'.  Save this file under another name."
    have you done this?
    with regards,
    raj.
    <i>pls, award points</i>

  • Error in local system;message is not complete--- in Solman 4.0

    Hello Solman Gurus,
             After importing SP 13 in Solution Manager 4.0 , whenever i am trying from help--> create support message ; i am getting "ERROR IN LOCAL SYSTEM; MESSAGE <MSG NO> IS NOT COMPLETE "
    i have seen these threads
    ERROR when Trying to create support message in satellite system
    ERROR when Trying to Create Support Message in Satillite system
    create support message
    but they are saying about Satelliate system not solman
    Please help if you could
    regards
    Naveen

    Naveen,
      Check if the UserId that is creating the message in SolMan via Help->Create Support Message has roles SAP_SUPPDESK_CREATE and SAP_SV_FDB_NOTIF_BC_ADMIN (the profiles of the roles must be generated, all the authorization objects should be green).
      I have SolMan 4.0 SP 13 too, when I delete these authorizations from my userid, I have the same error.
    Let me know if you still have the error.
    Regards,
    Raquel.

  • Backup error due to System Writer missing (enumeration of system32 printer dlls takes too long)

    Hi,
    On a Windows 2008 R2 we get a Windows Backup error while backupping System State (event id: 5, error code: '2155347997').
    We tried *ALL* solutions found on Internet regarding the same issue (and we also applied the suggested hotfix KB2807849) but without success. So we DIGGED INTO VSS to see what is happening.
    ***1) First we saw that an USB printer had a problem and this resulted in
    hundreds of entries in the following registry keys:
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StillImage\DeviceNameStore\Canon MF6500 Series #100010]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StillImage\DeviceNameStore\Canon MF6500 Series #100011]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StillImage\DeviceNameStore\Canon MF6500 Series #100012]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StillImage\DeviceNameStore\{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\79590]
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StillImage\DeviceNameStore\{6BDD1FC6-810F-11D0-BEC7-08002BE2092F}\79591]
    ***2) We completely removed ALL drivers/devices related to that printer (now the DeviceNameStore is empty and
    pnputil -e returns no driver related to the printer)
    ***3) Using process monitor we saw that during vssadmin list writers the system is searching for the DLLs related to that printer AND SEEMS CAUGHT IN AN ENDLESS LOOP: this is an excerpt of the scan:
    09:56:34,5205954    svchost.exe    324    RegSetValue    HKLM\System\CurrentControlSet\services\VSS\Diag\System Writer\IDENTIFY (Enter)    SUCCESS
    09:57:18,2310377 svchost.exe 324 QueryDirectory C:\Windows\System32\spool\drivers\color\cnz005.icc NO SUCH FILE Filter: cnz005.icc
    09:57:18,2312877 svchost.exe 324 QueryDirectory C:\Windows\System32\spool\drivers\color\cnf6500m.icc NO SUCH FILE Filter: cnf6500m.icc
    09:57:18,2314854 svchost.exe 324 QueryDirectory C:\Windows\System32\cncmfp20.ini NO SUCH FILE Filter: cncmfp20.ini
    09:57:18,2316416 svchost.exe 324 QueryDirectory C:\Windows\System32\cnclsi20.dll NO SUCH FILE Filter: cnclsi20.dll
    ... and so on
    .... THE SAME FILES ARE REPEATED HUNDREDS OF TIMES!!!! ...
    It seems that somewhere there is a catalog of system files which still contains the references to the (same) files used by the hundreds of devices that WERE present in the DeviceNameStore (see point ***1 above, but now it is empty),  and the System
    Writer continues to search/enumerate those files and fails.
    How can I fix it ? Is there a way to "reset" the System Writer and "rebuild" (???) the correct files that it should backup? (in order to complete a successfull system state backup)
    Can you help me?
    Thank you in advance.
    EDIT: some additional (useful?) information:
    * we also ran chkdsk /f C: 
    * sfc /scannow completes without errors
    * in the vssadmin list writers the "system writer" is missing (but - as said above - when we run it the associated process repeatedly search printer dll files in the System32 directory)
    * perhaps those file are contained is some filemaps catalog ?!? Is there a way to "reset" them?!?
    ***EDIT 2***:
    I found that the reference to those missing DLLs are in ***C:\Windows\inf\setupapi.ev3*** but if I move the file away the System Writer continues not being listed in vssadmin list writer (though the vssadmin command complete very fast).
    This is what is happening:
    svchost.exe    324    CloseFile    C:\Windows\inf    SUCCESS    
    svchost.exe    324    CloseFile    C:\Windows\System32\DriverStore\infpub.dat    SUCCESS    
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\infpub.dat    ACCESS DENIED
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\infstor.dat    ACCESS DENIED
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\infstrng.dat    ACCESS DENIED
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\drvindex.dat    ACCESS DENIED
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\INFCACHE.0    NAME NOT FOUND
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\INFCACHE.1    ACCESS DENIED
    svchost.exe    324    CreateFile    C:\Windows\System32\DriverStore\INFCACHE.2    NAME NOT FOUND
    svchost.exe    324    CreateFile    C:\Windows\inf    SUCCESS
    svchost.exe    324    QueryBasicInformationFile    C:\Windows\inf    SUCCESS
    svchost.exe    324    RegCloseKey    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup    SUCCESS    
    svchost.exe    324    CreateFile    C:\Windows\inf\setupapi.ev1    SUCCESS
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev1    SUCCESS
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev1
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev1    SUCCESS
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev1
    svchost.exe    324    CreateFile    C:\Windows\inf\setupapi.ev2    SUCCESS
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev2
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev2
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev2    SUCCESS
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev2
    svchost.exe    324    CreateFile    C:\Windows\inf\setupapi.ev3    SUCCESS
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev3
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev3
    svchost.exe    324    QueryStandardInformationFile    C:\Windows\inf\setupapi.ev3
    svchost.exe    324    CreateFileMapping    C:\Windows\inf\setupapi.ev3    SUCCESS
    svchost.exe    324    CreateFile    C:\Windows\System32\drivers    SUCCESS
    svchost.exe    324    QueryDirectory    C:\Windows\System32\drivers\acpi.sys    SUCCESS
    svchost.exe    324    QueryDirectory    C:\Windows\System32\drivers\rdpbus.sys    SUCCESS
    svchost.exe    324    QueryDirectory    C:\Windows\System32\drivers\i8042prt.sys    SUCCESS
    .... EVERYTHING IS OK UP TO HERE ...
    svchost.exe    324    CloseFile    C:\Windows\System32\drivers    SUCCESS
    svchost.exe    324    CreateFile    C:\Windows\System32    SUCCESS
    svchost.exe    324    QueryDirectory    C:\Windows\System32\cncc6500.dll    NO SUCH FILE    Filter: cncc6500.dll
    svchost.exe    324    QueryDirectory    C:\Windows\System32\cnci6500.dll    NO SUCH FILE    Filter: cnci6500.dll
    svchost.exe    324    QueryDirectory    C:\Windows\System32\cncc6500.dll    NO SUCH FILE    Filter: cncc6500.dll
    svchost.exe    324    QueryDirectory    C:\Windows\System32\cnci6500.dll    NO SUCH FILE    Filter: cnci6500.dll
    ... !!!!!GET CAUGHT IN AN ENDLESS LOOP!!!!!!!! (System Writer probably ends for timeout)...
    Is there a way to rebuild/modify that file C:\Windows\inf\setupapi.ev3
    Perhaps I can delete the catroot2 directory?

    Hi,
    Please check if there are number of files in Temporary ASP.NET folders under "C:\Windows\Microsoft.Net\Framework". If so, clear these files then restart the server to check the results.
    In additional, you could try the steps below to troubleshoot the issue:
    1. Give NETWORK SERVICE Read permissions on COM+ Event System.
    a. Open the registry editor and navigate to HKLM\CurrentControlSet\Services\EventSystem.
    b. Right click on the EventSystem and then select ‘Permissions’
    c. Click on ‘ADD’ button and then type in ‘NETWORK SERVICE’ and give it READ permission.
    d. Reboot the machine and then run the 'VSS admin list writers' to check if it shows up the 'system writer'.
    2. If the step 1 doesn't work then move the contents of C:\Windows\winsxs\FileMaps to an alternate location. Then run the command 'VSS admin list writers' to check if it shows up the 'system writer'.  Is so, some of those files maybe corrupted and we
    need to identify them and replace the files from a healthy machine.
    Regards,
    Mandy
    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.

  • Error in source system while extracting the data from R/3!

    Hi,
    i had created FM and extract strcucture in R/3 .
    using the above two, i had created data source using RSO2 T code.
    when i checked the extractor ( RSA3 T code) in R/3  it was working fine .
    (status messege displayed as 1000 records selected).
    then i assigned  this data source to infocurce and creted info cube using the same info source.
    but when i schedule the info package it is syaing in the monitor screen "error in source system".
    what could be the problem?
    Thanks,
    Ravi

    Hi
    trhese are the possiblies
    1.first check the source system connection and find if there is any error in it.
    2.Go to sm37 and find whether the  request is completed or not if its terminated find out the time. how long does it takes to complete the process.
    3.once again relicate the data source and find whether is it again extract data.

Maybe you are looking for

  • I can't open adobe reader, even after re-installing.

    Everytime I try to open a pdf, i receive an error message saying 'Windows can not find 'C:XXXXXXX.pdf'. Make sure that you typed the name correctly, and then try again'. Running Windows 7 Professional. Tried to install both v11 and v10 Adobe Reader -

  • Import one table taking toom uch time

    Hi All, i have database 10g running with ASM under HPUX 04 processor with 08Gb of RAM. I have a problem of importing one table with 6M lines, it takes too much time even 02 days the data is not yet importing, i don't know where is the problem. I trie

  • CIF of SA is not consistent for Validity End Date

    Hello gurus, Our company is quite new in using SNC, and we bumped into this problem (see description below), and hopefully this forum can help us. <Description>: When the Scheduling Agreement is CIFed from R/3 (ECC) to SNC, the Validity End Date does

  • Workspace

    My photoshop window/workspace is 'glued' to the top and left hand sides of my screen obscuring some of the options at the top and hiding the tools. I have tried a variety of things to 'unglue it' but none of them have worked. Any suggestions grateful

  • Upgrade the NVIDIA GeForce 8800 GT?

    I upgraded to this card when I ordered the early 2008 MacPro, what is the upgrade to this card? Is it worth the cost, i.e., what improvements would I see compared to the current GPU? *used for Photoshop, Lightroom, InDesign, Illustrator, etc. Thanks