Error during file open

String file = "C:\\Documents and Settings\\mit2kor\\Desktop\\1         1             1             1.txt";
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + file);
Output:
I get an 'Unable to open "C:\Documents and Settings\mit2kor\Desktop\1 1 1 1.txt"' error message, when the code snippet is run. Enclosing the variable 'file' within a double quote also does not work.
Can anybody help?
Thank you in advance....

Actually, my file name is "1 1 1 1.txt". But the error message says it cannot open "1 1 1 1.txt".
My sample program is:
public class test
  public static void main(String[] args)
      try
        String file = "C:\\Documents and Settings\\mit2kor\\Desktop\\1         1             1             1.txt";
        Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + file);
      catch(Exception e)
        e.printStackTrace();
}Can you please help me with the renaming idea? How can I do that?
Thank you.

Similar Messages

  • Getting the error LOG file opened at 01/29/07 18:13:12 while selecting from

    I am getting following error in log file while selecting from a external table
    LOG file opened at 01/29/07 18:13:12
    KUP-04040: file test.csv in UTL not found. I am follwoing the following steps:
    connect as sys user :
    CREATE OR REPLACE DIRECTORY UTL as 'D:\oracle\product\10.1.0';
    GRANT READ,write ON DIRECTORY UTL TO user1;
    connect as user1
    drop table test;
    create table test (EQP_N_EQUIPMETID_PK number(10) ,
    EQPNAME varchar2(100),
    EQPDESCR varchar2(1000),
    COSSEC varchar2(10),
    ETSCES varchar2(10),
    CATPARTNO varchar(1000),
    EQUIPMETID_FK number(10),
    EQPTYPEMASTERID_FK number(10),
    SECTIONID_FK number(10),
    MEAUNITID_FK number(10),
    CREATEDBY number(10),
    MODIFIEDBY number(10),
    LASTUPDATED varchar2(20),
    SHUFFLING varchar2(50))
    ORGANIZATION EXTERNAL
    (TYPE oracle_loader
    DEFAULT DIRECTORY utl
    ACCESS PARAMETERS (FIELDS TERMINATED BY ',')
    LOCATION ('test.csv'))
    REJECT LIMIT UNLIMITED
    On issuing select count(*) from test gives following error:
    SQL> select count(*) from test;
    select count(*) from test
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file test.csv in UTL not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    ORA-06512: at line 1
    All these steps I have tried on the oracle server as well as on the client m/c.
    Is there any step that I am missing out???

    hi,
    SQL> edit c:\oracle\product\10.1.0\test.csv
    SQL> conn sys as sysdba
    Enter password:
    Connected.
    SQL> create or replace directory UTL  as 'c:\oracle\product\10.1.0';
    Directory created.
    SQL> grant read,write on directory UTL to scott;
    Grant succeeded.
    SQL> create table scott.test ( no number(10),
      2                           name varchar2(20))
      3  organization external
      4                   ( type oracle_loader
      5                     default directory UTL
      6                     access parameters
                           ( fields terminated by ',')
      7  location
                           ('test.csv'))
      8  reject limit unlimited;
    Table created.
    SQL> select count(*) from scott.test;
      COUNT(*)
             1
    SQL> select * from scott.test;
            NO NAME
             1 test
    SQL>it is working for me. again check your file location.
    regards
    Taj
    Message was edited by:
    M. Taj

  • Elements 10 Editor error on File / Open iPhoto Library folder

    We have Installed PSE 10 and properly associated iPhoto to use PSE Editor.  When we open iPhoto, we can click a photo, click on Edit.. and the photo appears for editing within the PSE Editor.  This part is GOOD. 
    Our problem is that we don't use iPhoto, and would prefer to open the Editor directly, click on FILE / OPEN... go to our iPhoto library, double click.. and select photos from that pathway.  Instead, the iPhoto folder does NOT open.. and we get the error:
    "Could not complete your request because of a program error."
    We have reinstalled PSE twice, and the same problem occurs.
    Are we doing something wrong, or does PSE Editor NOT work to open the iPhoto folder?
    Thank you for your help!

    When you have imported you images into iPhoto, they are placed in your Library. The library is a special type of folder, similar to a ZIP or other compressed format. Photoshop Elements is unable to open this compressed directory, which is why you get the error. Basically, you need to get your images out of iPhoto and into a normal folder. You can do this by pulling your iPhoto library into the Organizer (File > Get Photos and Vidoes > From iPhoto).

  • Dreamweaver cs3 error on file open

    Suddenly getting an error when I open a file:
    error signature:
    AppName: dreamweaver.exe
    AppVer: 9.0.0.3481
    ModName: dreamweaver.exe
    ModVer: 9.0.0.3481
    Offset: 002dab57
    Any body know what this is? Was working fine on friday, no
    changes to extensions or updates, came in this morning, and the
    error started.

    Has to do with time change
    Try this:
    1. Closing Dreamweaver
    2. Set your clock to the correct time if it isn't already so
    3. delete WinFileCache*.dat from
    C:\Documents and Settings\[Your username]\Application
    Data\Adobe\Dreamweaver
    9\Configuration
    4. Start Dreamweaver and use it as usually
    "desalvatore.com" <[email protected]> wrote
    in message
    news:gen3ia$c22$[email protected]..
    > Suddenly getting an error when I open a file:
    > error signature:
    > AppName: dreamweaver.exe
    > AppVer: 9.0.0.3481
    > ModName: dreamweaver.exe
    > ModVer: 9.0.0.3481
    > Offset: 002dab57
    >
    > Any body know what this is? Was working fine on friday,
    no changes to
    > extensions or updates, came in this morning, and the
    error started.
    >

  • Powershell: There is no file with URL error during file upload.

    I am trying to put together a PowerShell script that I could use to upload files from a local directory, into a Document Library in a Record Center Site. Here is what my script looks like...
    #Open web and library
    $web = Get-SPWeb $webUrl
    $docLibrary = $web.Lists[$docLibraryName]
    $files = ([System.IO.DirectoryInfo] (Get-Item $localFolderPath)).GetFiles()
    Write-Host "Local Directory:" $localFolderPath
    ForEach($file in $files)
    Write-Host "Looping through files"
    Write-Host "Current file:" $file
    ElseIf ($contentType = "MyContentType")
    #Open file
    $fileStream = ([System.IO.FileInfo] (Get-Item $file.FullName)).OpenRead()
    # Gather the file name
    $FileName = $File.Name
    #remove file extension
    $NewName = [IO.Path]::GetFileNameWithoutExtension($FileName)
    #split the file name by the "-" character
    $FileNameArray = $NewName.split("_")
    $check = $FileNameArray.Length
    #Add file
    $folder = $web.getfolder($docLibraryUrlName)
    write-host "Copying file " $file.Name " to " $folder.ServerRelativeUrl "..."
    $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stream]$fileStream, $true)
    $spItem = $spFile.Item
    write-host "Success"
    #populate columns
    $spItem["Application Number"] = $FileNameArray[0].ToString()
    $spItem["Site Number"] = $FileNameArray[1].ToString()
    $spItem.Update()
    $fileStream.Close();
    Each time I run my script, I get this error message 
    Exception calling "Add" with "3" argument(s): "<nativehr>0x80070003</nativehr><nativestack></nativestack>There is no file with URL 'http://myRecordLibrarySite/myRecord Library/12587_B2317.PDF' in this Web."
    At C:\powershellscripts\Upload-FilesIntoSharePoint.ps1:72 char:6
    +                     $spFile = $folder.Files.Add($folder.Url + "/" + $file.Name, [System.IO.Stre ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : DirectoryNotFoundException
    I have not been able to nail down why the script is failing. Any ideas why? Thanks for the help.

    I just figured out the issue with adding the file. I went in this direction, and my code has progressed forward.
    $folder = $web.getfolder($docLibrary.rootFolder.URL)

  • Errors during file transfer on WebDav server

    (this is a repost from a different category)
    I having much difficulty transferring files to and from our new WebDav server when using Finder's Connect to Server. I am able to connect and authenticate just fine. Although, when dragging and dropping to a mounted drive, I receive the following errors, then subsequently dropped from the sever.
    ...Unexpected Error Occurred - Error code 1407
    ...cannot comple the operation because some data in "" could not be read or written - Error code 36
    ...Unexpected Error Occurred - Error code 1407
    This seems to be an issue affecting all 10.5 users in our university. PC's and 10.4 do not seem to be having this issue. When using CyberDuck and Goliath, I cannot login to the server whatsoever.
    Any thoughts?

    Attached is an upload link of log file
    These remind me why I like to use ProcMon to correlate and supplement
    all log messages. 
    FWIW I agree that clearing your SoftwareDistribution folder might change this aspect of your symptom description from setupact.log
    2013-12-25 07:32:52, Info                  DPX    CreateFileW failed, FileName:\\?\C:\Windows\SoftwareDistribution\Download\b3f099ae487c77fe455d9f17689e69a8\$dpx$.tmp\job.xml,
    Error:0x80070002
    It is really difficult "reading between the lines" to understand that one but I imagine it would be a lot easier having a ProcMon trace which showed exactly which file was "not found" (and whether it was the same one or a different one each time).  
    <eg>
    Robert Aldwinckle

  • Error during File upload into BI IP

    Hi,
      I have followed the steps outlined in the How-to Guide for loading files into BI-IP (NEtweaver) as posted by Marc. When I execute the same, I get the following error:
    System error in program CL_RSR_FIPT_VAL2SID_PREFETCH and form BEFORE_TRANSFORM-01- (see long text).
       I am not sure why this is happening and also about what should be done! Any ideas are most welcome!
    Thanks and Regards
    Sriram

    Hi Sampath,
    Please ensure you are on SP 15 patch level , else if you are on SP 14  then apply note 1070655 - Termination msg CL_RSPLFR_CONTROLLER =>GET_READ_WRITE_PROVIDS
    b] Apply Correction Instruction 566059 [i.e: in Object - CL_RSPLFR_CONTROLLER GET_READ_WRITE_PROVIDS,
    delete the block: l_r_alvl = cl_rspls_alvl=>factory( i_aggrlevel = p_infoprov ).
    and insert block - l_r_alvl = cl_rspls_alvl=>factory( i_aggrlevel = i_infoprov ).
    Apart from this  ensure at Planning function level create the rows as like in the flat file. Also give correct parameters to the skip header and other functions.
    Hope this helps
    Raja

  • TextEdit under SnowLeopard crashes reliably during File- Open

    I just upgraded to SnowLeopard. Until this morning, TextEdit worked fine. Now, I try to edit a text file, bring up the Open dialog, navigate to the directory containing the file, and before I can select the file, TextEdit crashes. It does it every time. Each time it sends some info off to Apple.
    I need to edit some files. What's the problem?

    Does it only happen when trying to open files from a particular folder?
    Or does it happen no matter which folder you navigate to?
    (I'm thinking there's a corrupted file of some sort in that particular folder.)
    charlie

  • Error during restore/recovery and 'open resetlogs'

    Hello forum. I'm attempting to restore a database to a new host and have run into an error during the opening of the database (with resetlogs). The renaming of the datafiles, restore, switching of datafiles, and recovery are all done by an rman script, the contents of which are below:
    # Restore production database to DR site using file system
    # instead of ASM
    run {
    set newname for datafile 1 to '/opt/oracle/product/10gR2/oradata/DB01/system.dbf';
    set newname for datafile 2 to '/opt/oracle/product/10gR2/oradata/DB01/undotbs1.dbf';
    set newname for datafile 3 to '/opt/oracle/product/10gR2/oradata/DB01/sysaux.dbf';
    set newname for datafile 4 to '/opt/oracle/product/10gR2/oradata/DB01/users.dbf';
    set newname for datafile 5 to '/opt/oracle/product/10gR2/oradata/DB01/undotbs2.dbf';
    set newname for datafile 6 to '/opt/oracle/product/10gR2/oradata/DB01/file1.dbf';
    set newname for datafile 7 to '/opt/oracle/product/10gR2/oradata/DB01/file2.dbf';
    restore database;
    switch datafile all;
    recover database;
    I get the following output:
    RMAN> @/home/oracle/scripts/rman_dr.rman
    RMAN> # Restore production database to DR site using file system
    2> # instead of ASM
    3> #
    4> run {
    5> set newname for datafile 1 to '/opt/oracle/product/10gR2/oradata/DB01/system.dbf';
    6> set newname for datafile 2 to '/opt/oracle/product/10gR2/oradata/DB01/undotbs1.dbf';
    7> set newname for datafile 3 to '/opt/oracle/product/10gR2/oradata/DB01/sysaux.dbf';
    8> set newname for datafile 4 to '/opt/oracle/product/10gR2/oradata/DB01/users.dbf';
    9> set newname for datafile 5 to '/opt/oracle/product/10gR2/oradata/DB01/undotbs2.dbf';
    10> set newname for datafile 6 to '/opt/oracle/product/10gR2/oradata/DB01/file1.dbf';
    11> set newname for datafile 7 to '/opt/oracle/product/10gR2/oradata/DB01/file2.dbf';
    12>
    13> restore database;
    14> switch datafile all;
    15> recover database;
    16> }
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    Starting restore at 03-JAN-08
    Starting implicit crosscheck backup at 03-JAN-08
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=156 devtype=DISK
    Crosschecked 651 objects
    Finished implicit crosscheck backup at 03-JAN-08
    Starting implicit crosscheck copy at 03-JAN-08
    using channel ORA_DISK_1
    Crosschecked 1 objects
    Finished implicit crosscheck copy at 03-JAN-08
    searching for all files in the recovery area
    cataloging files...
    no files cataloged
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backupset restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    restoring datafile 00001 to /opt/oracle/product/10gR2/oradata/DB01/system.dbf
    restoring datafile 00002 to /opt/oracle/product/10gR2/oradata/DB01/undotbs1.dbf
    restoring datafile 00003 to /opt/oracle/product/10gR2/oradata/DB01/sysaux.dbf
    restoring datafile 00004 to /opt/oracle/product/10gR2/oradata/DB01/users.dbf
    restoring datafile 00005 to /opt/oracle/product/10gR2/oradata/DB01/undotbs2.dbf
    restoring datafile 00006 to /opt/oracle/product/10gR2/oradata/DB01/file1.dbf
    restoring datafile 00007 to /opt/oracle/product/10gR2/oradata/DB01/file2.dbfchannel ORA_DISK_1: reading from backup piece /ocfs2/remitpro/oracleBackups/tmp/rman_LV0_DB01.642899284.1.1.bus
    channel ORA_DISK_1: restored backup piece 1
    piece handle=/ocfs2/remitpro/oracleBackups/tmp/rman_LV0_DB01.642899284.1.1.bus tag=20080101_LV0_DB
    channel ORA_DISK_1: restore complete, elapsed time: 01:22:28
    Finished restore at 03-JAN-08
    datafile 1 switched to datafile copy
    input datafile copy recid=14 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/system.dbf
    datafile 2 switched to datafile copy
    input datafile copy recid=15 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/undotbs1.dbf
    datafile 3 switched to datafile copy
    input datafile copy recid=16 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/sysaux.dbf
    datafile 4 switched to datafile copy
    input datafile copy recid=17 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/users.dbf
    datafile 5 switched to datafile copy
    input datafile copy recid=18 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/undotbs2.dbf
    datafile 6 switched to datafile copy
    input datafile copy recid=19 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/file1.dbf
    datafile 7 switched to datafile copy
    input datafile copy recid=20 stamp=643049225 filename=/opt/oracle/product/10gR2/oradata/DB01/file2.dbf
    Starting recover at 03-JAN-08
    using channel ORA_DISK_1
    starting media recovery
    channel ORA_DISK_1: starting archive log restore to default destination
    channel ORA_DISK_1: restoring archive log
    archive log thread=2 sequence=1005
    channel ORA_DISK_1: restoring archive log
    archive log thread=1 sequence=1365
    channel ORA_DISK_1: reading from backup piece /ocfs2/remitpro/oracleBackups/tmp/rman_LV0_DB01.642900444.1.1.bus
    channel ORA_DISK_1: restored backup piece 1
    piece handle=/ocfs2/remitpro/oracleBackups/tmp/rman_LV0_DB01.642900444.1.1.bus tag=20080101_LV0_DB
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:05
    archive log filename=/opt/oracle/product/10gR2/db/flash_recovery_area/DB01/archivelog/2008_01_03/o1_mf_1_1365_3qtshnfv_.arc thread=1 sequence=1365
    archive log filename=/opt/oracle/product/10gR2/db/flash_recovery_area/DB01/archivelog/2008_01_03/o1_mf_2_1005_3qtshncz_.arc thread=2 sequence=1005
    channel default: deleting archive log(s)
    archive log filename=/opt/oracle/product/10gR2/db/flash_recovery_area/DB01/archivelog/2008_01_03/o1_mf_1_1365_3qtshnfv_.arc recid=2418 stamp=643049236
    unable to find archive log
    archive log thread=1 sequence=1366
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 01/03/2008 16:47:22
    RMAN-06054: media recovery requesting unknown log: thread 1 seq 1366 lowscn 181804603
    RMAN> **end-of-file**
    I searched for a decription of the 06054 error, and found that if the archive logs weren't available, then to run "alter database open resetlogs;", which I did. Here's the output:
    RMAN> alter database open resetlogs;
    database opened
    RMAN-06900: WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row
    RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows
    ORACLE error from target database:
    ORA-06553: PLS-801: internal error [56319]
    I've done all of this twice now, with the same result. I've googled PLS-801 and found more than a few instances of people getting this code, but not during a database open after a restore. Can anyone shed some light on what might have gone wrong? In the interest of brevity, I left out the rest of the restore process prior to running the database restore, but other than setting "compatible" and "db_recovery_file_dest_size", it was all by the book.
    Thanks in advance.

    Thanks for the reply Pierre.
    I am not using RMAN Duplicate. Yes, the source of the backup is an RAC. The destination is a single server, with the DB on the filesystem. Here's an overview of of the commands I ran and the procedure.
    Copied tar'd backup controlfile and datafiles to destination machine. Untar'd. Install 10.2.0.1.0 on destination machine, patch to 10.2.0.2.0.
    OS> sqlplus /nologin
    SQL> alter system set compatible = '10.2.0.2.0' scope=spfile;
    SQL> alter system set db_recovery_dest_file_size = '8g'; scope spfile;
    SQL> shutdown immediate;
    SQL> startup; (to verify changes took...)
    SQL> shutdown immediate;
    OS> Copy control file from untar'd dir and place in $ORACLE_HOME/dbs/, truncate name to c-DBID-date-00.
    OS> rman target /
    RMAN> startup nomount;
    RMAN> set dbid <dbid from control file>;
    RMAN> restore controlfile from autobackup; (finds control file with no problem...)
    RMAN> alter database mount;
    RMAN> @/home/oracle/rman_dr.rman (script cited in first post, to rename datafiles from ASM to filesystem, restore, switch files, and recover...)
    RMAN> alter database open resetlogs; (as cited before...)
    If I'm not using Duplicate and not specifying dates, the UNTIL/SET UNTIL commands aren't necessary, correct?

  • What does the error - file open with write privilege mean?

    When exporting an iMovie, I received the error message, file open with write privilege - what does that mean and what causes it?

    Hi
    Error -49
    Error -49  opWrErr  File already open with write permission
    Trash the preference files while application is NOT Running.
    Yours Bengt W

  • File Open Failed?

    H'ello
    Sometimes when I try to transfer a book I have downloaded to ADE to my ereader I get the error message: File Open Failed.Other times they are successfully transfered. These are all downloaded from my library - so all consistently the same. Help.
    Thanks in advance if you can be of assistance.

    You can't do anything at all about restrictions on digital rights.  I said
    that earlier.  But I want to take a moment to discuss the concerns you've
    included in this post.
    To start with, each ebook either has digital rights assigned or not.  So,
    if one cannot be copied, that does not mean that any others can't.  You may
    - make that will - run into other ebooks that can't be copied, and it will
    be a pain in the butt when you do.  But, don't assume that ALL ebooks are
    going to be a problem.
    I think you missed another point that I made.  This is not the fault of ADE
    - the software is just doing the job it's been programmed to do with each
    ebook you download.  You don't need to do anything to ADE.
    Let's tackle the comment you made about downloading ebooks from a library.
    Technically, the library allowed you to download the ebook - to your
    computer.  That's really all they have to do.  You can call the library and
    tell them that the library ebook you downloaded can't be copied to your
    ereader and see if they can do something about that.  I am doubtful,
    though, because publishers - not the library - don't want people to
    redistribute their ebooks, and that's one reason they block copying.
    It's possible also to download an ebook directly to your ereader IF the
    library or bookseller is set up to do that.  Most libraries are not.
    You mention that there are other times that you get the 'File Open Failed'
    message.  If you give me more information about the circumstances, I'll try
    to work with you to figure out what to do
    ===================

  • Excel 2007: file opened by another user

    Hi guys. Help me to hunt down a question.
    Then I am trying to open or save a spreadsheet in excel 2007 it always shows me a downloading status bar without any progress. After few minutes the file opens or not. Game of chance. When it didn`t open I get this error message "file
    opened by another user".
    I should notice that I have windows 7, office 2007. I tried to transfer some files to another pc and at first it`s working good, without any troubles, but then still the same problem. Pops up a dialog window with the message. It happens
    on network files only. Of course I have tried to run excel in a save mode and in compatibility mode. But nothing change.
    Give me please any clue what can it be and how can I fix it?

    Try this. Excel Options, click Advanced at the left side of the dialog window. Then make sure that DDE is selected. By this you make enable the Ignore Other Applications that use Dynamic Data Exchange feature.
    And also try the following:  open Tools – Folder options. In the list of the file types choose XLS. Then click the Advanced. Select Open. The Application Used to Perform Action box contains the actual command line used to start Excel.
    You should add in this field a space followed by "%1". Be sure to include the quotes. And deselect Use DDE. That’s all steps you should do.
    Also you can solve this issue with help of third-party program. This is good one, try it -  Recovery Toolbox for Excel  
    https://excel.recoverytoolbox.com/
    In principle, this is all that i can reccomend. 

  • RFBILA00 - Error during opening of file

    Hello everyone!
    Can someone provide me some help regarding a error message when executing RFBILA00: the message is very strange due to the fact that I have another system an I can write to my c:/temp directory the extract to consolidation. It goes like this: Error during opening of file c:\temp\EXTRACT_CS_CO.txt
    I've also check all the costumizing between the two systems and they are equal.
    Thanks in advanced,
    David Resende

    Deat Paulo,
    Thank you for your fast response!
    Could it be that the path indicated in the unix configuration isn't valid? I've check this over and over and I don't see any difference between the two systems I have. One works and the other don't!
    I've check the customizing via transaction FILE, and everything is equal. Should I contact the systems administration to verify the existence of the unix path, or can I do it myself?
    Best regards,
    David

  • Lockbox-Error during opening of file C:\temp\142941

    When I execute the transaction :FLB2, I always meet the error message "Error during opening of file C:\temp\142941". Could anyone please tell me why it happens?  Many thanks!

    Hi Christina,
    I have experienced the same problem. When we run FLB2, the system creates a file and stores it somewhere. Via program RFBIDE00 the system tries to open the file. It probably has to do with the fact that you have several application servers but only one is installed as central instance.
    What in fact happens, is that the file is written to the application server on which you are logged on to on that moment but when the program RFBIDE00 is running it looksup the file on the central instance server.
    I have logged a OSS message for this.
    Kind Regards,
    Joep
    [email protected]

  • Protected View Error "The file is corrupt and cannot be opened"

    All 
    I have a problem with Protected View in Office 2010 on Windows 7.
    Symptom:  When downloading a file from the Internet, the file will not open if launched directly from the source location, or saved locally and then opened.  This
    is impacting both Word and Excel.  I haven’t tested other applications.  The user gets the error "The file is corrupt and cannot be opened.".
    Expected behaviour:  Documents should open in Protected View because they are coming from an untrusted zone (Internet Zone).
    Troubleshooting Results:
     -      If I turn off Protected View the error goes away and the documents open without
    issue (but not in Protected View obviously)
    -      If I save the file locally, then copy it to a network drive, the problem goes away (because the zone information is changed?).
    -      If I save the file directly to a network location, then open it, the problem does not impact me (also doesn’t open in Protected View)
    -      If I repair Office the problem is NOT fixed
    -      If I reinstall Office the problem is NOT fixed
    The problem doesn't impact all machines, but any new machine I build suffers the problem.  All Protected View options are set by group policy and all machines are getting the correct settings.
    -       The setting “Enable Protected View for files originating from the Internet” is enabled
    -       The setting “Enable Protected View for files located in potentially unsafe locations” is enabled
    -      The setting “Enable Protected View for Outlook attachments” is enabled
    -      Enable Data Execution Prevention mode is enabled
    Has anyone seen this problem or can anyone offer suggestions of where to start looking for the root cause?  There are lots of postings on this around the various Internet forums, but most
    just suggest turning off Protected View, that is not a valid solution to my mind, Protected View is there for a very sound reason and it is not something I'm willing to turn off, especially when it is working on some machines as expected.
    Thanks.
    James.

    Thanks for coming back, James, and I'm glad you've found the source of your
    problem.
    As an aside, I had no idea HP made software like that and will take a look
    at it - or would if I could. Personally, although I love their hardware, I
    wouldn't touch HP software, and the fact that their web page doesn't load
    (in IE8) just reinforces my feeling.
    Enjoy,
    Tony
    www.WordArticles.com
    "jsc.19" wrote in message news:f9aaa05d-ad62-4f0e-96e1-6bbeb4c7098d...
    > Will, thanks for taking the time to post some suggestions. I understand
    > Protected View perfectly well and my post is because Protected View is not
    > behaving as it should. I think my dot points above show this, still,
    > thanks for taking the time to post. I think Tony is more on track with
    > his questions around what has changed in my build, and this is the area
    > I've focused on over the few days since posting.
    >
    > I've pulled my build apart and put it back together and found the issue.
    > This was tedious to say the least, but turned out worthwhile. A program
    > we used called Trim Context Desktop
    > (http://h71028.www7.hp.com/enterprise/w1/en/software/information-management-trim.html)
    > is part of our SOE. This is a records management tool, but we only use a
    > small feature set, and all the Office integration options that can be
    > configured during install are turned off, but it turns out that the
    > application still impacts Office. If I uninstall the Trim client from our
    > SOE, Office Protected View starts working as expected. We knew the full
    > Trim suite wasn't ready for Office 2010, but assumed, wrongly, that since
    > we didn't use the Office integration features we were OK. All our testing
    > was around the application and it works fine, I just didn't connect it to
    > the Office issues until systematically eliminating changes from the SOE
    > build. Keep a log of your changes!!! It helped me reverse things until I
    > found the problem.
    >
    > Uninstalling Trim also fixes and issue I had in Outlook where the
    > previewers wouldn't display Office documents, reporting that the
    > previewers were not installed.
    >
    > We will go to HP to get some support and advice around this before putting
    > Trim back in to the SOE.
    >
    > Anyone - if you have similar problems, can I suggest you look at all your
    > Office add-ins and also any applications that may potentially hook in to
    > Office.
    >
    > Cheers all.
    >
    > James.
    >
    >
    >
    Enjoy,
    Tony
    www.WordArticles.com

Maybe you are looking for

  • Hand made or generated GUI code, what do proffesional use?

    Hello! I am currious about what programs people that work as a programmer use? Is it common that they use programs that generats code like Netbeens for instance? I tryed that program in design mode to make a gui, but when I looked at the code it had

  • Spaces is not shown in Dock

    I'm using Spaces en selected "Visuable in Dock", but the Spaces icon isn't shown in the Dock. Also in the Application folder Spaces isn't shown. Can somebody help/advice?

  • Options for QoS on 2 meg PPP lease line.

    Hi, I have a 2 meg PPP data lease line bet my HO and BO. I need to know the Qos options, I can configure to run voice over the same link. I want to reserve 384K to voice traffic. Will auto qos be of any help ? Thanks renzil

  • Clusters: How to remove the 3D shaded background?

    I'm currently building an automated test and cal setup using labview. Here I have loads of input fields and indicators that causes a sea of variables. That sea has now turned into an overwhelming ocean that is anoying to rok with. Whenever I insert a

  • 10.4.10 and broken printing/faxing

    Updated G4 Digital Audio the other day to 10.4.10. It has two printers connected directly, an HP LaserJet 1200 via USB and a Canon i9900 via Firewire. Those printers are shared with three other Macs on our small network, which has two wireless comput